Class UsKycCheckData.Employment.Builder
-
- All Implemented Interfaces:
public final class UsKycCheckData.Employment.BuilderA builder for Employment.
-
-
Method Summary
-
-
Method Detail
-
employmentStatus
final UsKycCheckData.Employment.Builder employmentStatus(UsKycCheckData.Employment.EmploymentStatus employmentStatus)
One of the following: employed, unemployed, retired, or student.
-
employmentStatus
final UsKycCheckData.Employment.Builder employmentStatus(JsonField<UsKycCheckData.Employment.EmploymentStatus> employmentStatus)
Sets Builder.employmentStatus to an arbitrary JSON value.
You should usually call Builder.employmentStatus with a well-typed EmploymentStatus value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
employerAddress
final UsKycCheckData.Employment.Builder employerAddress(String employerAddress)
The employer's address if the user is employed.
-
employerAddress
final UsKycCheckData.Employment.Builder employerAddress(Optional<String> employerAddress)
Alias for calling Builder.employerAddress with
employerAddress.orElse(null).
-
employerAddress
final UsKycCheckData.Employment.Builder employerAddress(JsonField<String> employerAddress)
Sets Builder.employerAddress to an arbitrary JSON value.
You should usually call Builder.employerAddress with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
employerName
final UsKycCheckData.Employment.Builder employerName(String employerName)
The name of the employer if the user is employed.
-
employerName
final UsKycCheckData.Employment.Builder employerName(Optional<String> employerName)
Alias for calling Builder.employerName with
employerName.orElse(null).
-
employerName
final UsKycCheckData.Employment.Builder employerName(JsonField<String> employerName)
Sets Builder.employerName to an arbitrary JSON value.
You should usually call Builder.employerName with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
employmentPosition
final UsKycCheckData.Employment.Builder employmentPosition(String employmentPosition)
The user's position if they are employed.
-
employmentPosition
final UsKycCheckData.Employment.Builder employmentPosition(Optional<String> employmentPosition)
Alias for calling Builder.employmentPosition with
employmentPosition.orElse(null).
-
employmentPosition
final UsKycCheckData.Employment.Builder employmentPosition(JsonField<String> employmentPosition)
Sets Builder.employmentPosition to an arbitrary JSON value.
You should usually call Builder.employmentPosition with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final UsKycCheckData.Employment.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final UsKycCheckData.Employment.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final UsKycCheckData.Employment.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final UsKycCheckData.Employment.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final UsKycCheckData.Employment.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final UsKycCheckData.Employment build()
Returns an immutable instance of Employment.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.employmentStatus()
-
-
-
-