-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad80e86
commit e20cbfb
Showing
4 changed files
with
249 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
143 changes: 143 additions & 0 deletions
143
src/Regula.DocumentReader.WebClient/Model/PerDocumentConfig.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
/* | ||
* Regula Document Reader Web API | ||
* | ||
* Documents recognition as easy as reading two bytes. # Clients: * [JavaScript](https://github.com/regulaforensics/DocumentReader-web-js-client) client for the browser and node.js based on axios * [Java](https://github.com/regulaforensics/DocumentReader-web-java-client) client compatible with jvm and android * [Python](https://github.com/regulaforensics/DocumentReader-web-python-client) 3.5+ client * [C#](https://github.com/regulaforensics/DocumentReader-web-csharp-client) client for .NET & .NET Core | ||
* | ||
* The version of the OpenAPI document: 5.6.0 | ||
* | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
||
using System; | ||
using System.Linq; | ||
using System.IO; | ||
using System.Text; | ||
using System.Text.RegularExpressions; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.Collections.ObjectModel; | ||
using System.Runtime.Serialization; | ||
using Newtonsoft.Json; | ||
using Newtonsoft.Json.Converters; | ||
using System.ComponentModel.DataAnnotations; | ||
using OpenAPIDateConverter = Regula.DocumentReader.WebClient.Client.OpenAPIDateConverter; | ||
|
||
namespace Regula.DocumentReader.WebClient.Model | ||
{ | ||
/// <summary> | ||
/// PerDocumentConfig | ||
/// </summary> | ||
[DataContract] | ||
public partial class PerDocumentConfig : IEquatable<PerDocumentConfig>, IValidatableObject | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="PerDocumentConfig" /> class. | ||
/// </summary> | ||
/// <param name="docID">Specific template IDs, for which apply current custom configuration.</param> | ||
/// <param name="excludeAuthChecks">Contains items from AuthenticityResultType as sum via OR operation.</param> | ||
public PerDocumentConfig(List<int> docID = default(List<int>), int excludeAuthChecks = default(int)) | ||
{ | ||
this.DocID = docID; | ||
this.ExcludeAuthChecks = excludeAuthChecks; | ||
} | ||
|
||
/// <summary> | ||
/// Specific template IDs, for which apply current custom configuration | ||
/// </summary> | ||
/// <value>Specific template IDs, for which apply current custom configuration</value> | ||
[DataMember(Name="docID", EmitDefaultValue=false)] | ||
public List<int> DocID { get; set; } | ||
|
||
/// <summary> | ||
/// Contains items from AuthenticityResultType as sum via OR operation | ||
/// </summary> | ||
/// <value>Contains items from AuthenticityResultType as sum via OR operation</value> | ||
[DataMember(Name="excludeAuthChecks", EmitDefaultValue=false)] | ||
public int ExcludeAuthChecks { get; set; } | ||
|
||
/// <summary> | ||
/// Returns the string presentation of the object | ||
/// </summary> | ||
/// <returns>String presentation of the object</returns> | ||
public override string ToString() | ||
{ | ||
var sb = new StringBuilder(); | ||
sb.Append("class PerDocumentConfig {\n"); | ||
sb.Append(" DocID: ").Append(DocID).Append("\n"); | ||
sb.Append(" ExcludeAuthChecks: ").Append(ExcludeAuthChecks).Append("\n"); | ||
sb.Append("}\n"); | ||
return sb.ToString(); | ||
} | ||
|
||
/// <summary> | ||
/// Returns the JSON string presentation of the object | ||
/// </summary> | ||
/// <returns>JSON string presentation of the object</returns> | ||
public virtual string ToJson() | ||
{ | ||
return JsonConvert.SerializeObject(this, Formatting.Indented); | ||
} | ||
|
||
/// <summary> | ||
/// Returns true if objects are equal | ||
/// </summary> | ||
/// <param name="input">Object to be compared</param> | ||
/// <returns>Boolean</returns> | ||
public override bool Equals(object input) | ||
{ | ||
return this.Equals(input as PerDocumentConfig); | ||
} | ||
|
||
/// <summary> | ||
/// Returns true if PerDocumentConfig instances are equal | ||
/// </summary> | ||
/// <param name="input">Instance of PerDocumentConfig to be compared</param> | ||
/// <returns>Boolean</returns> | ||
public bool Equals(PerDocumentConfig input) | ||
{ | ||
if (input == null) | ||
return false; | ||
|
||
return | ||
( | ||
this.DocID == input.DocID || | ||
this.DocID != null && | ||
input.DocID != null && | ||
this.DocID.SequenceEqual(input.DocID) | ||
) && | ||
( | ||
this.ExcludeAuthChecks == input.ExcludeAuthChecks || | ||
(this.ExcludeAuthChecks != null && | ||
this.ExcludeAuthChecks.Equals(input.ExcludeAuthChecks)) | ||
); | ||
} | ||
|
||
/// <summary> | ||
/// Gets the hash code | ||
/// </summary> | ||
/// <returns>Hash code</returns> | ||
public override int GetHashCode() | ||
{ | ||
unchecked // Overflow is fine, just wrap | ||
{ | ||
int hashCode = 41; | ||
if (this.DocID != null) | ||
hashCode = hashCode * 59 + this.DocID.GetHashCode(); | ||
if (this.ExcludeAuthChecks != null) | ||
hashCode = hashCode * 59 + this.ExcludeAuthChecks.GetHashCode(); | ||
return hashCode; | ||
} | ||
} | ||
|
||
/// <summary> | ||
/// To validate all properties of the instance | ||
/// </summary> | ||
/// <param name="validationContext">Validation context</param> | ||
/// <returns>Validation Result</returns> | ||
IEnumerable<System.ComponentModel.DataAnnotations.ValidationResult> IValidatableObject.Validate(ValidationContext validationContext) | ||
{ | ||
yield break; | ||
} | ||
} | ||
|
||
} |
Oops, something went wrong.