/// <summary>
 /// Initializes a new instance of the <see cref="InlineTemplate" /> class.
 /// </summary>
 /// <param name="CustomFields">CustomFields.</param>
 /// <param name="Documents">Complex element contains the details on the documents in the envelope..</param>
 /// <param name="Envelope">Envelope.</param>
 /// <param name="Recipients">Recipients.</param>
 /// <param name="Sequence">Specifies the order in which templates are overlaid..</param>
 public InlineTemplate(CustomFields CustomFields = default(CustomFields), List <Document> Documents = default(List <Document>), Envelope Envelope = default(Envelope), Recipients Recipients = default(Recipients), string Sequence = default(string))
 {
     this.CustomFields = CustomFields;
     this.Documents    = Documents;
     this.Envelope     = Envelope;
     this.Recipients   = Recipients;
     this.Sequence     = Sequence;
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="FolderItemV2" /> class.
 /// </summary>
 /// <param name="CompletedDateTime">Specifies the date and time this item was completed..</param>
 /// <param name="CreatedDateTime">Indicates the date and time the item was created..</param>
 /// <param name="EnvelopeId">The envelope ID of the envelope status that failed to post..</param>
 /// <param name="EnvelopeUri">Contains a URI for an endpoint that you can use to retrieve the envelope or envelopes..</param>
 /// <param name="ExpireDateTime">The date and time the envelope is set to expire..</param>
 /// <param name="FolderId">.</param>
 /// <param name="FolderUri">.</param>
 /// <param name="Is21CFRPart11">When set to **true**, indicates that this module is enabled on the account..</param>
 /// <param name="IsSignatureProviderEnvelope">.</param>
 /// <param name="LastModifiedDateTime">The date and time the item was last modified..</param>
 /// <param name="OwnerName">.</param>
 /// <param name="Recipients">Recipients.</param>
 /// <param name="RecipientsUri">Contains a URI for an endpoint that you can use to retrieve the recipients..</param>
 /// <param name="SenderCompany">.</param>
 /// <param name="SenderEmail">.</param>
 /// <param name="SenderName">.</param>
 /// <param name="SenderUserId">.</param>
 /// <param name="SentDateTime">The date and time the envelope was sent..</param>
 /// <param name="Status">Indicates the envelope status. Valid values are:  * sent - The envelope is sent to the recipients.  * created - The envelope is saved as a draft and can be modified and sent later..</param>
 /// <param name="Subject">.</param>
 public FolderItemV2(string CompletedDateTime = default(string), string CreatedDateTime = default(string), string EnvelopeId = default(string), string EnvelopeUri = default(string), string ExpireDateTime = default(string), string FolderId = default(string), string FolderUri = default(string), string Is21CFRPart11 = default(string), string IsSignatureProviderEnvelope = default(string), string LastModifiedDateTime = default(string), string OwnerName = default(string), Recipients Recipients = default(Recipients), string RecipientsUri = default(string), string SenderCompany = default(string), string SenderEmail = default(string), string SenderName = default(string), string SenderUserId = default(string), string SentDateTime = default(string), string Status = default(string), string Subject = default(string))
 {
     this.CompletedDateTime           = CompletedDateTime;
     this.CreatedDateTime             = CreatedDateTime;
     this.EnvelopeId                  = EnvelopeId;
     this.EnvelopeUri                 = EnvelopeUri;
     this.ExpireDateTime              = ExpireDateTime;
     this.FolderId                    = FolderId;
     this.FolderUri                   = FolderUri;
     this.Is21CFRPart11               = Is21CFRPart11;
     this.IsSignatureProviderEnvelope = IsSignatureProviderEnvelope;
     this.LastModifiedDateTime        = LastModifiedDateTime;
     this.OwnerName                   = OwnerName;
     this.Recipients                  = Recipients;
     this.RecipientsUri               = RecipientsUri;
     this.SenderCompany               = SenderCompany;
     this.SenderEmail                 = SenderEmail;
     this.SenderName                  = SenderName;
     this.SenderUserId                = SenderUserId;
     this.SentDateTime                = SentDateTime;
     this.Status  = Status;
     this.Subject = Subject;
 }