Package com.lithic.api.models
Class Account.VerificationAddress
-
- All Implemented Interfaces:
@Deprecated(message = "deprecated") public final class Account.VerificationAddress
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classAccount.VerificationAddress.BuilderA builder for VerificationAddress.
-
Method Summary
Modifier and Type Method Description final Stringaddress1()Valid deliverable address (no PO boxes). final Stringcity()City name. final Stringcountry()Country name. final StringpostalCode()Valid postal code. final Stringstate()Valid state code. final Optional<String>address2()Unit or apartment number (if applicable). final JsonField<String>_address1()Valid deliverable address (no PO boxes). final JsonField<String>_city()City name. final JsonField<String>_country()Country name. final JsonField<String>_postalCode()Valid postal code. final JsonField<String>_state()Valid state code. final JsonField<String>_address2()Unit or apartment number (if applicable). final Map<String, JsonValue>_additionalProperties()final Account.VerificationAddressvalidate()final Account.VerificationAddress.BuildertoBuilder()Booleanequals(Object other)IntegerhashCode()StringtoString()final static Account.VerificationAddress.Builderbuilder()Returns a mutable builder for constructing an instance of VerificationAddress. -
-
Method Detail
-
postalCode
final String postalCode()
Valid postal code. Only USA postal codes (ZIP codes) are currently supported, entered as a five-digit postal code or nine-digit postal code (ZIP+4) using the format 12345-1234.
-
state
final String state()
Valid state code. Only USA state codes are currently supported, entered in uppercase ISO 3166-2 two-character format.
-
_postalCode
final JsonField<String> _postalCode()
Valid postal code. Only USA postal codes (ZIP codes) are currently supported, entered as a five-digit postal code or nine-digit postal code (ZIP+4) using the format 12345-1234.
-
_state
final JsonField<String> _state()
Valid state code. Only USA state codes are currently supported, entered in uppercase ISO 3166-2 two-character format.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final Account.VerificationAddress validate()
-
toBuilder
final Account.VerificationAddress.Builder toBuilder()
-
builder
final static Account.VerificationAddress.Builder builder()
Returns a mutable builder for constructing an instance of VerificationAddress.
The following fields are required:
.address1() .city() .country() .postalCode() .state()
-
-
-
-