Skip to content

Commit a83de5f

Browse files
committed
Commit: 1f050cc8
1 parent 0de90bf commit a83de5f

6 files changed

Lines changed: 8 additions & 23 deletions

File tree

src/Regula.DocumentReader.WebClient/Model/EncryptedRCLItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ protected EncryptedRCLItem() { }
5656
/// </summary>
5757
/// <value>Base64 encoded data</value>
5858
/*
59-
<example>[B@15773356</example>
59+
<example>[B@5b5e9f3c</example>
6060
*/
6161
[DataMember(Name = "EncryptedRCL", IsRequired = true, EmitDefaultValue = true)]
6262
public byte[] EncryptedRCL { get; set; }

src/Regula.DocumentReader.WebClient/Model/EncryptedRCLResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ protected EncryptedRCLResult() { }
6262
/// </summary>
6363
/// <value>Base64 encoded data</value>
6464
/*
65-
<example>[B@15773356</example>
65+
<example>[B@5b5e9f3c</example>
6666
*/
6767
[DataMember(Name = "EncryptedRCL", IsRequired = true, EmitDefaultValue = true)]
6868
public byte[] EncryptedRCL { get; set; }

src/Regula.DocumentReader.WebClient/Model/LicenseItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ protected LicenseItem() { }
5656
/// </summary>
5757
/// <value>Base64 encoded data</value>
5858
/*
59-
<example>[B@65112c5d</example>
59+
<example>[B@3d4ad955</example>
6060
*/
6161
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
6262
public byte[] License { get; set; }

src/Regula.DocumentReader.WebClient/Model/LicenseResult.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ protected LicenseResult() { }
6262
/// </summary>
6363
/// <value>Base64 encoded data</value>
6464
/*
65-
<example>[B@65112c5d</example>
65+
<example>[B@3d4ad955</example>
6666
*/
6767
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
6868
public byte[] License { get; set; }

src/Regula.DocumentReader.WebClient/Model/MDLResult.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ protected MDLResult() { }
4646
/// <param name="light">light.</param>
4747
/// <param name="listIdx">listIdx.</param>
4848
/// <param name="pageIdx">pageIdx.</param>
49-
/// <param name="resultType">resultType (required) (default to Result.MDL_DEVICE_PARSED_RESPONSE).</param>
50-
public MDLResult(Dictionary<string, Object> mDLParsedResponse = default(Dictionary<string, Object>), int bufLength = default(int), int light = default(int), int listIdx = default(int), int pageIdx = default(int), Result resultType = Result.MDL_DEVICE_PARSED_RESPONSE) : base(bufLength, light, listIdx, pageIdx, resultType)
49+
/// <param name="resultType">resultType (required) (default to Result.MDL_PARSED_RESPONSE).</param>
50+
public MDLResult(Dictionary<string, Object> mDLParsedResponse = default(Dictionary<string, Object>), int bufLength = default(int), int light = default(int), int listIdx = default(int), int pageIdx = default(int), Result resultType = Result.MDL_PARSED_RESPONSE) : base(bufLength, light, listIdx, pageIdx, resultType)
5151
{
5252
// to ensure "mDLParsedResponse" is required (not null)
5353
if (mDLParsedResponse == null)

src/Regula.DocumentReader.WebClient/Model/Result.cs

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -212,24 +212,9 @@ public enum Result
212212
DTC_VC = 109,
213213

214214
/// <summary>
215-
/// Enum MDL_DEVICE_RAW_RESPONSE for value: 120
215+
/// Enum MDL_PARSED_RESPONSE for value: 121
216216
/// </summary>
217-
MDL_DEVICE_RAW_RESPONSE = 120,
218-
219-
/// <summary>
220-
/// Enum MDL_DEVICE_PARSED_RESPONSE for value: 121
221-
/// </summary>
222-
MDL_DEVICE_PARSED_RESPONSE = 121,
223-
224-
/// <summary>
225-
/// Enum MDL_SERVER_RAW_RESPONSE for value: 122
226-
/// </summary>
227-
MDL_SERVER_RAW_RESPONSE = 122,
228-
229-
/// <summary>
230-
/// Enum MDL_SERVER_PARSED_RESPONSE for value: 123
231-
/// </summary>
232-
MDL_SERVER_PARSED_RESPONSE = 123,
217+
MDL_PARSED_RESPONSE = 121,
233218

234219
/// <summary>
235220
/// Enum VDS_NC for value: 124

0 commit comments

Comments
 (0)