Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/Regula.DocumentReader.WebClient/Model/CheckDiagnose.cs
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,16 @@ public enum CheckDiagnose
/// </summary>
FIELD_POS_CORRECTOR_INCORRECT_HEAD_POSITION = 86,

/// <summary>
/// Enum FIELD_POS_CORRECTOR_AGE_CHECK_ERROR for value: 87
/// </summary>
FIELD_POS_CORRECTOR_AGE_CHECK_ERROR = 87,

/// <summary>
/// Enum FIELD_POS_CORRECTOR_SEX_CHECK_ERROR for value: 88
/// </summary>
FIELD_POS_CORRECTOR_SEX_CHECK_ERROR = 88,

/// <summary>
/// Enum OVI_IR_INVISIBLE for value: 90
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected EncryptedRCLItem() { }
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@38efd9b4</example>
<example>[B@18909ee8</example>
*/
[DataMember(Name = "EncryptedRCL", IsRequired = true, EmitDefaultValue = true)]
public byte[] EncryptedRCL { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@38efd9b4</example>
<example>[B@18909ee8</example>
*/
[DataMember(Name = "EncryptedRCL", IsRequired = true, EmitDefaultValue = true)]
public byte[] EncryptedRCL { get; set; }
Expand Down Expand Up @@ -105,7 +105,7 @@
/// </summary>
/// <param name="validationContext">Validation context</param>
/// <returns>Validation Result</returns>
protected IEnumerable<ValidationResult> BaseValidate(ValidationContext validationContext)

Check warning on line 108 in src/Regula.DocumentReader.WebClient/Model/EncryptedRCLResult.cs

View workflow job for this annotation

GitHub Actions / run_smoke_test

'EncryptedRCLResult.BaseValidate(ValidationContext)' hides inherited member 'ResultItem.BaseValidate(ValidationContext)'. Use the new keyword if hiding was intended.
{
foreach (var x in base.BaseValidate(validationContext))
{
Expand Down
2 changes: 1 addition & 1 deletion src/Regula.DocumentReader.WebClient/Model/LicenseItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected LicenseItem() { }
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@161092b</example>
<example>[B@80c35a9</example>
*/
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
public byte[] License { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ protected LicenseResult() { }
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@161092b</example>
<example>[B@80c35a9</example>
*/
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
public byte[] License { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,17 @@ public enum SecurityFeatureType
/// <summary>
/// Enum LIVENESS_GEOMETRY_CHECK for value: 55
/// </summary>
LIVENESS_GEOMETRY_CHECK = 55
LIVENESS_GEOMETRY_CHECK = 55,

/// <summary>
/// Enum AGE_CHECK for value: 56
/// </summary>
AGE_CHECK = 56,

/// <summary>
/// Enum SEX_CHECK for value: 57
/// </summary>
SEX_CHECK = 57
}

}
Loading