diff --git a/src/Regula.FaceSDK.IdentificationExample/Program.cs b/src/Regula.FaceSDK.IdentificationExample/Program.cs index ec250b4..d8b72b6 100644 --- a/src/Regula.FaceSDK.IdentificationExample/Program.cs +++ b/src/Regula.FaceSDK.IdentificationExample/Program.cs @@ -24,13 +24,13 @@ public static void Main(string[] args) var person2Id = sdk.PersonApi.CreatePerson( new PersonFields(name:"person1")).Id; - sdk.PersonApi.AddImageToPerson(person1Id, new ImageFields(image:new ImageFieldsImage(content: face1))); - sdk.PersonApi.AddImageToPerson(person2Id, new ImageFields(image:new ImageFieldsImage(content: face2))); + sdk.PersonApi.AddImageToPerson(person1Id, new ImageFields(image:new AddImageToPersonRequestImage(content: face1))); + sdk.PersonApi.AddImageToPerson(person2Id, new ImageFields(image:new AddImageToPersonRequestImage(content: face2))); var person1 = sdk.PersonApi.GetPerson(person1Id); var person2 = sdk.PersonApi.GetPerson(person2Id); - var group = sdk.GroupApi.CreateGroup(new GroupToCreate(name: "group1")); + var group = sdk.GroupApi.CreateGroup(new GroupToCreate(name: "group1", metadata: new Dictionary())); sdk.GroupApi.UpdatePersonsInGroup( group.Id, @@ -54,7 +54,7 @@ public static void Main(string[] args) var searchResult = sdk.SearchApi.Search( new SearchRequest( groupIds: new List() {}, - image: new ImageFieldsImage(content: face1), + image: new AddImageToPersonRequestImage(content: face1), limit: 10, threshold: 0.8f ) diff --git a/src/Regula.FaceSDK.NetCoreExample/Program.cs b/src/Regula.FaceSDK.NetCoreExample/Program.cs index 0422d0f..b802859 100644 --- a/src/Regula.FaceSDK.NetCoreExample/Program.cs +++ b/src/Regula.FaceSDK.NetCoreExample/Program.cs @@ -24,7 +24,7 @@ private static void Main(string[] args) var matchImage2 = new MatchImage(data: face1, type: ImageSource.DOCUMENT_RFID); var matchImage3 = new MatchImage(data: face2, type: ImageSource.LIVE); - var matchingRequest = new MatchRequest(tag: "1", + var matchingRequest = new MatchRequest(tag: Guid.NewGuid().ToString(), thumbnails:false, images:new List {matchImage1, matchImage2, matchImage3} ); @@ -38,7 +38,7 @@ private static void Main(string[] args) Console.WriteLine("pair({0}, {1}) similarity: {2}", comparison.FirstIndex, comparison.SecondIndex, comparison.Similarity); - var detectRequest = new DetectRequest(tag: "1", image:face2); + var detectRequest = new DetectRequest(tag: Guid.NewGuid().ToString(), image:face2); var detectResponse = sdk.MatchingApi.Detect(detectRequest); var detectResults = detectResponse.Results; diff --git a/src/Regula.FaceSDK.WebClient/Api/MatchingApi.cs b/src/Regula.FaceSDK.WebClient/Api/MatchingApi.cs index 909ed34..8b10475 100644 --- a/src/Regula.FaceSDK.WebClient/Api/MatchingApi.cs +++ b/src/Regula.FaceSDK.WebClient/Api/MatchingApi.cs @@ -355,7 +355,7 @@ public void AddDefaultHeader(string key, string value) } return new ApiResponse(localVarStatusCode, - localVarResponse.Headers.ToDictionary(x => x.Name, x => string.Join(",", x.Value)), + localVarResponse.Headers. GroupBy(x=>x.Name, StringComparer.OrdinalIgnoreCase).ToDictionary(g => g.Key, g => string.Join(",", g.First().Value)), (DetectResponse) this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(DetectResponse))); } @@ -512,7 +512,7 @@ public void AddDefaultHeader(string key, string value) } return new ApiResponse(localVarStatusCode, - localVarResponse.Headers.ToDictionary(x => x.Name, x => string.Join(",", x.Value)), + localVarResponse.Headers. GroupBy(x=>x.Name, StringComparer.OrdinalIgnoreCase).ToDictionary(g=>g.Key, g => string.Join(",", g.First().Value)), (MatchResponse) this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(MatchResponse))); } diff --git a/src/Regula.FaceSDK.WebClient/Model/AddImageToPersonRequest.cs b/src/Regula.FaceSDK.WebClient/Model/AddImageToPersonRequest.cs index a84d54d..f8291f8 100644 --- a/src/Regula.FaceSDK.WebClient/Model/AddImageToPersonRequest.cs +++ b/src/Regula.FaceSDK.WebClient/Model/AddImageToPersonRequest.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/AddImageToPersonRequestImage.cs b/src/Regula.FaceSDK.WebClient/Model/AddImageToPersonRequestImage.cs index 133cb92..c7e604d 100644 --- a/src/Regula.FaceSDK.WebClient/Model/AddImageToPersonRequestImage.cs +++ b/src/Regula.FaceSDK.WebClient/Model/AddImageToPersonRequestImage.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -34,7 +34,7 @@ public partial class AddImageToPersonRequestImage : IEquatable class. /// /// Original media type of the uploaded image.. - /// Base64 encoded image.. + /// Base64-encoded image.. /// Image URL.. /// resizeOptions. public AddImageToPersonRequestImage(string contentType = default(string), byte[] content = default(byte[]), string imageUrl = default(string), ResizeOptions resizeOptions = default(ResizeOptions)) @@ -53,9 +53,9 @@ public partial class AddImageToPersonRequestImage : IEquatable - /// Base64 encoded image. + /// Base64-encoded image. /// - /// Base64 encoded image. + /// Base64-encoded image. [DataMember(Name="content", EmitDefaultValue=false)] public byte[] Content { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/AddImageToPersonResponse.cs b/src/Regula.FaceSDK.WebClient/Model/AddImageToPersonResponse.cs index b226108..f3885fb 100644 --- a/src/Regula.FaceSDK.WebClient/Model/AddImageToPersonResponse.cs +++ b/src/Regula.FaceSDK.WebClient/Model/AddImageToPersonResponse.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/AttributeConfig.cs b/src/Regula.FaceSDK.WebClient/Model/AttributeConfig.cs index e86e669..25ea71f 100644 --- a/src/Regula.FaceSDK.WebClient/Model/AttributeConfig.cs +++ b/src/Regula.FaceSDK.WebClient/Model/AttributeConfig.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/Crop.cs b/src/Regula.FaceSDK.WebClient/Model/Crop.cs index 469ec17..7c2f400 100644 --- a/src/Regula.FaceSDK.WebClient/Model/Crop.cs +++ b/src/Regula.FaceSDK.WebClient/Model/Crop.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/DetectRequest.cs b/src/Regula.FaceSDK.WebClient/Model/DetectRequest.cs index 11d82c4..e5797e9 100644 --- a/src/Regula.FaceSDK.WebClient/Model/DetectRequest.cs +++ b/src/Regula.FaceSDK.WebClient/Model/DetectRequest.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -33,9 +33,9 @@ public partial class DetectRequest : IEquatable, IValidatableObj /// /// Initializes a new instance of the class. /// - /// Session identificator.. + /// Session identificator, should be unique for each session.. /// processParam. - /// Base64 encoded image.. + /// Base64-encoded image.. /// Deprecated, use the `crop` field in `processParam` instead. (default to false). public DetectRequest(string tag = default(string), ProcessParam processParam = default(ProcessParam), byte[] image = default(byte[]), bool thumbnails = false) { @@ -54,9 +54,9 @@ public partial class DetectRequest : IEquatable, IValidatableObj } /// - /// Session identificator. + /// Session identificator, should be unique for each session. /// - /// Session identificator. + /// Session identificator, should be unique for each session. [DataMember(Name="tag", EmitDefaultValue=false)] public string Tag { get; set; } @@ -67,9 +67,9 @@ public partial class DetectRequest : IEquatable, IValidatableObj public ProcessParam ProcessParam { get; set; } /// - /// Base64 encoded image. + /// Base64-encoded image. /// - /// Base64 encoded image. + /// Base64-encoded image. [DataMember(Name="image", EmitDefaultValue=false)] public byte[] Image { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/DetectResponse.cs b/src/Regula.FaceSDK.WebClient/Model/DetectResponse.cs index 21b6dbc..645e631 100644 --- a/src/Regula.FaceSDK.WebClient/Model/DetectResponse.cs +++ b/src/Regula.FaceSDK.WebClient/Model/DetectResponse.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/DetectResult.cs b/src/Regula.FaceSDK.WebClient/Model/DetectResult.cs index b1fc258..1299740 100644 --- a/src/Regula.FaceSDK.WebClient/Model/DetectResult.cs +++ b/src/Regula.FaceSDK.WebClient/Model/DetectResult.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/Detection.cs b/src/Regula.FaceSDK.WebClient/Model/Detection.cs index af1861e..4fc1392 100644 --- a/src/Regula.FaceSDK.WebClient/Model/Detection.cs +++ b/src/Regula.FaceSDK.WebClient/Model/Detection.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -38,12 +38,12 @@ protected Detection() { } /// /// Initializes a new instance of the class. /// - /// Base64 encoded image.. + /// Base64-encoded image.. /// attributes. /// Absolute coordinates (x,y) of five points of each detected face: left eye, right eye, nose, left point of lips, right point of lips. (required). /// quality. /// The rectangular area of a detected face that is represented by a set of four elements: the X and Y coordinates of the top-left point, and the width and height dimensions of the rectangle. (required). - /// Base64 of the cropped portrait.. + /// See `crop` instead.. public Detection(byte[] crop = default(byte[]), DetectionAttributes attributes = default(DetectionAttributes), List> landmarks = default(List>), DetectionQuality quality = default(DetectionQuality), List roi = default(List), byte[] thumbnail = default(byte[])) { // to ensure "landmarks" is required (not null) @@ -73,9 +73,9 @@ protected Detection() { } } /// - /// Base64 encoded image. + /// Base64-encoded image. /// - /// Base64 encoded image. + /// Base64-encoded image. [DataMember(Name="crop", EmitDefaultValue=false)] public byte[] Crop { get; set; } @@ -106,10 +106,11 @@ protected Detection() { } public List Roi { get; set; } /// - /// Base64 of the cropped portrait. + /// See `crop` instead. /// - /// Base64 of the cropped portrait. + /// See `crop` instead. [DataMember(Name="thumbnail", EmitDefaultValue=false)] + [Obsolete] public byte[] Thumbnail { get; set; } /// diff --git a/src/Regula.FaceSDK.WebClient/Model/DetectionAttributes.cs b/src/Regula.FaceSDK.WebClient/Model/DetectionAttributes.cs index f646cc0..8e0e2a2 100644 --- a/src/Regula.FaceSDK.WebClient/Model/DetectionAttributes.cs +++ b/src/Regula.FaceSDK.WebClient/Model/DetectionAttributes.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/DetectionFace.cs b/src/Regula.FaceSDK.WebClient/Model/DetectionFace.cs index 9b0ab79..4e49dc4 100644 --- a/src/Regula.FaceSDK.WebClient/Model/DetectionFace.cs +++ b/src/Regula.FaceSDK.WebClient/Model/DetectionFace.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -37,8 +37,8 @@ public partial class DetectionFace : IEquatable, IValidatableObj /// Absolute coordinates (x,y) of five points of each detected face: left eye, right eye, nose, left point of lips, right point of lips.. /// Angle of rotation of the face from the vertical axis, degrees.. /// The rectangular area of a detected face that is represented by a set of four elements: the X and Y coordinates of the top-left point, and the width and height dimensions of the rectangle.. - /// Base64 of the cropped portrait.. - /// Base64 of the cropped portrait.. + /// See `crop` instead.. + /// Base64-encoded aligned and cropped portrait.. public DetectionFace(decimal faceIndex = default(decimal), List> landmarks = default(List>), decimal rotationAngle = default(decimal), List roi = default(List), byte[] thumbnail = default(byte[]), byte[] crop = default(byte[])) { this.FaceIndex = faceIndex; @@ -78,16 +78,17 @@ public partial class DetectionFace : IEquatable, IValidatableObj public List Roi { get; set; } /// - /// Base64 of the cropped portrait. + /// See `crop` instead. /// - /// Base64 of the cropped portrait. + /// See `crop` instead. [DataMember(Name="thumbnail", EmitDefaultValue=false)] + [Obsolete] public byte[] Thumbnail { get; set; } /// - /// Base64 of the cropped portrait. + /// Base64-encoded aligned and cropped portrait. /// - /// Base64 of the cropped portrait. + /// Base64-encoded aligned and cropped portrait. [DataMember(Name="crop", EmitDefaultValue=false)] public byte[] Crop { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/DetectionQuality.cs b/src/Regula.FaceSDK.WebClient/Model/DetectionQuality.cs index 17668cc..51a4faf 100644 --- a/src/Regula.FaceSDK.WebClient/Model/DetectionQuality.cs +++ b/src/Regula.FaceSDK.WebClient/Model/DetectionQuality.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceAttribute.cs b/src/Regula.FaceSDK.WebClient/Model/FaceAttribute.cs index da072d9..8abe843 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceAttribute.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceAttribute.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityAlignType.cs b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityAlignType.cs index c3f8ff0..07d8f4a 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityAlignType.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityAlignType.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroups.cs b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroups.cs index 2b28580..11981b2 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroups.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroups.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroupsStrings.cs b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroupsStrings.cs index 4743b3a..3aed8d3 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroupsStrings.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityGroupsStrings.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityStatus.cs b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityStatus.cs index 68f9b90..dd27f9d 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityStatus.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceImageQualityStatus.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceQualityConfigName.cs b/src/Regula.FaceSDK.WebClient/Model/FaceQualityConfigName.cs index 3e5794b..2c88bcf 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceQualityConfigName.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceQualityConfigName.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceQualityScenarios.cs b/src/Regula.FaceSDK.WebClient/Model/FaceQualityScenarios.cs index bff6e58..8ae463a 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceQualityScenarios.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceQualityScenarios.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceSDKResult.cs b/src/Regula.FaceSDK.WebClient/Model/FaceSDKResult.cs index 6668c27..cb9ea0e 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceSDKResult.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceSDKResult.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/FaceSDKResultCode.cs b/src/Regula.FaceSDK.WebClient/Model/FaceSDKResultCode.cs index 5d706f4..a623833 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FaceSDKResultCode.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FaceSDKResultCode.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -25,9 +25,9 @@ namespace Regula.FaceSDK.WebClient.Model { /// - /// The result code, see enum: https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-sdk-result-code/ + /// The result code, see the [FaceSDKResultCode enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-sdk-result-code/). Some of the values: - `0`—everything is OK - `1`—image is empty, try again with another image - `2`—face is not detected - `6`—data cannot be decoded as an image /// - /// The result code, see enum: https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-sdk-result-code/ + /// The result code, see the [FaceSDKResultCode enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-sdk-result-code/). Some of the values: - `0`—everything is OK - `1`—image is empty, try again with another image - `2`—face is not detected - `6`—data cannot be decoded as an image public enum FaceSDKResultCode { @@ -224,7 +224,17 @@ public enum FaceSDKResultCode /// /// Enum FACER_ABORTED_LIVENESS_TRANSACTION for value: 252 /// - FACER_ABORTED_LIVENESS_TRANSACTION = 252 + FACER_ABORTED_LIVENESS_TRANSACTION = 252, + + /// + /// Enum FACER_GENERAL_ERROR for value: 253 + /// + FACER_GENERAL_ERROR = 253, + + /// + /// Enum FACER_PASSIVE_LIVENESS_FAIL for value: 254 + /// + FACER_PASSIVE_LIVENESS_FAIL = 254 } diff --git a/src/Regula.FaceSDK.WebClient/Model/FacesResponse.cs b/src/Regula.FaceSDK.WebClient/Model/FacesResponse.cs index 26f35fe..f4d1916 100644 --- a/src/Regula.FaceSDK.WebClient/Model/FacesResponse.cs +++ b/src/Regula.FaceSDK.WebClient/Model/FacesResponse.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -37,9 +37,9 @@ public partial class FacesResponse : IEquatable, IValidatableObj /// Absolute coordinates (x,y) of five points of each detected face: left eye, right eye, nose, left point of lips, right point of lips.. /// rotationAngle. /// The rectangular area of a detected face that is represented by a set of four elements: the X and Y coordinates of the top-left point, and the width and height dimensions of the rectangle.. - /// Base64 of the cropped portrait.. - /// Base64 of the cropped portrait.. - /// persons. + /// See `crop` instead.. + /// Base64-encoded aligned and cropped portrait.. + /// Detected Persons.. public FacesResponse(decimal faceIndex = default(decimal), List> landmarks = default(List>), float rotationAngle = default(float), List roi = default(List), byte[] thumbnail = default(byte[]), byte[] crop = default(byte[]), List persons = default(List)) { this.FaceIndex = faceIndex; @@ -79,22 +79,24 @@ public partial class FacesResponse : IEquatable, IValidatableObj public List Roi { get; set; } /// - /// Base64 of the cropped portrait. + /// See `crop` instead. /// - /// Base64 of the cropped portrait. + /// See `crop` instead. [DataMember(Name="thumbnail", EmitDefaultValue=false)] + [Obsolete] public byte[] Thumbnail { get; set; } /// - /// Base64 of the cropped portrait. + /// Base64-encoded aligned and cropped portrait. /// - /// Base64 of the cropped portrait. + /// Base64-encoded aligned and cropped portrait. [DataMember(Name="crop", EmitDefaultValue=false)] public byte[] Crop { get; set; } /// - /// Gets or Sets Persons + /// Detected Persons. /// + /// Detected Persons. [DataMember(Name="persons", EmitDefaultValue=false)] public List Persons { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/Group.cs b/src/Regula.FaceSDK.WebClient/Model/Group.cs index 04505a0..252d875 100644 --- a/src/Regula.FaceSDK.WebClient/Model/Group.cs +++ b/src/Regula.FaceSDK.WebClient/Model/Group.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/GroupPage.cs b/src/Regula.FaceSDK.WebClient/Model/GroupPage.cs index cc8f6db..a5900e4 100644 --- a/src/Regula.FaceSDK.WebClient/Model/GroupPage.cs +++ b/src/Regula.FaceSDK.WebClient/Model/GroupPage.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/GroupResponse.cs b/src/Regula.FaceSDK.WebClient/Model/GroupResponse.cs index a7993de..167c0ec 100644 --- a/src/Regula.FaceSDK.WebClient/Model/GroupResponse.cs +++ b/src/Regula.FaceSDK.WebClient/Model/GroupResponse.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/GroupToCreate.cs b/src/Regula.FaceSDK.WebClient/Model/GroupToCreate.cs index 53a7bba..a9bb12e 100644 --- a/src/Regula.FaceSDK.WebClient/Model/GroupToCreate.cs +++ b/src/Regula.FaceSDK.WebClient/Model/GroupToCreate.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/Image.cs b/src/Regula.FaceSDK.WebClient/Model/Image.cs index 644f410..f9e08c1 100644 --- a/src/Regula.FaceSDK.WebClient/Model/Image.cs +++ b/src/Regula.FaceSDK.WebClient/Model/Image.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/ImageFields.cs b/src/Regula.FaceSDK.WebClient/Model/ImageFields.cs index ca96a29..bac2512 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ImageFields.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ImageFields.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -33,10 +33,10 @@ public partial class ImageFields : IEquatable, IValidatableObject /// /// Initializes a new instance of the class. /// - /// Session identificator.. + /// Session identificator, should be unique for each session.. /// image. /// outputImageParams. - /// Whether to detect all faces in the image. If set to false, only the most central face is detected. (default to false). + /// Whether to detect all faces in the image. If set to `false`, only the most central face is detected. (default to false). /// The similarity threshold.. /// The maximum number of results to be returned.. public ImageFields(string tag = default(string), AddImageToPersonRequestImage image = default(AddImageToPersonRequestImage), OutputImageParams outputImageParams = default(OutputImageParams), bool detectAll = false, float threshold = default(float), int limit = default(int)) @@ -58,9 +58,9 @@ public partial class ImageFields : IEquatable, IValidatableObject } /// - /// Session identificator. + /// Session identificator, should be unique for each session. /// - /// Session identificator. + /// Session identificator, should be unique for each session. [DataMember(Name="tag", EmitDefaultValue=false)] public string Tag { get; set; } @@ -77,9 +77,9 @@ public partial class ImageFields : IEquatable, IValidatableObject public OutputImageParams OutputImageParams { get; set; } /// - /// Whether to detect all faces in the image. If set to false, only the most central face is detected. + /// Whether to detect all faces in the image. If set to `false`, only the most central face is detected. /// - /// Whether to detect all faces in the image. If set to false, only the most central face is detected. + /// Whether to detect all faces in the image. If set to `false`, only the most central face is detected. [DataMember(Name="detectAll", EmitDefaultValue=false)] public bool DetectAll { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/ImagePage.cs b/src/Regula.FaceSDK.WebClient/Model/ImagePage.cs index 151f5e9..9399355 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ImagePage.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ImagePage.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/ImageSource.cs b/src/Regula.FaceSDK.WebClient/Model/ImageSource.cs index 0836620..42601bd 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ImageSource.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ImageSource.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -25,9 +25,9 @@ namespace Regula.FaceSDK.WebClient.Model { /// - /// The type of the image, defines the way the comparison is performed. See the enum: https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/image-source/ + /// The type of the image, defines the way the comparison is performed, see the [ImageSource enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/image-source/). /// - /// The type of the image, defines the way the comparison is performed. See the enum: https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/image-source/ + /// The type of the image, defines the way the comparison is performed, see the [ImageSource enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/image-source/). public enum ImageSource { @@ -59,7 +59,12 @@ public enum ImageSource /// /// Enum GHOST for value: 6 /// - GHOST = 6 + GHOST = 6, + + /// + /// Enum BARCODE for value: 7 + /// + BARCODE = 7 } diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequest.cs b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequest.cs index ebfcc24..1c0e896 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequest.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequest.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -33,8 +33,8 @@ public partial class MatchAndSearchRequest : IEquatable, /// /// Initializes a new instance of the class. /// - /// Session identificator.. - /// Array of Person images.. + /// Session identificator, should be unique for each session.. + /// Person's images.. /// IDs of the groups in which the search is performed.. public MatchAndSearchRequest(string tag = default(string), List images = default(List), List groupIds = default(List)) { @@ -44,16 +44,16 @@ public partial class MatchAndSearchRequest : IEquatable, } /// - /// Session identificator. + /// Session identificator, should be unique for each session. /// - /// Session identificator. + /// Session identificator, should be unique for each session. [DataMember(Name="tag", EmitDefaultValue=false)] public string Tag { get; set; } /// - /// Array of Person images. + /// Person's images. /// - /// Array of Person images. + /// Person's images. [DataMember(Name="images", EmitDefaultValue=false)] public List Images { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequestAllOfImages.cs b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequestAllOfImages.cs index 033bbee..47d734f 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequestAllOfImages.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchRequestAllOfImages.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -38,7 +38,7 @@ public partial class MatchAndSearchRequestAllOfImages : IEquatable /// Initializes a new instance of the class. /// - /// Base64 encoded image.. + /// Base64-encoded image.. /// type. public MatchAndSearchRequestAllOfImages(byte[] content = default(byte[]), ImageSource? type = default(ImageSource?)) { @@ -47,9 +47,9 @@ public partial class MatchAndSearchRequestAllOfImages : IEquatable - /// Base64 encoded image. + /// Base64-encoded image. /// - /// Base64 encoded image. + /// Base64-encoded image. [DataMember(Name="content", EmitDefaultValue=false)] public byte[] Content { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponse.cs b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponse.cs index 6ba8f31..879ba60 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponse.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponse.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -44,10 +44,10 @@ protected MatchAndSearchResponse() { } /// Initializes a new instance of the class. /// /// code (required). - /// results. - /// elapsedTime. + /// The match and search results.. + /// Time the processing has taken, ms.. /// A free-form object containing person's extended attributes.. - /// detections. + /// The detection results.. public MatchAndSearchResponse(FaceSDKResultCode code = default(FaceSDKResultCode), List results = default(List), float elapsedTime = default(float), Dictionary metadata = default(Dictionary), List detections = default(List)) { // to ensure "code" is required (not null) @@ -68,14 +68,16 @@ protected MatchAndSearchResponse() { } /// - /// Gets or Sets Results + /// The match and search results. /// + /// The match and search results. [DataMember(Name="results", EmitDefaultValue=false)] public List Results { get; set; } /// - /// Gets or Sets ElapsedTime + /// Time the processing has taken, ms. /// + /// Time the processing has taken, ms. [DataMember(Name="elapsedTime", EmitDefaultValue=false)] public float ElapsedTime { get; set; } @@ -87,8 +89,9 @@ protected MatchAndSearchResponse() { } public Dictionary Metadata { get; set; } /// - /// Gets or Sets Detections + /// The detection results. /// + /// The detection results. [DataMember(Name="detections", EmitDefaultValue=false)] public List Detections { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponseAllOfDetections.cs b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponseAllOfDetections.cs index 656fa70..8c48fa6 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponseAllOfDetections.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchAndSearchResponseAllOfDetections.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -38,8 +38,8 @@ public partial class MatchAndSearchResponseAllOfDetections : IEquatable /// Initializes a new instance of the class. /// - /// faces. - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated.. + /// Detected faces.. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated.. /// status. public MatchAndSearchResponseAllOfDetections(List faces = default(List), int imageIndex = default(int), FaceSDKResultCode? status = default(FaceSDKResultCode?)) { @@ -49,15 +49,16 @@ public partial class MatchAndSearchResponseAllOfDetections : IEquatable - /// Gets or Sets Faces + /// Detected faces. /// + /// Detected faces. [DataMember(Name="faces", EmitDefaultValue=false)] public List Faces { get; set; } /// - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. /// - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. [DataMember(Name="imageIndex", EmitDefaultValue=false)] public int ImageIndex { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchImage.cs b/src/Regula.FaceSDK.WebClient/Model/MatchImage.cs index ad57354..4c91bc9 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchImage.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchImage.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -43,10 +43,10 @@ protected MatchImage() { } /// /// Initializes a new instance of the class. /// - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated.. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated.. /// type. - /// Base64 encoded image. (required). - /// Whether to detect all faces in the image. If set to false, only the most central face is detected. (default to false). + /// Base64-encoded image. (required). + /// Whether to detect all faces in the image. If set to `false`, only the most central face is detected. (default to false). public MatchImage(int index = default(int), ImageSource? type = default(ImageSource?), byte[] data = default(byte[]), bool detectAll = false) { // to ensure "data" is required (not null) @@ -73,24 +73,24 @@ protected MatchImage() { } } /// - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. /// - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. [DataMember(Name="index", EmitDefaultValue=false)] public int Index { get; set; } /// - /// Base64 encoded image. + /// Base64-encoded image. /// - /// Base64 encoded image. + /// Base64-encoded image. [DataMember(Name="data", EmitDefaultValue=true)] public byte[] Data { get; set; } /// - /// Whether to detect all faces in the image. If set to false, only the most central face is detected. + /// Whether to detect all faces in the image. If set to `false`, only the most central face is detected. /// - /// Whether to detect all faces in the image. If set to false, only the most central face is detected. + /// Whether to detect all faces in the image. If set to `false`, only the most central face is detected. [DataMember(Name="detectAll", EmitDefaultValue=false)] public bool DetectAll { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchImageDetection.cs b/src/Regula.FaceSDK.WebClient/Model/MatchImageDetection.cs index 1f8c8cc..44d3f26 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchImageDetection.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchImageDetection.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -43,8 +43,8 @@ protected MatchImageDetection() { } /// /// Initializes a new instance of the class. /// - /// The array of detected faces.. - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. (required). + /// Detected faces.. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. (required). /// status (required). public MatchImageDetection(List faces = default(List), int imageIndex = default(int), FaceSDKResultCode status = default(FaceSDKResultCode)) { @@ -72,16 +72,16 @@ protected MatchImageDetection() { } } /// - /// The array of detected faces. + /// Detected faces. /// - /// The array of detected faces. + /// Detected faces. [DataMember(Name="faces", EmitDefaultValue=false)] public List Faces { get; set; } /// - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. /// - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. [DataMember(Name="imageIndex", EmitDefaultValue=true)] public int ImageIndex { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchImageResult.cs b/src/Regula.FaceSDK.WebClient/Model/MatchImageResult.cs index 3602677..b01c515 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchImageResult.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchImageResult.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -48,10 +48,10 @@ protected MatchImageResult() { } /// /// Initializes a new instance of the class. /// - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. (required). + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. (required). /// The detected face index number.. /// first. - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. (required). + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. (required). /// The detected face index number.. /// second. /// A dimensionless number that shows how similar the compared faces are. 0—absolutely identical faces.. @@ -87,9 +87,9 @@ protected MatchImageResult() { } } /// - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. /// - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. [DataMember(Name="firstIndex", EmitDefaultValue=true)] public int FirstIndex { get; set; } @@ -102,9 +102,9 @@ protected MatchImageResult() { } /// - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. /// - /// The image index number. Can be given; if not given, the index numbers are set automatically starting from 0. All index numbers must be whole and unique—not repeated. + /// The image index number. Can be given; if not given, the index numbers are set automatically starting from `0`. All index numbers must be whole and unique—not repeated. [DataMember(Name="secondIndex", EmitDefaultValue=true)] public int SecondIndex { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchRequest.cs b/src/Regula.FaceSDK.WebClient/Model/MatchRequest.cs index 3a705c4..b71559b 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchRequest.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchRequest.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -38,12 +38,13 @@ protected MatchRequest() { } /// /// Initializes a new instance of the class. /// - /// Session identificator.. - /// Deprecated, use the `crop` field in `outputImageParams` instead. (default to false). - /// The array of all images included in the comparison. (required). + /// Session identificator, should be unique for each session.. + /// Use `outputImageParams.crop` instead.. + /// All images included in the comparison. (required). /// outputImageParams. - public MatchRequest(string tag = default(string), bool thumbnails = false, List images = default(List), MatchRequestOutputImageParams outputImageParams = default(MatchRequestOutputImageParams)) + public MatchRequest(string tag = default(string), Object thumbnails = default(Object), List images = default(List), MatchRequestOutputImageParams outputImageParams = default(MatchRequestOutputImageParams)) { + this.Thumbnails = thumbnails; // to ensure "images" is required (not null) if (images == null) { @@ -55,37 +56,29 @@ protected MatchRequest() { } } this.Tag = tag; - // use default value if no "thumbnails" provided - if (thumbnails == null) - { - this.Thumbnails = false; - } - else - { - this.Thumbnails = thumbnails; - } + this.Thumbnails = thumbnails; this.OutputImageParams = outputImageParams; } /// - /// Session identificator. + /// Session identificator, should be unique for each session. /// - /// Session identificator. + /// Session identificator, should be unique for each session. [DataMember(Name="tag", EmitDefaultValue=false)] public string Tag { get; set; } /// - /// Deprecated, use the `crop` field in `outputImageParams` instead. + /// Use `outputImageParams.crop` instead. /// - /// Deprecated, use the `crop` field in `outputImageParams` instead. - [DataMember(Name="thumbnails", EmitDefaultValue=false)] + /// Use `outputImageParams.crop` instead. + [DataMember(Name="thumbnails", EmitDefaultValue=true)] [Obsolete] - public bool Thumbnails { get; set; } + public Object Thumbnails { get; set; } /// - /// The array of all images included in the comparison. + /// All images included in the comparison. /// - /// The array of all images included in the comparison. + /// All images included in the comparison. [DataMember(Name="images", EmitDefaultValue=true)] public List Images { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParams.cs b/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParams.cs index 418fe6c..8b4ce66 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParams.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParams.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParamsCrop.cs b/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParamsCrop.cs index 057a940..1bab40b 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParamsCrop.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchRequestOutputImageParamsCrop.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -25,15 +25,15 @@ namespace Regula.FaceSDK.WebClient.Model { /// - /// Whether to return the Base64 of an aligned and cropped portrait in the `crop` field. + /// If set, a Base64-encoded aligned and cropped by the indicated settings portrait is returned in the `crop` field. /// [DataContract] public partial class MatchRequestOutputImageParamsCrop : IEquatable, IValidatableObject { /// - /// The aspect ratio according to which face alignment is performed during face detection. + /// The aspect ratio according to which face alignment is performed. See the [FaceImageQualityAlignType enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-image-quality-align-type/). To get a thumbnail with dimensions 3x4, set `0`. /// - /// The aspect ratio according to which face alignment is performed during face detection. + /// The aspect ratio according to which face alignment is performed. See the [FaceImageQualityAlignType enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-image-quality-align-type/). To get a thumbnail with dimensions 3x4, set `0`. public enum TypeEnum { /// @@ -64,18 +64,18 @@ public enum TypeEnum } /// - /// The aspect ratio according to which face alignment is performed during face detection. + /// The aspect ratio according to which face alignment is performed. See the [FaceImageQualityAlignType enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-image-quality-align-type/). To get a thumbnail with dimensions 3x4, set `0`. /// - /// The aspect ratio according to which face alignment is performed during face detection. + /// The aspect ratio according to which face alignment is performed. See the [FaceImageQualityAlignType enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-image-quality-align-type/). To get a thumbnail with dimensions 3x4, set `0`. [DataMember(Name="type", EmitDefaultValue=false)] public TypeEnum? Type { get; set; } /// /// Initializes a new instance of the class. /// /// The RGB value of a color for filling background behind a person's silhouette and for aligning the image.. - /// Whether to return the coordinates of the rectangle with the face in the original image prepared for the face crop.. + /// Whether to return the coordinates of the rectangle with the face in the original image prepared for the face crop. Can be used only if the face in the original image is not tilted.. /// The resize value in case `type` matches this value. If it doesn't, no resize is performed.. - /// The aspect ratio according to which face alignment is performed during face detection.. + /// The aspect ratio according to which face alignment is performed. See the [FaceImageQualityAlignType enum](https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-image-quality-align-type/). To get a thumbnail with dimensions 3x4, set `0`.. public MatchRequestOutputImageParamsCrop(List padColor = default(List), bool returnOriginalRect = default(bool), List size = default(List), TypeEnum? type = default(TypeEnum?)) { this.PadColor = padColor; @@ -92,9 +92,9 @@ public enum TypeEnum public List PadColor { get; set; } /// - /// Whether to return the coordinates of the rectangle with the face in the original image prepared for the face crop. + /// Whether to return the coordinates of the rectangle with the face in the original image prepared for the face crop. Can be used only if the face in the original image is not tilted. /// - /// Whether to return the coordinates of the rectangle with the face in the original image prepared for the face crop. + /// Whether to return the coordinates of the rectangle with the face in the original image prepared for the face crop. Can be used only if the face in the original image is not tilted. [DataMember(Name="returnOriginalRect", EmitDefaultValue=false)] public bool ReturnOriginalRect { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/MatchResponse.cs b/src/Regula.FaceSDK.WebClient/Model/MatchResponse.cs index 0594af8..94ad316 100644 --- a/src/Regula.FaceSDK.WebClient/Model/MatchResponse.cs +++ b/src/Regula.FaceSDK.WebClient/Model/MatchResponse.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -44,8 +44,8 @@ protected MatchResponse() { } /// Initializes a new instance of the class. /// /// code (required). - /// The array of detected faces.. - /// The array of matching results.. + /// The detection results.. + /// The comparison results.. /// A free-form object containing person's extended attributes.. public MatchResponse(FaceSDKResultCode code = default(FaceSDKResultCode), List detections = default(List), List results = default(List), Dictionary metadata = default(Dictionary)) { @@ -66,16 +66,16 @@ protected MatchResponse() { } /// - /// The array of detected faces. + /// The detection results. /// - /// The array of detected faces. + /// The detection results. [DataMember(Name="detections", EmitDefaultValue=false)] public List Detections { get; set; } /// - /// The array of matching results. + /// The comparison results. /// - /// The array of matching results. + /// The comparison results. [DataMember(Name="results", EmitDefaultValue=false)] public List Results { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/OperationLog.cs b/src/Regula.FaceSDK.WebClient/Model/OperationLog.cs index 775df3c..d7cb188 100644 --- a/src/Regula.FaceSDK.WebClient/Model/OperationLog.cs +++ b/src/Regula.FaceSDK.WebClient/Model/OperationLog.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/OutputImageParams.cs b/src/Regula.FaceSDK.WebClient/Model/OutputImageParams.cs index c8ad50d..3471f35 100644 --- a/src/Regula.FaceSDK.WebClient/Model/OutputImageParams.cs +++ b/src/Regula.FaceSDK.WebClient/Model/OutputImageParams.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/Page.cs b/src/Regula.FaceSDK.WebClient/Model/Page.cs index a32e635..8e9a12a 100644 --- a/src/Regula.FaceSDK.WebClient/Model/Page.cs +++ b/src/Regula.FaceSDK.WebClient/Model/Page.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/Person.cs b/src/Regula.FaceSDK.WebClient/Model/Person.cs index acd71b4..55ba7dc 100644 --- a/src/Regula.FaceSDK.WebClient/Model/Person.cs +++ b/src/Regula.FaceSDK.WebClient/Model/Person.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -38,7 +38,7 @@ protected Person() { } /// /// Initializes a new instance of the class. /// - /// Person name. (required). + /// Person's name. (required). /// A free-form object containing person's extended attributes.. /// List of groups this person belongs to.. /// Person ID. The list of persons is sorted by decreasing ID value.. @@ -64,9 +64,9 @@ protected Person() { } } /// - /// Person name. + /// Person's name. /// - /// Person name. + /// Person's name. [DataMember(Name="name", EmitDefaultValue=true)] public string Name { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/PersonFields.cs b/src/Regula.FaceSDK.WebClient/Model/PersonFields.cs index 78c9cb6..70a1e38 100644 --- a/src/Regula.FaceSDK.WebClient/Model/PersonFields.cs +++ b/src/Regula.FaceSDK.WebClient/Model/PersonFields.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -38,7 +38,7 @@ protected PersonFields() { } /// /// Initializes a new instance of the class. /// - /// Person name. (required). + /// Person's name. (required). /// A free-form object containing person's extended attributes.. /// Groups a person should be placed to. If no group is specified in request, a Default group is created and the person is placed to it.. public PersonFields(string name = default(string), Dictionary metadata = default(Dictionary), List groups = default(List)) @@ -58,9 +58,9 @@ protected PersonFields() { } } /// - /// Person name. + /// Person's name. /// - /// Person name. + /// Person's name. [DataMember(Name="name", EmitDefaultValue=true)] public string Name { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/PersonToUpdateFields.cs b/src/Regula.FaceSDK.WebClient/Model/PersonToUpdateFields.cs index 592418b..5e32d82 100644 --- a/src/Regula.FaceSDK.WebClient/Model/PersonToUpdateFields.cs +++ b/src/Regula.FaceSDK.WebClient/Model/PersonToUpdateFields.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -33,7 +33,7 @@ public partial class PersonToUpdateFields : IEquatable, I /// /// Initializes a new instance of the class. /// - /// Person name.. + /// Person's name.. /// A free-form object containing person's extended attributes.. /// Groups a person should be placed to. If no group is specified in request, a Default group is created and the person is placed to it.. public PersonToUpdateFields(string name = default(string), Dictionary metadata = default(Dictionary), List groups = default(List)) @@ -44,9 +44,9 @@ public partial class PersonToUpdateFields : IEquatable, I } /// - /// Person name. + /// Person's name. /// - /// Person name. + /// Person's name. [DataMember(Name="name", EmitDefaultValue=false)] public string Name { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/PersonWithImages.cs b/src/Regula.FaceSDK.WebClient/Model/PersonWithImages.cs index 3e419f7..1ec3434 100644 --- a/src/Regula.FaceSDK.WebClient/Model/PersonWithImages.cs +++ b/src/Regula.FaceSDK.WebClient/Model/PersonWithImages.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -38,8 +38,8 @@ protected PersonWithImages() { } /// /// Initializes a new instance of the class. /// - /// images. - /// Person name. (required). + /// Detected Persons.. + /// Person's name. (required). /// A free-form object containing person's extended attributes.. /// List of groups this person belongs to.. /// Person ID. The list of persons is sorted by decreasing ID value.. @@ -66,15 +66,16 @@ protected PersonWithImages() { } } /// - /// Gets or Sets Images + /// Detected Persons. /// + /// Detected Persons. [DataMember(Name="images", EmitDefaultValue=false)] public List Images { get; set; } /// - /// Person name. + /// Person's name. /// - /// Person name. + /// Person's name. [DataMember(Name="name", EmitDefaultValue=true)] public string Name { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/PersonsPage.cs b/src/Regula.FaceSDK.WebClient/Model/PersonsPage.cs index ae7f7aa..20caffd 100644 --- a/src/Regula.FaceSDK.WebClient/Model/PersonsPage.cs +++ b/src/Regula.FaceSDK.WebClient/Model/PersonsPage.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/ProcessParam.cs b/src/Regula.FaceSDK.WebClient/Model/ProcessParam.cs index 3c6c9e7..ff13dae 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ProcessParam.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ProcessParam.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/ProcessParamAttributes.cs b/src/Regula.FaceSDK.WebClient/Model/ProcessParamAttributes.cs index 513fca2..b810376 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ProcessParamAttributes.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ProcessParamAttributes.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/QualityConfig.cs b/src/Regula.FaceSDK.WebClient/Model/QualityConfig.cs index 902044c..c2c46b0 100644 --- a/src/Regula.FaceSDK.WebClient/Model/QualityConfig.cs +++ b/src/Regula.FaceSDK.WebClient/Model/QualityConfig.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/QualityDetail.cs b/src/Regula.FaceSDK.WebClient/Model/QualityDetail.cs index a1e2e1f..abcfdcc 100644 --- a/src/Regula.FaceSDK.WebClient/Model/QualityDetail.cs +++ b/src/Regula.FaceSDK.WebClient/Model/QualityDetail.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/QualityDetailsGroups.cs b/src/Regula.FaceSDK.WebClient/Model/QualityDetailsGroups.cs index 9f84110..5529c3b 100644 --- a/src/Regula.FaceSDK.WebClient/Model/QualityDetailsGroups.cs +++ b/src/Regula.FaceSDK.WebClient/Model/QualityDetailsGroups.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/QualityRequest.cs b/src/Regula.FaceSDK.WebClient/Model/QualityRequest.cs index 1c8a837..069b7a0 100644 --- a/src/Regula.FaceSDK.WebClient/Model/QualityRequest.cs +++ b/src/Regula.FaceSDK.WebClient/Model/QualityRequest.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/RecognizeImage.cs b/src/Regula.FaceSDK.WebClient/Model/RecognizeImage.cs index 5116e19..0708247 100644 --- a/src/Regula.FaceSDK.WebClient/Model/RecognizeImage.cs +++ b/src/Regula.FaceSDK.WebClient/Model/RecognizeImage.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/ResizeOptions.cs b/src/Regula.FaceSDK.WebClient/Model/ResizeOptions.cs index e7e6575..14efa20 100644 --- a/src/Regula.FaceSDK.WebClient/Model/ResizeOptions.cs +++ b/src/Regula.FaceSDK.WebClient/Model/ResizeOptions.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchBadParams.cs b/src/Regula.FaceSDK.WebClient/Model/SearchBadParams.cs index 19e8fac..7d18119 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchBadParams.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchBadParams.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchDetection.cs b/src/Regula.FaceSDK.WebClient/Model/SearchDetection.cs index e8773bb..281fcaf 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchDetection.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchDetection.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchParameters.cs b/src/Regula.FaceSDK.WebClient/Model/SearchParameters.cs index ef3bca0..848d738 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchParameters.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchParameters.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchParametersCreatePerson.cs b/src/Regula.FaceSDK.WebClient/Model/SearchParametersCreatePerson.cs index 30ad4b3..32b4bca 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchParametersCreatePerson.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchParametersCreatePerson.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchPerson.cs b/src/Regula.FaceSDK.WebClient/Model/SearchPerson.cs index 1bd1afe..2f07512 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchPerson.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchPerson.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -38,7 +38,7 @@ protected SearchPerson() { } /// /// Initializes a new instance of the class. /// - /// Person name. (required). + /// Person's name. (required). /// A free-form object containing person's extended attributes.. /// List of groups this person belongs to.. /// Person ID. The list of persons is sorted by decreasing ID value.. @@ -68,9 +68,9 @@ protected SearchPerson() { } } /// - /// Person name. + /// Person's name. /// - /// Person name. + /// Person's name. [DataMember(Name="name", EmitDefaultValue=true)] public string Name { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchRequest.cs b/src/Regula.FaceSDK.WebClient/Model/SearchRequest.cs index 13b1dc4..cdfac27 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchRequest.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchRequest.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -35,10 +35,10 @@ public partial class SearchRequest : IEquatable, IValidatableObj /// /// createPerson. /// IDs of the groups in which the search is performed.. - /// Session identificator.. + /// Session identificator, should be unique for each session.. /// image. /// outputImageParams. - /// Whether to detect all faces in the image. If set to false, only the most central face is detected. (default to false). + /// Whether to detect all faces in the image. If set to `false`, only the most central face is detected. (default to false). /// The similarity threshold.. /// The maximum number of results to be returned.. public SearchRequest(SearchParametersCreatePerson createPerson = default(SearchParametersCreatePerson), List groupIds = default(List), string tag = default(string), AddImageToPersonRequestImage image = default(AddImageToPersonRequestImage), OutputImageParams outputImageParams = default(OutputImageParams), bool detectAll = false, float threshold = default(float), int limit = default(int)) @@ -75,9 +75,9 @@ public partial class SearchRequest : IEquatable, IValidatableObj public List GroupIds { get; set; } /// - /// Session identificator. + /// Session identificator, should be unique for each session. /// - /// Session identificator. + /// Session identificator, should be unique for each session. [DataMember(Name="tag", EmitDefaultValue=false)] public string Tag { get; set; } @@ -94,9 +94,9 @@ public partial class SearchRequest : IEquatable, IValidatableObj public OutputImageParams OutputImageParams { get; set; } /// - /// Whether to detect all faces in the image. If set to false, only the most central face is detected. + /// Whether to detect all faces in the image. If set to `false`, only the most central face is detected. /// - /// Whether to detect all faces in the image. If set to false, only the most central face is detected. + /// Whether to detect all faces in the image. If set to `false`, only the most central face is detected. [DataMember(Name="detectAll", EmitDefaultValue=false)] public bool DetectAll { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/SearchResult.cs b/src/Regula.FaceSDK.WebClient/Model/SearchResult.cs index 73dc294..d76f3d2 100644 --- a/src/Regula.FaceSDK.WebClient/Model/SearchResult.cs +++ b/src/Regula.FaceSDK.WebClient/Model/SearchResult.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -39,7 +39,7 @@ public partial class SearchResult : IEquatable, IValidatableObjec /// Person creation date.. /// Person update date.. /// List of groups this person belongs to.. - /// Person name.. + /// Person's name.. /// A free-form object containing person's extended attributes. Available when a person is being created. public SearchResult(int code = default(int), List persons = default(List), Guid? id = default(Guid?), string createdAt = default(string), string updatedAt = default(string), List groups = default(List), string name = default(string), Dictionary metadata = default(Dictionary)) { @@ -102,9 +102,9 @@ public partial class SearchResult : IEquatable, IValidatableObjec public List Groups { get; set; } /// - /// Person name. + /// Person's name. /// - /// Person name. + /// Person's name. [DataMember(Name="name", EmitDefaultValue=true)] public string Name { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/TransactionInfo.cs b/src/Regula.FaceSDK.WebClient/Model/TransactionInfo.cs index 7f50996..0e9f719 100644 --- a/src/Regula.FaceSDK.WebClient/Model/TransactionInfo.cs +++ b/src/Regula.FaceSDK.WebClient/Model/TransactionInfo.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 * @@ -35,7 +35,7 @@ public partial class TransactionInfo : IEquatable, IValidatabl /// /// Result code, one of the FaceSDKResultCode enum values. See the enum: https://docs.regulaforensics.com/develop/face-sdk/web-service/development/enums/face-sdk-result-code/. /// Whether the liveness detection is confirmed (0) or not (1).. - /// Session identificator.. + /// Session identificator, should be unique for each session.. /// Transaction ID, there can be several transactions within one session.. /// Link to the session video, depends on the selected storage type. [Learn more](https://docs.regulaforensics.com/develop/face-sdk/web-service/administration/storage/). /// Approximate age with an accuracy of +/-3 years.. @@ -68,9 +68,9 @@ public partial class TransactionInfo : IEquatable, IValidatabl public int Status { get; set; } /// - /// Session identificator. + /// Session identificator, should be unique for each session. /// - /// Session identificator. + /// Session identificator, should be unique for each session. [DataMember(Name="tag", EmitDefaultValue=false)] public string Tag { get; set; } diff --git a/src/Regula.FaceSDK.WebClient/Model/UpdateGroup.cs b/src/Regula.FaceSDK.WebClient/Model/UpdateGroup.cs index 763558b..2558191 100644 --- a/src/Regula.FaceSDK.WebClient/Model/UpdateGroup.cs +++ b/src/Regula.FaceSDK.WebClient/Model/UpdateGroup.cs @@ -1,7 +1,7 @@ /* - * Regula FaceSDK Web API + * Regula Face SDK Web API * - * [Download OpenAPI specification](https://github.com/regulaforensics/FaceSDK-web-openapi) ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core + * Regula Face SDK is a cross-platform biometric verification solution for a digital identity verification process. The SDK enables convenient and reliable face capture on the client side (mobile, web, and desktop) and further processing on the client or server side. The Face SDK includes the following features: * Face Detection * Face Match (1:1) * Face Search (1:N) * Liveness Assessment Here is the OpenAPI specification on GitHub. ### Clients * [JavaScript](https://github.com/regulaforensics/FaceSDK-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/FaceSDK-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/FaceSDK-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/FaceSDK-web-csharp-client) client for .NET & .NET Core * * The version of the OpenAPI document: 6.1.0 *