new module:model/LoginInformation()
- Source:
Constructs a new LoginInformation
.
Members
(inner) apiPassword :String
- Source:
Contains a token that can be used for authentication in API calls instead of using the user name and password. Only returned if the api_password=true
query string is added to the URL.
Type:
- String
(inner) loginAccounts :Array.<module:model/LoginAccount>
- Source:
The list of accounts that authenticating user is a member of.
Type:
- Array.<module:model/LoginAccount>
Methods
(static) constructFromObject(data, obj) → {module:model/LoginInformation}
- Source:
Constructs a LoginInformation
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/LoginInformation | Optional instance to populate. |
Returns:
The populated LoginInformation
instance.