Beispiel #1
0
 internal void CopyFrom(MatchUISettings other)
 {
     UIOptions      = other?.UIOptions;
     ParseOptions   = other?.ParseOptions;
     GeocodeOptions = other?.GeocodeOptions;
 }
Beispiel #2
0
 internal UIBimetricScoreJobRequest(BimetricScoreJobRequest request, MatchUISettings settings)
     : base(request, settings)
 {
 }
Beispiel #3
0
 internal UIMatchByDocumentIdOptions(MatchByDocumentIdOptions options, MatchUISettings settings)
     : base(options, settings)
 {
 }
Beispiel #4
0
 internal UIMatchJobRequest(MatchJobRequest request, MatchUISettings settings)
     : base(request, settings)
 {
 }
Beispiel #5
0
 internal UISearchRequest(SearchRequest request, MatchUISettings settings)
     : base(request, settings)
 {
 }
Beispiel #6
0
 internal GenerateUIRequest(T saasRequest, MatchUISettings settings)
 {
     SaasRequest = saasRequest;
     CopyFrom(settings);
 }