new module:model/SocialAccountInformation()
- Source:
Constructs a new SocialAccountInformation
.
Members
(inner) email :String
- Source:
The users email address.
Type:
- String
(inner) errorDetails :module:model/ErrorDetails
- Source:
Array or errors.
Type:
(inner) provider :String
- Source:
The social account provider (Facebook, Yahoo, etc.)
Type:
- String
(inner) socialId :String
- Source:
The ID provided by the Socal Account.
Type:
- String
(inner) userName :String
- Source:
The full user name for the account.
Type:
- String
Methods
(static) constructFromObject(data, obj) → {module:model/SocialAccountInformation}
- Source:
Constructs a SocialAccountInformation
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/SocialAccountInformation | Optional instance to populate. |
Returns:
The populated SocialAccountInformation
instance.