diff --git a/Box.V2/Models/BoxSignTemplateSigner.cs b/Box.V2/Models/BoxSignTemplateSigner.cs
index 05f62cfe3..a3c5e8627 100644
--- a/Box.V2/Models/BoxSignTemplateSigner.cs
+++ b/Box.V2/Models/BoxSignTemplateSigner.cs
@@ -106,7 +106,7 @@ public class BoxSignTemplateSignerInput
/// The value of the date.
///
[JsonProperty(PropertyName = FieldDateValue)]
- public virtual DateTime? DateValue { get; private set; }
+ public virtual DateTimeOffset? DateValue { get; private set; }
///
/// The dimensions of the input field.
@@ -211,13 +211,13 @@ public class BoxSignTemplateSignerInputCoordinates
/// The x coordinate of the input field.
///
[JsonProperty(PropertyName = FieldX)]
- public virtual float X { get; private set; }
+ public virtual double X { get; private set; }
///
/// The y coordinate of the input field.
///
[JsonProperty(PropertyName = FieldY)]
- public virtual float Y { get; private set; }
+ public virtual double Y { get; private set; }
}
///
@@ -232,12 +232,12 @@ public class BoxSignTemplateSignerInputDimensions
/// The height of the input field.
///
[JsonProperty(PropertyName = FieldHeight)]
- public virtual float Height { get; private set; }
+ public virtual double Height { get; private set; }
///
/// The width of the input field.
///
[JsonProperty(PropertyName = FieldWidth)]
- public virtual float Width { get; private set; }
+ public virtual double Width { get; private set; }
}
}