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 @@ protected EncryptedRCLItem() { }
/// </summary>
/// <value>Base64 encoded data</value>
/*
<example>[B@1f89ae0</example>
<example>[B@c230d58</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@1f89ae0</example>
<example>[B@c230d58</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
4 changes: 2 additions & 2 deletions src/Regula.DocumentReader.WebClient/Model/FaceApiSearch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public partial class FaceApiSearch : IValidatableObject
/// <param name="limit">The maximum number of results to be returned..</param>
/// <param name="threshold">The similarity threshold..</param>
/// <param name="groupIds"> The groups where to conduct the search..</param>
public FaceApiSearch(int limit = default(int), float threshold = default(float), List<int> groupIds = default(List<int>))
public FaceApiSearch(int limit = default(int), float threshold = default(float), List<string> groupIds = default(List<string>))
{
this.Limit = limit;
this.Threshold = threshold;
Expand All @@ -64,7 +64,7 @@ public partial class FaceApiSearch : IValidatableObject
/// </summary>
/// <value> The groups where to conduct the search.</value>
[DataMember(Name = "group_ids", EmitDefaultValue = false)]
public List<int>? GroupIds { get; set; }
public List<string>? GroupIds { get; set; }

/// <summary>
/// Returns the string presentation of the object
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@1a81e6d9</example>
<example>[B@4f840c3f</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@1a81e6d9</example>
<example>[B@4f840c3f</example>
*/
[DataMember(Name = "License", IsRequired = true, EmitDefaultValue = true)]
public byte[] License { get; set; }
Expand Down
Loading