Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ protected SignatureRequestResponseAttachment() { }
/// <param name="required">A boolean value denoting if this attachment is required. (required).</param>
/// <param name="instructions">Instructions for Signer..</param>
/// <param name="uploadedAt">Timestamp when attachment was uploaded by Signer..</param>
public SignatureRequestResponseAttachment(string id = default(string), string signer = default(string), string name = default(string), bool required = default(bool), string instructions = default(string), int? uploadedAt = default(int?))
public SignatureRequestResponseAttachment(string id = default(string), Object signer = null, string name = default(string), bool required = default(bool), string instructions = default(string), int? uploadedAt = default(int?))
{

// to ensure "id" is required (not null)
Expand All @@ -61,7 +61,7 @@ protected SignatureRequestResponseAttachment() { }
{
throw new ArgumentNullException("signer is a required property for SignatureRequestResponseAttachment and cannot be null");
}
this.Signer = signer;
this.Signer = Convert.ToString(signer);
// to ensure "name" is required (not null)
if (name == null)
{
Expand Down Expand Up @@ -101,8 +101,12 @@ public static SignatureRequestResponseAttachment Init(string jsonData)
/// </summary>
/// <value>The Signer this attachment is assigned to.</value>
[DataMember(Name = "signer", IsRequired = true, EmitDefaultValue = true)]
public string Signer { get; set; }

public object Signer {
get => this._signer;
set => this._signer = Convert.ToString(value);
}

private string _signer;
/// <summary>
/// The name of this attachment.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ protected TemplateResponseDocumentCustomFieldBase() { }
/// <param name="height">The height in pixels of this form field..</param>
/// <param name="required">Boolean showing whether or not this field is required..</param>
/// <param name="group">The name of the group this field is in. If this field is not a group, this defaults to &#x60;null&#x60;..</param>
public TemplateResponseDocumentCustomFieldBase(string apiId = default(string), string name = default(string), string type = default(string), string signer = default(string), int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
public TemplateResponseDocumentCustomFieldBase(string apiId = default(string), string name = default(string), string type = default(string), Object signer = null, int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
{

// to ensure "type" is required (not null)
Expand All @@ -66,7 +66,7 @@ protected TemplateResponseDocumentCustomFieldBase() { }
this.Type = type;
this.ApiId = apiId;
this.Name = name;
this.Signer = signer;
this.Signer = Convert.ToString(signer);
this.X = x;
this.Y = y;
this.Width = width;
Expand Down Expand Up @@ -116,8 +116,12 @@ public static TemplateResponseDocumentCustomFieldBase Init(string jsonData)
/// </summary>
/// <value>The signer of the Custom Field. Can be &#x60;null&#x60; if field is a merge field (assigned to Sender).</value>
[DataMember(Name = "signer", EmitDefaultValue = true)]
public string Signer { get; set; }

public object Signer {
get => this._signer;
set => this._signer = Convert.ToString(value);
}

private string _signer;
/// <summary>
/// The horizontal offset in pixels for this form field.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ protected TemplateResponseDocumentCustomFieldCheckbox() { }
/// <param name="height">The height in pixels of this form field..</param>
/// <param name="required">Boolean showing whether or not this field is required..</param>
/// <param name="group">The name of the group this field is in. If this field is not a group, this defaults to &#x60;null&#x60;..</param>
public TemplateResponseDocumentCustomFieldCheckbox(string type = @"checkbox", string apiId = default(string), string name = default(string), string signer = default(string), int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
public TemplateResponseDocumentCustomFieldCheckbox(string type = @"checkbox", string apiId = default(string), string name = default(string), Object signer = null, int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
{
this.ApiId = apiId;
this.Name = name;
this.Signer = signer;
this.Signer = Convert.ToString(signer);
this.X = x;
this.Y = y;
this.Width = width;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ protected TemplateResponseDocumentCustomFieldText() { }
/// <param name="height">The height in pixels of this form field..</param>
/// <param name="required">Boolean showing whether or not this field is required..</param>
/// <param name="group">The name of the group this field is in. If this field is not a group, this defaults to &#x60;null&#x60;..</param>
public TemplateResponseDocumentCustomFieldText(string type = @"text", TemplateResponseFieldAvgTextLength avgTextLength = default(TemplateResponseFieldAvgTextLength), bool isMultiline = default(bool), int originalFontSize = default(int), string fontFamily = default(string), string apiId = default(string), string name = default(string), string signer = default(string), int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
public TemplateResponseDocumentCustomFieldText(string type = @"text", TemplateResponseFieldAvgTextLength avgTextLength = default(TemplateResponseFieldAvgTextLength), bool isMultiline = default(bool), int originalFontSize = default(int), string fontFamily = default(string), string apiId = default(string), string name = default(string), Object signer = null, int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
{
this.ApiId = apiId;
this.Name = name;
this.Signer = signer;
this.Signer = Convert.ToString(signer);
this.X = x;
this.Y = y;
this.Width = width;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ protected TemplateResponseDocumentFormFieldBase() { }
/// <param name="height">The height in pixels of this form field..</param>
/// <param name="required">Boolean showing whether or not this field is required..</param>
/// <param name="group">The name of the group this field is in. If this field is not a group, this defaults to &#x60;null&#x60; except for Radio fields..</param>
public TemplateResponseDocumentFormFieldBase(string apiId = default(string), string name = default(string), string type = default(string), string signer = default(string), int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
public TemplateResponseDocumentFormFieldBase(string apiId = default(string), string name = default(string), string type = default(string), Object signer = null, int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
{

// to ensure "type" is required (not null)
Expand All @@ -72,7 +72,7 @@ protected TemplateResponseDocumentFormFieldBase() { }
this.Type = type;
this.ApiId = apiId;
this.Name = name;
this.Signer = signer;
this.Signer = Convert.ToString(signer);
this.X = x;
this.Y = y;
this.Width = width;
Expand Down Expand Up @@ -122,8 +122,12 @@ public static TemplateResponseDocumentFormFieldBase Init(string jsonData)
/// </summary>
/// <value>The signer of the Form Field.</value>
[DataMember(Name = "signer", EmitDefaultValue = true)]
public string Signer { get; set; }

public object Signer {
get => this._signer;
set => this._signer = Convert.ToString(value);
}

private string _signer;
/// <summary>
/// The horizontal offset in pixels for this form field.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ protected TemplateResponseDocumentFormFieldCheckbox() { }
/// <param name="height">The height in pixels of this form field..</param>
/// <param name="required">Boolean showing whether or not this field is required..</param>
/// <param name="group">The name of the group this field is in. If this field is not a group, this defaults to &#x60;null&#x60; except for Radio fields..</param>
public TemplateResponseDocumentFormFieldCheckbox(string type = @"checkbox", string apiId = default(string), string name = default(string), string signer = default(string), int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
public TemplateResponseDocumentFormFieldCheckbox(string type = @"checkbox", string apiId = default(string), string name = default(string), Object signer = null, int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
{
this.ApiId = apiId;
this.Name = name;
this.Signer = signer;
this.Signer = Convert.ToString(signer);
this.X = x;
this.Y = y;
this.Width = width;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ protected TemplateResponseDocumentFormFieldDateSigned() { }
/// <param name="height">The height in pixels of this form field..</param>
/// <param name="required">Boolean showing whether or not this field is required..</param>
/// <param name="group">The name of the group this field is in. If this field is not a group, this defaults to &#x60;null&#x60; except for Radio fields..</param>
public TemplateResponseDocumentFormFieldDateSigned(string type = @"date_signed", string apiId = default(string), string name = default(string), string signer = default(string), int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
public TemplateResponseDocumentFormFieldDateSigned(string type = @"date_signed", string apiId = default(string), string name = default(string), Object signer = null, int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
{
this.ApiId = apiId;
this.Name = name;
this.Signer = signer;
this.Signer = Convert.ToString(signer);
this.X = x;
this.Y = y;
this.Width = width;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ protected TemplateResponseDocumentFormFieldDropdown() { }
/// <param name="height">The height in pixels of this form field..</param>
/// <param name="required">Boolean showing whether or not this field is required..</param>
/// <param name="group">The name of the group this field is in. If this field is not a group, this defaults to &#x60;null&#x60; except for Radio fields..</param>
public TemplateResponseDocumentFormFieldDropdown(string type = @"dropdown", string apiId = default(string), string name = default(string), string signer = default(string), int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
public TemplateResponseDocumentFormFieldDropdown(string type = @"dropdown", string apiId = default(string), string name = default(string), Object signer = null, int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
{
this.ApiId = apiId;
this.Name = name;
this.Signer = signer;
this.Signer = Convert.ToString(signer);
this.X = x;
this.Y = y;
this.Width = width;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ protected TemplateResponseDocumentFormFieldHyperlink() { }
/// <param name="height">The height in pixels of this form field..</param>
/// <param name="required">Boolean showing whether or not this field is required..</param>
/// <param name="group">The name of the group this field is in. If this field is not a group, this defaults to &#x60;null&#x60; except for Radio fields..</param>
public TemplateResponseDocumentFormFieldHyperlink(string type = @"hyperlink", TemplateResponseFieldAvgTextLength avgTextLength = default(TemplateResponseFieldAvgTextLength), bool isMultiline = default(bool), int originalFontSize = default(int), string fontFamily = default(string), string apiId = default(string), string name = default(string), string signer = default(string), int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
public TemplateResponseDocumentFormFieldHyperlink(string type = @"hyperlink", TemplateResponseFieldAvgTextLength avgTextLength = default(TemplateResponseFieldAvgTextLength), bool isMultiline = default(bool), int originalFontSize = default(int), string fontFamily = default(string), string apiId = default(string), string name = default(string), Object signer = null, int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
{
this.ApiId = apiId;
this.Name = name;
this.Signer = signer;
this.Signer = Convert.ToString(signer);
this.X = x;
this.Y = y;
this.Width = width;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ protected TemplateResponseDocumentFormFieldInitials() { }
/// <param name="height">The height in pixels of this form field..</param>
/// <param name="required">Boolean showing whether or not this field is required..</param>
/// <param name="group">The name of the group this field is in. If this field is not a group, this defaults to &#x60;null&#x60; except for Radio fields..</param>
public TemplateResponseDocumentFormFieldInitials(string type = @"initials", string apiId = default(string), string name = default(string), string signer = default(string), int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
public TemplateResponseDocumentFormFieldInitials(string type = @"initials", string apiId = default(string), string name = default(string), Object signer = null, int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
{
this.ApiId = apiId;
this.Name = name;
this.Signer = signer;
this.Signer = Convert.ToString(signer);
this.X = x;
this.Y = y;
this.Width = width;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ protected TemplateResponseDocumentFormFieldRadio() { }
/// <param name="height">The height in pixels of this form field..</param>
/// <param name="required">Boolean showing whether or not this field is required..</param>
/// <param name="group">The name of the group this field is in. If this field is not a group, this defaults to &#x60;null&#x60; except for Radio fields. (required).</param>
public TemplateResponseDocumentFormFieldRadio(string type = @"radio", string apiId = default(string), string name = default(string), string signer = default(string), int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
public TemplateResponseDocumentFormFieldRadio(string type = @"radio", string apiId = default(string), string name = default(string), Object signer = null, int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
{
this.ApiId = apiId;
this.Name = name;
this.Signer = signer;
this.Signer = Convert.ToString(signer);
this.X = x;
this.Y = y;
this.Width = width;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ protected TemplateResponseDocumentFormFieldSignature() { }
/// <param name="height">The height in pixels of this form field..</param>
/// <param name="required">Boolean showing whether or not this field is required..</param>
/// <param name="group">The name of the group this field is in. If this field is not a group, this defaults to &#x60;null&#x60; except for Radio fields..</param>
public TemplateResponseDocumentFormFieldSignature(string type = @"signature", string apiId = default(string), string name = default(string), string signer = default(string), int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
public TemplateResponseDocumentFormFieldSignature(string type = @"signature", string apiId = default(string), string name = default(string), Object signer = null, int x = default(int), int y = default(int), int width = default(int), int height = default(int), bool required = default(bool), string group = default(string))
{
this.ApiId = apiId;
this.Name = name;
this.Signer = signer;
this.Signer = Convert.ToString(signer);
this.X = x;
this.Y = y;
this.Width = width;
Expand Down
Loading