Class ExtendExpiry
The Extend Expiry Model.
Inheritance
Namespace: BoldSign.Api.Model
Assembly: BoldSign.Api.dll
Syntax
public class ExtendExpiry : object
Constructors
| Improve this Doc View SourceExtendExpiry(String, Nullable<Boolean>, String)
Initializes a new instance of the ExtendExpiry class.
Declaration
public ExtendExpiry(string newExpiryValue, bool? warnPrior, string onBehalfOf = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | newExpiryValue | The new expiry date should be specified in yyyy-MM-dd format, and the document will always be set to expire at midnight on the specified date. |
System.Nullable<System.Boolean> | warnPrior | If null, the existing configuration will be used. If true, one day before the expiration date, a warning email will be sent. If false, a warning email will not be sent one day before the expiration date. |
System.String | onBehalfOf | Gets or sets the on behalf of email. |
Properties
| Improve this Doc View SourceNewExpiryValue
Gets or sets the new expiry date. The new expiry date should be specified in yyyy-MM-dd format, and the document will always be set to expire at midnight on the specified date.
Declaration
public string NewExpiryValue { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OnBehalfOf
Gets or sets the on behalf ofemail.
Declaration
public string OnBehalfOf { get; set; }
Property Value
Type | Description |
---|---|
System.String |
WarnPrior
Gets or sets a value indicating whether to send warning one day prior to the expiry date. If null, the existing configuration will be used. If true, one day before the expiration date, a warning email will be sent. If false, a warning email will not be sent one day before the expiration date.
Declaration
public bool? WarnPrior { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
Methods
| Improve this Doc View SourceToJson()
Returns the JSON string presentation of the object.
Declaration
public virtual string ToJson()
Returns
Type | Description |
---|---|
System.String | JSON string presentation of the object. |