new module:model/UsageHistory()
- Source:
Constructs a new UsageHistory
.
A complex element consisting of: * lastSentDateTime - the date and time the user last sent an envelope. * lastSignedDateTime - the date and time the user last signed an envelope. * sentCount - the number of envelopes the user has sent. * signedCount - the number of envelopes the user has signed.
Members
(inner) lastSentDateTime :String
- Source:
The date and time the user last sent an envelope.
Type:
- String
(inner) lastSignedDateTime :String
- Source:
The date and time the user last signed an envelope.
Type:
- String
(inner) sentCount :String
- Source:
The number of envelopes the user has sent.
Type:
- String
(inner) signedCount :String
- Source:
The number of envelopes the user has signed.
Type:
- String
Methods
(static) constructFromObject(data, obj) → {module:model/UsageHistory}
- Source:
Constructs a UsageHistory
from a plain JavaScript object, optionally creating a new instance.
Copies all relevant properties from data
to obj
if supplied or a new instance if not.
Parameters:
Name | Type | Description |
---|---|---|
data |
Object | The plain JavaScript object bearing properties of interest. |
obj |
module:model/UsageHistory | Optional instance to populate. |
Returns:
The populated UsageHistory
instance.