public class UserInfo extends AbstractModel
Constructor and Description |
---|
UserInfo() |
UserInfo(UserInfo source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getDataSource()
Get Data source.
|
String |
getDisplayName()
Get Nickname, which can contain up to 64 characters and is the same as the username by default.
|
String |
getEmail()
Get Email address.
|
String |
getPhone()
Get User's mobile number.
|
String |
getStatus()
Get User status.
|
String |
getUserId()
Get User ID, which is globally unique and can contain up to 64 characters.
|
String |
getUserName()
Get Username.
|
void |
setDataSource(String DataSource)
Set Data source.
|
void |
setDisplayName(String DisplayName)
Set Nickname, which can contain up to 64 characters and is the same as the username by default.
|
void |
setEmail(String Email)
Set Email address.
|
void |
setPhone(String Phone)
Set User's mobile number.
|
void |
setStatus(String Status)
Set User status.
|
void |
setUserId(String UserId)
Set User ID, which is globally unique and can contain up to 64 characters.
|
void |
setUserName(String UserName)
Set Username.
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonString
public UserInfo()
public UserInfo(UserInfo source)
public String getUserId()
public void setUserId(String UserId)
UserId
- User ID, which is globally unique and can contain up to 64 characters.
Note: this field may return null, indicating that no valid values can be obtained.public String getDisplayName()
public void setDisplayName(String DisplayName)
DisplayName
- Nickname, which can contain up to 64 characters and is the same as the username by default.
Note: this field may return null, indicating that no valid values can be obtained.public String getUserName()
public void setUserName(String UserName)
UserName
- Username.
Note: this field may return null, indicating that no valid values can be obtained.public String getPhone()
public void setPhone(String Phone)
Phone
- User's mobile number.
Note: this field may return null, indicating that no valid values can be obtained.public String getEmail()
public void setEmail(String Email)
Email
- Email address.
Note: this field may return null, indicating that no valid values can be obtained.public String getStatus()
public void setStatus(String Status)
Status
- User status.
Note: this field may return null, indicating that no valid values can be obtained.public String getDataSource()
public void setDataSource(String DataSource)
DataSource
- Data source.
Note: this field may return null, indicating that no valid values can be obtained.Copyright © 2023. All rights reserved.