Package com.commercetools.api.models.me
Interface MyBusinessUnitSetDefaultBillingAddressAction
- All Superinterfaces:
MyBusinessUnitUpdateAction
- All Known Implementing Classes:
MyBusinessUnitSetDefaultBillingAddressActionImpl
Setting the default billing address on a Business Unit generates the BusinessUnitDefaultBillingAddressSet Message.
Example to create an instance using the builder pattern
MyBusinessUnitSetDefaultBillingAddressAction myBusinessUnitSetDefaultBillingAddressAction = MyBusinessUnitSetDefaultBillingAddressAction.builder()
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for MyBusinessUnitSetDefaultBillingAddressAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for MyBusinessUnitSetDefaultBillingAddressActioncreate builder for MyBusinessUnitSetDefaultBillingAddressAction instancefactory method to create a deep copy of MyBusinessUnitSetDefaultBillingAddressActionID of the address to add as a billing address.Key of the address to add as a billing address.of()
factory methodfactory method to create a shallow copy MyBusinessUnitSetDefaultBillingAddressActionvoid
setAddressId
(String addressId) ID of the address to add as a billing address.void
setAddressKey
(String addressKey) Key of the address to add as a billing address.static com.fasterxml.jackson.core.type.TypeReference<MyBusinessUnitSetDefaultBillingAddressAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withMyBusinessUnitSetDefaultBillingAddressAction
(Function<MyBusinessUnitSetDefaultBillingAddressAction, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.me.MyBusinessUnitUpdateAction
getAction, withMyBusinessUnitUpdateAction
-
Field Details
-
SET_DEFAULT_BILLING_ADDRESS
discriminator value for MyBusinessUnitSetDefaultBillingAddressAction- See Also:
-
-
Method Details
-
getAddressId
String getAddressId()ID of the address to add as a billing address. Either
addressId
oraddressKey
is required.- Returns:
- addressId
-
getAddressKey
String getAddressKey()Key of the address to add as a billing address. Either
addressId
oraddressKey
is required.- Returns:
- addressKey
-
setAddressId
ID of the address to add as a billing address. Either
addressId
oraddressKey
is required.- Parameters:
addressId
- value to be set
-
setAddressKey
Key of the address to add as a billing address. Either
addressId
oraddressKey
is required.- Parameters:
addressKey
- value to be set
-
of
factory method- Returns:
- instance of MyBusinessUnitSetDefaultBillingAddressAction
-
of
static MyBusinessUnitSetDefaultBillingAddressAction of(MyBusinessUnitSetDefaultBillingAddressAction template) factory method to create a shallow copy MyBusinessUnitSetDefaultBillingAddressAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static MyBusinessUnitSetDefaultBillingAddressAction deepCopy(@Nullable MyBusinessUnitSetDefaultBillingAddressAction template) factory method to create a deep copy of MyBusinessUnitSetDefaultBillingAddressAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for MyBusinessUnitSetDefaultBillingAddressAction- Returns:
- builder
-
builder
static MyBusinessUnitSetDefaultBillingAddressActionBuilder builder(MyBusinessUnitSetDefaultBillingAddressAction template) create builder for MyBusinessUnitSetDefaultBillingAddressAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withMyBusinessUnitSetDefaultBillingAddressAction
default <T> T withMyBusinessUnitSetDefaultBillingAddressAction(Function<MyBusinessUnitSetDefaultBillingAddressAction, T> helper) accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
static com.fasterxml.jackson.core.type.TypeReference<MyBusinessUnitSetDefaultBillingAddressAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-