Skip to content

Commit

Permalink
Update code
Browse files Browse the repository at this point in the history
  • Loading branch information
congminh1254 committed Sep 6, 2023
1 parent d344a46 commit f79870b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Box.V2/Models/BoxSignTemplateSigner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public class BoxSignTemplateSignerInput
/// The value of the date.
/// </summary>
[JsonProperty(PropertyName = FieldDateValue)]
public virtual DateTime? DateValue { get; private set; }
public virtual DateTimeOffset? DateValue { get; private set; }

/// <summary>
/// The dimensions of the input field.
Expand Down Expand Up @@ -211,13 +211,13 @@ public class BoxSignTemplateSignerInputCoordinates
/// The x coordinate of the input field.
/// </summary>
[JsonProperty(PropertyName = FieldX)]
public virtual float X { get; private set; }
public virtual double X { get; private set; }

/// <summary>
/// The y coordinate of the input field.
/// </summary>
[JsonProperty(PropertyName = FieldY)]
public virtual float Y { get; private set; }
public virtual double Y { get; private set; }
}

/// <summary>
Expand All @@ -232,12 +232,12 @@ public class BoxSignTemplateSignerInputDimensions
/// The height of the input field.
/// </summary>
[JsonProperty(PropertyName = FieldHeight)]
public virtual float Height { get; private set; }
public virtual double Height { get; private set; }

/// <summary>
/// The width of the input field.
/// </summary>
[JsonProperty(PropertyName = FieldWidth)]
public virtual float Width { get; private set; }
public virtual double Width { get; private set; }
}
}

0 comments on commit f79870b

Please sign in to comment.