-
Notifications
You must be signed in to change notification settings - Fork 163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Support Sign Templates and new Sign Request statuses #920
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good job! I left some comments.
Box.V2.Test/Fixtures/BoxSignTemplate/GetAllSignTemplates200.json
Outdated
Show resolved
Hide resolved
/// By default, we do not apply any expiration date on signature requests, and the signature request does not expire. | ||
/// </summary> | ||
[JsonProperty(PropertyName = FieldDaysValid)] | ||
public virtual int? DaysValid { get; private set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason this property is set as nullable and all other value types (bools) are non-nullable?
/// The x coordinate of the input field. | ||
/// </summary> | ||
[JsonProperty(PropertyName = FieldX)] | ||
public virtual float X { get; private set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use double
/// The height of the input field. | ||
/// </summary> | ||
[JsonProperty(PropertyName = FieldHeight)] | ||
public virtual float Height { get; private set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use double
Closes: SDK-3261
Closes: #916