/// <summary> /// Initializes a new instance of the <see cref="UserInfoResponse" /> class. /// </summary> /// <param name="EnvelopeId">The envelope ID of the envelope status that failed to post..</param> /// <param name="Language">.</param> /// <param name="Seal">Seal.</param> /// <param name="Sender">Sender.</param> /// <param name="User">User.</param> public UserInfoResponse(string EnvelopeId = default(string), string Language = default(string), Seal Seal = default(Seal), Sender Sender = default(Sender), User User = default(User)) { this.EnvelopeId = EnvelopeId; this.Language = Language; this.Seal = Seal; this.Sender = Sender; this.User = User; }
/// <summary> /// Initializes a new instance of the <see cref="SignHashSessionInfoResponse" /> class. /// </summary> /// <param name="Documents">Complex element contains the details on the documents in the envelope..</param> /// <param name="EnvelopeId">The envelope ID of the envelope status that failed to post..</param> /// <param name="Language">Language.</param> /// <param name="RedirectionUrl">RedirectionUrl.</param> /// <param name="RemainingSignatureRequests">RemainingSignatureRequests.</param> /// <param name="Seal">Seal.</param> /// <param name="Sender">Sender.</param> /// <param name="User">User.</param> public SignHashSessionInfoResponse(List <SignHashDocument> Documents = default(List <SignHashDocument>), string EnvelopeId = default(string), string Language = default(string), string RedirectionUrl = default(string), long?RemainingSignatureRequests = default(long?), Seal Seal = default(Seal), Sender Sender = default(Sender), User User = default(User)) { this.Documents = Documents; this.EnvelopeId = EnvelopeId; this.Language = Language; this.RedirectionUrl = RedirectionUrl; this.RemainingSignatureRequests = RemainingSignatureRequests; this.Seal = Seal; this.Sender = Sender; this.User = User; }