Ejemplo n.º 1
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">The ID of the folder being accessed..</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">.</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">Item status. &lt;!- - TODO - -&gt;.</param>
 /// <param name="Subject">.</param>
 public FolderItemV2(string CompletedDateTime = null, string CreatedDateTime = null, string EnvelopeId = null, string EnvelopeUri = null, string ExpireDateTime = null, string FolderId = null, string FolderUri = null, string Is21CFRPart11 = null, string IsSignatureProviderEnvelope = null, string LastModifiedDateTime = null, string OwnerName = null, EnvelopeRecipients Recipients = null, string RecipientsUri = null, string SenderCompany = null, string SenderEmail = null, string SenderName = null, string SenderUserId = null, string SentDateTime = null, string Status = null, string Subject = null)
 {
     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;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="InlineTemplate" /> class.
 /// </summary>
 /// <param name="CustomFields">An optional array of strings that allows the sender to provide custom data about the recipient. This information is returned in the envelope status but otherwise not used by DocuSign. Each customField string can be a maximum of 100 characters..</param>
 /// <param name="Documents">Complex element contains the details on the documents in the envelope..</param>
 /// <param name="Envelope">A container used to send documents to recipients. The envelope carries information about the sender and timestamps to indicate the progress of the delivery procedure. It can contain collections of Documents, Tabs and Recipients..</param>
 /// <param name="Recipients">.</param>
 /// <param name="Sequence">Specifies the order in which templates are overlaid..</param>
 public InlineTemplate(AccountCustomFields CustomFields = null, List <Document> Documents = null, Envelopes Envelope = null, EnvelopeRecipients Recipients = null, string Sequence = null)
 {
     this.CustomFields = CustomFields;
     this.Documents    = Documents;
     this.Envelope     = Envelope;
     this.Recipients   = Recipients;
     this.Sequence     = Sequence;
 }