Class AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder
-
- All Implemented Interfaces:
public final class AuthenticationRetrieveResponse.Cardholder.ShippingAddress.BuilderA builder for ShippingAddress.
-
-
Method Summary
-
-
Method Detail
-
address1
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder address1(String address1)
First line of the street address provided by the cardholder.
-
address1
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder address1(Optional<String> address1)
Alias for calling Builder.address1 with
address1.orElse(null).
-
address1
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder address1(JsonField<String> address1)
Sets Builder.address1 to an arbitrary JSON value.
You should usually call Builder.address1 with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
address2
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder address2(String address2)
Second line of the street address provided by the cardholder.
-
address2
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder address2(Optional<String> address2)
Alias for calling Builder.address2 with
address2.orElse(null).
-
address2
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder address2(JsonField<String> address2)
Sets Builder.address2 to an arbitrary JSON value.
You should usually call Builder.address2 with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
address3
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder address3(String address3)
Third line of the street address provided by the cardholder.
-
address3
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder address3(Optional<String> address3)
Alias for calling Builder.address3 with
address3.orElse(null).
-
address3
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder address3(JsonField<String> address3)
Sets Builder.address3 to an arbitrary JSON value.
You should usually call Builder.address3 with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
city
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder city(String city)
City of the address provided by the cardholder.
-
city
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder city(Optional<String> city)
Alias for calling Builder.city with
city.orElse(null).
-
city
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder city(JsonField<String> city)
Sets Builder.city to an arbitrary JSON value.
You should usually call Builder.city with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
country
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder country(String country)
Country of the address provided by the cardholder in ISO 3166-1 alpha-3 format (e.g. USA)
-
country
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder country(Optional<String> country)
Alias for calling Builder.country with
country.orElse(null).
-
country
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder country(JsonField<String> country)
Sets Builder.country to an arbitrary JSON value.
You should usually call Builder.country with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
postalCode
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder postalCode(String postalCode)
Postal code (e.g., ZIP code) of the address provided by the cardholder
-
postalCode
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder postalCode(Optional<String> postalCode)
Alias for calling Builder.postalCode with
postalCode.orElse(null).
-
postalCode
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder postalCode(JsonField<String> postalCode)
Sets Builder.postalCode to an arbitrary JSON value.
You should usually call Builder.postalCode 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 AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final AuthenticationRetrieveResponse.Cardholder.ShippingAddress build()
Returns an immutable instance of ShippingAddress.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-