new module:model/ClientUserId()
- Source:
Constructs a new ClientUserId.
A unique identifier for a user that should originate from client's system. This value can be anything your backend system would use to track individual form instances. Examples include employee IDs, email addresses, surrogate key values, etc.
Methods
(static) constructFromObject(data, obj) → {module:model/ClientUserId}
- Source:
Constructs a ClientUserId 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/ClientUserId | Optional instance to populate. |
Returns:
The populated ClientUserId instance.