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
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public EncryptedRCLItem(byte[] encryptedRCL = default)
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@5cf2cd73</example>
<example>[B@6f2a71c9</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@5cf2cd73</example>
<example>[B@6f2a71c9</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 @@ public LicenseItem(byte[] license = default)
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@934c927</example>
<example>[B@3836c545</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 @@ public LicenseResult(byte[] license = default, int? bufLength = default, int? li
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@934c927</example>
<example>[B@3836c545</example>
*/
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
public byte[] License { get; set; }
Expand Down
12 changes: 11 additions & 1 deletion src/Regula.DocumentReader.WebClient/Model/TextFieldType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3276,6 +3276,11 @@ public enum TextFieldType
/// </summary>
FT_FIRST_ISSUE_DATE_CHECKSUM = 699,

/// <summary>
/// Enum FT_EXPIRY_TIMESTAMP for value: 700
/// </summary>
FT_EXPIRY_TIMESTAMP = 700,

/// <summary>
/// Enum FT_COMMERCIAL_INDICATOR for value: 701
/// </summary>
Expand All @@ -3289,7 +3294,12 @@ public enum TextFieldType
/// <summary>
/// Enum FT_JURISDICTION_SPECIFIC_DATA for value: 703
/// </summary>
FT_JURISDICTION_SPECIFIC_DATA = 703
FT_JURISDICTION_SPECIFIC_DATA = 703,

/// <summary>
/// Enum FT_DATA_DATE_OF_EXPIRY for value: 704
/// </summary>
FT_DATA_DATE_OF_EXPIRY = 704
}

}
Loading