Enum IdentificationData.TypeEnum
- java.lang.Object
-
- java.lang.Enum<IdentificationData.TypeEnum>
-
- com.adyen.model.legalentitymanagement.IdentificationData.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<IdentificationData.TypeEnum>
- Enclosing class:
- IdentificationData
public static enum IdentificationData.TypeEnum extends Enum<IdentificationData.TypeEnum>
Type of document, used when providing an ID number or uploading a document. The possible values depend on the legal entity type. When providing ID numbers: * For **individual**, the `type` values can be **driversLicense**, **identityCard**, **nationalIdNumber**, or **passport**. When uploading photo IDs: * For **individual**, the `type` values can be **identityCard**, **driversLicense**, or **passport**. When uploading other documents: * For **organization**, the `type` values can be **proofOfAddress**, **registrationDocument**, **vatDocument**, **proofOfOrganizationTaxInfo**, **proofOfOwnership**, or **proofOfIndustry**. * For **individual**, the `type` values can be **identityCard**, **driversLicense**, **passport**, **proofOfNationalIdNumber**, **proofOfResidency**, **proofOfIndustry**, or **proofOfIndividualTaxId**. * For **soleProprietorship**, the `type` values can be **constitutionalDocument**, **proofOfAddress**, or **proofOfIndustry**. * Use **bankStatement** to upload documents for a [transfer instrument](https://docs.adyen.com/api-explorer/#/legalentity/latest/post/transferInstruments__resParam_id).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIdentificationData.TypeEnum.Adapter
-
Enum Constant Summary
Enum Constants Enum Constant Description BANKSTATEMENTCONSTITUTIONALDOCUMENTDRIVERSLICENSEIDENTITYCARDNATIONALIDNUMBERPASSPORTPROOFOFADDRESSPROOFOFINDUSTRYPROOFOFNATIONALIDNUMBERPROOFOFORGANIZATIONTAXINFOPROOFOFRESIDENCYREGISTRATIONDOCUMENTVATDOCUMENT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IdentificationData.TypeEnumfromValue(String value)StringgetValue()StringtoString()static IdentificationData.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static IdentificationData.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BANKSTATEMENT
public static final IdentificationData.TypeEnum BANKSTATEMENT
-
DRIVERSLICENSE
public static final IdentificationData.TypeEnum DRIVERSLICENSE
-
IDENTITYCARD
public static final IdentificationData.TypeEnum IDENTITYCARD
-
NATIONALIDNUMBER
public static final IdentificationData.TypeEnum NATIONALIDNUMBER
-
PASSPORT
public static final IdentificationData.TypeEnum PASSPORT
-
PROOFOFADDRESS
public static final IdentificationData.TypeEnum PROOFOFADDRESS
-
PROOFOFNATIONALIDNUMBER
public static final IdentificationData.TypeEnum PROOFOFNATIONALIDNUMBER
-
PROOFOFRESIDENCY
public static final IdentificationData.TypeEnum PROOFOFRESIDENCY
-
REGISTRATIONDOCUMENT
public static final IdentificationData.TypeEnum REGISTRATIONDOCUMENT
-
VATDOCUMENT
public static final IdentificationData.TypeEnum VATDOCUMENT
-
PROOFOFORGANIZATIONTAXINFO
public static final IdentificationData.TypeEnum PROOFOFORGANIZATIONTAXINFO
-
PROOFOFINDUSTRY
public static final IdentificationData.TypeEnum PROOFOFINDUSTRY
-
CONSTITUTIONALDOCUMENT
public static final IdentificationData.TypeEnum CONSTITUTIONALDOCUMENT
-
-
Method Detail
-
values
public static IdentificationData.TypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IdentificationData.TypeEnum c : IdentificationData.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IdentificationData.TypeEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<IdentificationData.TypeEnum>
-
fromValue
public static IdentificationData.TypeEnum fromValue(String value)
-
-