Interface BusinessUnitAddBillingAddressIdAction
- All Superinterfaces:
BusinessUnitUpdateAction
,ResourceUpdateAction<BusinessUnitUpdateAction>
Adding a billing address to a Business Unit generates a BusinessUnitBillingAddressAdded Message.
Example to create an instance using the builder pattern
BusinessUnitAddBillingAddressIdAction businessUnitAddBillingAddressIdAction = BusinessUnitAddBillingAddressIdAction.builder()
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for BusinessUnitAddBillingAddressIdAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for BusinessUnitAddBillingAddressIdActionbuilder
(BusinessUnitAddBillingAddressIdAction template) create builder for BusinessUnitAddBillingAddressIdAction instancefactory method to create a deep copy of BusinessUnitAddBillingAddressIdActionID of the address to add as a billing address.Key of the address to add as a billing address.of()
factory methodof
(BusinessUnitAddBillingAddressIdAction template) factory method to create a shallow copy BusinessUnitAddBillingAddressIdActionvoid
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<BusinessUnitAddBillingAddressIdAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.business_unit.BusinessUnitUpdateAction
getAction, withBusinessUnitUpdateAction
Methods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
ADD_BILLING_ADDRESS_ID
discriminator value for BusinessUnitAddBillingAddressIdAction- 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 BusinessUnitAddBillingAddressIdAction
-
of
factory method to create a shallow copy BusinessUnitAddBillingAddressIdAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static BusinessUnitAddBillingAddressIdAction deepCopy(@Nullable BusinessUnitAddBillingAddressIdAction template) factory method to create a deep copy of BusinessUnitAddBillingAddressIdAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for BusinessUnitAddBillingAddressIdAction- Returns:
- builder
-
builder
static BusinessUnitAddBillingAddressIdActionBuilder builder(BusinessUnitAddBillingAddressIdAction template) create builder for BusinessUnitAddBillingAddressIdAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withBusinessUnitAddBillingAddressIdAction
default <T> T withBusinessUnitAddBillingAddressIdAction(Function<BusinessUnitAddBillingAddressIdAction, 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<BusinessUnitAddBillingAddressIdAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-