public class CreateAccountRequest extends AbstractModel
| Constructor and Description | 
|---|
| CreateAccountRequest() | 
| CreateAccountRequest(CreateAccountRequest 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 | getAccountType()Get Account type of a new customer. | 
| String | getArea()Get Customer's ISO2 standard country/region code, which can be obtained via the `GetCountryCodes` API. | 
| String | getConfirmPassword()Get The confirmed password, which must be the same as that entered in the `Password` field. | 
| String | getCountryCode()Get Customer's country/region code, which can be obtained via the `GetCountryCodes` API, such as "852". | 
| String | getExtended()Get Extension field, which is left empty by default. | 
| String | getMail()Get Registered email address, which should be valid and correct. | 
| String | getPassword()Get Account password
Length limit: 8-20 characters
A password must contain numbers, letters, and symbols (!@#$%^&*()). | 
| String | getPhoneNum()Get Customer mobile number, which should be valid and correct. | 
| void | setAccountType(String AccountType)Set Account type of a new customer. | 
| void | setArea(String Area)Set Customer's ISO2 standard country/region code, which can be obtained via the `GetCountryCodes` API. | 
| void | setConfirmPassword(String ConfirmPassword)Set The confirmed password, which must be the same as that entered in the `Password` field. | 
| void | setCountryCode(String CountryCode)Set Customer's country/region code, which can be obtained via the `GetCountryCodes` API, such as "852". | 
| void | setExtended(String Extended)Set Extension field, which is left empty by default. | 
| void | setMail(String Mail)Set Registered email address, which should be valid and correct. | 
| void | setPassword(String Password)Set Account password
Length limit: 8-20 characters
A password must contain numbers, letters, and symbols (!@#$%^&*()). | 
| void | setPhoneNum(String PhoneNum)Set Customer mobile number, which should be valid and correct. | 
| 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, toJsonStringpublic CreateAccountRequest()
public CreateAccountRequest(CreateAccountRequest source)
public String getAccountType()
public void setAccountType(String AccountType)
AccountType - Account type of a new customer. Valid values: `personal`, `company`.public String getMail()
public void setMail(String Mail)
Mail - Registered email address, which should be valid and correct.
For example, [email protected].public String getPassword()
public void setPassword(String Password)
Password - Account password
Length limit: 8-20 characters
A password must contain numbers, letters, and symbols (!@#$%^&*()). Space is not allowed.public String getConfirmPassword()
public void setConfirmPassword(String ConfirmPassword)
ConfirmPassword - The confirmed password, which must be the same as that entered in the `Password` field.public String getPhoneNum()
public void setPhoneNum(String PhoneNum)
PhoneNum - Customer mobile number, which should be valid and correct.
A global mobile number within 1-32 digits is allowed, such as 18888888888.public String getCountryCode()
public void setCountryCode(String CountryCode)
CountryCode - Customer's country/region code, which can be obtained via the `GetCountryCodes` API, such as "852".public String getArea()
public void setArea(String Area)
Area - Customer's ISO2 standard country/region code, which can be obtained via the `GetCountryCodes` API. It should correspond to the `CountryCode` field, such as `HK`.public String getExtended()
public void setExtended(String Extended)
Extended - Extension field, which is left empty by default.Copyright © 2023. All rights reserved.