diff --git a/.openapi-generator-ignore b/.openapi-generator-ignore index 012b172..dd18ab5 100644 --- a/.openapi-generator-ignore +++ b/.openapi-generator-ignore @@ -21,3 +21,4 @@ src/Regula.DocumentReader.WebClient/Model/AuthenticityCheckResult.cs # classes, modified after generation src/Regula.DocumentReader.WebClient/Model/ResultItem.cs src/Regula.DocumentReader.WebClient/Model/AuthenticityCheckResultItem.cs +src/Regula.DocumentReader.WebClient/Model/AuthParams.cs diff --git a/src/Regula.DocumentReader.WebClient/Model/AuthParams.cs b/src/Regula.DocumentReader.WebClient/Model/AuthParams.cs index bf1468d..5cb278d 100644 --- a/src/Regula.DocumentReader.WebClient/Model/AuthParams.cs +++ b/src/Regula.DocumentReader.WebClient/Model/AuthParams.cs @@ -48,7 +48,7 @@ public partial class AuthParams : IEquatable, IValidatableObject /// This parameter is used to enable Owner's photo embedding check (is photo printed or sticked). /// This parameter is used to enable Portrait comparison check. /// This parameter is used to enable LetterScreen check. - public AuthParams(bool checkLiveness = default(bool), LivenessParams livenessParams = default(LivenessParams), bool checkUVLuminiscence = default(bool), bool checkIRB900 = default(bool), bool checkImagePatterns = default(bool), bool checkFibers = default(bool), bool checkExtMRZ = default(bool), bool checkExtOCR = default(bool), bool checkAxial = default(bool), bool checkBarcodeFormat = default(bool), bool checkIRVisibility = default(bool), bool checkIPI = default(bool), bool checkPhotoEmbedding = default(bool), bool checkPhotoComparison = default(bool), bool checkLetterScreen = default(bool)) + public AuthParams(bool? checkLiveness = default(bool?), LivenessParams livenessParams = default(LivenessParams), bool? checkUVLuminiscence = default(bool?), bool? checkIRB900 = default(bool?), bool? checkImagePatterns = default(bool?), bool? checkFibers = default(bool?), bool? checkExtMRZ = default(bool?), bool? checkExtOCR = default(bool?), bool? checkAxial = default(bool?), bool? checkBarcodeFormat = default(bool?), bool? checkIRVisibility = default(bool?), bool? checkIPI = default(bool?), bool? checkPhotoEmbedding = default(bool?), bool? checkPhotoComparison = default(bool?), bool? checkLetterScreen = default(bool?)) { this.CheckLiveness = checkLiveness; this.LivenessParams = livenessParams; @@ -72,7 +72,7 @@ public partial class AuthParams : IEquatable, IValidatableObject /// /// This parameter is used to enable document liveness check [DataMember(Name="checkLiveness", EmitDefaultValue=false)] - public bool CheckLiveness { get; set; } + public bool? CheckLiveness { get; set; } /// /// Gets or Sets LivenessParams @@ -85,91 +85,91 @@ public partial class AuthParams : IEquatable, IValidatableObject /// /// This parameter is used to enable Document luminescence check in UV light [DataMember(Name="checkUVLuminiscence", EmitDefaultValue=false)] - public bool CheckUVLuminiscence { get; set; } + public bool? CheckUVLuminiscence { get; set; } /// /// This parameter is used to enable B900 ink MRZ contrast check in IR light /// /// This parameter is used to enable B900 ink MRZ contrast check in IR light [DataMember(Name="checkIRB900", EmitDefaultValue=false)] - public bool CheckIRB900 { get; set; } + public bool? CheckIRB900 { get; set; } /// /// This parameter is used to enable Image patterns presence/absence check (position, shape, color) /// /// This parameter is used to enable Image patterns presence/absence check (position, shape, color) [DataMember(Name="checkImagePatterns", EmitDefaultValue=false)] - public bool CheckImagePatterns { get; set; } + public bool? CheckImagePatterns { get; set; } /// /// This parameter is used to enable Fibers detection /// /// This parameter is used to enable Fibers detection [DataMember(Name="checkFibers", EmitDefaultValue=false)] - public bool CheckFibers { get; set; } + public bool? CheckFibers { get; set; } /// /// This parameter is used to enable Extended MRZ Check /// /// This parameter is used to enable Extended MRZ Check [DataMember(Name="checkExtMRZ", EmitDefaultValue=false)] - public bool CheckExtMRZ { get; set; } + public bool? CheckExtMRZ { get; set; } /// /// This parameter is used to enable Extended OCR Check /// /// This parameter is used to enable Extended OCR Check [DataMember(Name="checkExtOCR", EmitDefaultValue=false)] - public bool CheckExtOCR { get; set; } + public bool? CheckExtOCR { get; set; } /// /// This parameter is used to enable laminate integrity check in axial light /// /// This parameter is used to enable laminate integrity check in axial light [DataMember(Name="checkAxial", EmitDefaultValue=false)] - public bool CheckAxial { get; set; } + public bool? CheckAxial { get; set; } /// /// This parameter is used to enable Barcode format check (code metadata, data format, contents format, etc.) /// /// This parameter is used to enable Barcode format check (code metadata, data format, contents format, etc.) [DataMember(Name="checkBarcodeFormat", EmitDefaultValue=false)] - public bool CheckBarcodeFormat { get; set; } + public bool? CheckBarcodeFormat { get; set; } /// /// This parameter is used to enable Document elements visibility check in IR light /// /// This parameter is used to enable Document elements visibility check in IR light [DataMember(Name="checkIRVisibility", EmitDefaultValue=false)] - public bool CheckIRVisibility { get; set; } + public bool? CheckIRVisibility { get; set; } /// /// This parameter is used to enable Invisible Personal Information (IPI) check /// /// This parameter is used to enable Invisible Personal Information (IPI) check [DataMember(Name="checkIPI", EmitDefaultValue=false)] - public bool CheckIPI { get; set; } + public bool? CheckIPI { get; set; } /// /// This parameter is used to enable Owner's photo embedding check (is photo printed or sticked) /// /// This parameter is used to enable Owner's photo embedding check (is photo printed or sticked) [DataMember(Name="checkPhotoEmbedding", EmitDefaultValue=false)] - public bool CheckPhotoEmbedding { get; set; } + public bool? CheckPhotoEmbedding { get; set; } /// /// This parameter is used to enable Portrait comparison check /// /// This parameter is used to enable Portrait comparison check [DataMember(Name="checkPhotoComparison", EmitDefaultValue=false)] - public bool CheckPhotoComparison { get; set; } + public bool? CheckPhotoComparison { get; set; } /// /// This parameter is used to enable LetterScreen check /// /// This parameter is used to enable LetterScreen check [DataMember(Name="checkLetterScreen", EmitDefaultValue=false)] - public bool CheckLetterScreen { get; set; } + public bool? CheckLetterScreen { get; set; } /// /// Returns the string presentation of the object