/// <summary>
 /// Initializes a new instance of the <see cref="PostVerificationTextFromUrlRequest"/> class.
 /// </summary>
 /// <param name="url">The document provided by url.</param>
 /// <param name="verifyOptionsData">Verification Options</param>
 /// <param name="password">Document password if required.</param>
 /// <param name="storage">The file storage which have to be used.</param>
 public PostVerificationTextFromUrlRequest(string url, VerifyOptionsData verifyOptionsData = null, string password = null, string storage = null)
 {
     this.Url = url;
     this.VerifyOptionsData = verifyOptionsData;
     this.Password          = password;
     this.Storage           = storage;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PostVerificationBarcodeRequest"/> class.
 /// </summary>
 /// <param name="name">The document name.</param>
 /// <param name="verifyOptionsData">Verification Options</param>
 /// <param name="password">Document password if required.</param>
 /// <param name="folder">The folder name.</param>
 /// <param name="storage">The file storage which have to be used.</param>
 public PostVerificationBarcodeRequest(string name, VerifyOptionsData verifyOptionsData = null, string password = null, string folder = null, string storage = null)
 {
     this.Name = name;
     this.VerifyOptionsData = verifyOptionsData;
     this.Password          = password;
     this.Folder            = folder;
     this.Storage           = storage;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PostVerificationDigitalRequest"/> class.
 /// </summary>
 /// <param name="name">The document name.</param>
 /// <param name="verifyOptionsData">Verification Options</param>
 /// <param name="password">Document password if required.</param>
 /// <param name="folder">The folder name.</param>
 /// <param name="certificateGuid">Certificate file guid.</param>
 /// <param name="storage">The file storage which have to be used.</param>
 public PostVerificationDigitalRequest(string name, VerifyOptionsData verifyOptionsData = null, string password = null, string folder = null, string certificateGuid = null, string storage = null)
 {
     this.Name = name;
     this.VerifyOptionsData = verifyOptionsData;
     this.Password          = password;
     this.Folder            = folder;
     this.CertificateGuid   = certificateGuid;
     this.Storage           = storage;
 }