Skip to content

Commit d6a3fa4

Browse files
Merge pull request #231 from regulaforensics/aaac83f0
Commit: aaac83f0
2 parents 1e802c6 + f4f6478 commit d6a3fa4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

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@1f89ae0</example>
59+
<example>[B@c230d58</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@1f89ae0</example>
65+
<example>[B@c230d58</example>
6666
*/
6767
[DataMember(Name = "EncryptedRCL", IsRequired = true, EmitDefaultValue = true)]
6868
public byte[] EncryptedRCL { get; set; }

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public partial class FaceApiSearch : IValidatableObject
3838
/// <param name="limit">The maximum number of results to be returned..</param>
3939
/// <param name="threshold">The similarity threshold..</param>
4040
/// <param name="groupIds"> The groups where to conduct the search..</param>
41-
public FaceApiSearch(int limit = default(int), float threshold = default(float), List<int> groupIds = default(List<int>))
41+
public FaceApiSearch(int limit = default(int), float threshold = default(float), List<string> groupIds = default(List<string>))
4242
{
4343
this.Limit = limit;
4444
this.Threshold = threshold;
@@ -64,7 +64,7 @@ public partial class FaceApiSearch : IValidatableObject
6464
/// </summary>
6565
/// <value> The groups where to conduct the search.</value>
6666
[DataMember(Name = "group_ids", EmitDefaultValue = false)]
67-
public List<int>? GroupIds { get; set; }
67+
public List<string>? GroupIds { get; set; }
6868

6969
/// <summary>
7070
/// Returns the string presentation of the object

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@1a81e6d9</example>
59+
<example>[B@4f840c3f</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@1a81e6d9</example>
65+
<example>[B@4f840c3f</example>
6666
*/
6767
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
6868
public byte[] License { get; set; }

0 commit comments

Comments
 (0)