Interface CartSetBillingAddressAction
- All Superinterfaces:
CartUpdateAction
,ResourceUpdateAction<CartUpdateAction>
CartSetBillingAddressAction
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
CartSetBillingAddressAction cartSetBillingAddressAction = CartSetBillingAddressAction.builder()
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for CartSetBillingAddressAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for CartSetBillingAddressActionbuilder
(CartSetBillingAddressAction template) create builder for CartSetBillingAddressAction instancestatic CartSetBillingAddressAction
deepCopy
(CartSetBillingAddressAction template) factory method to create a deep copy of CartSetBillingAddressAction@Valid BaseAddress
Value to set.static CartSetBillingAddressAction
of()
factory methodstatic CartSetBillingAddressAction
of
(CartSetBillingAddressAction template) factory method to create a shallow copy CartSetBillingAddressActionvoid
setAddress
(BaseAddress address) Value to set.static com.fasterxml.jackson.core.type.TypeReference<CartSetBillingAddressAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.cart.CartUpdateAction
getAction, withCartUpdateAction
Methods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
SET_BILLING_ADDRESS
discriminator value for CartSetBillingAddressAction- See Also:
-
-
Method Details
-
getAddress
Value to set. If empty, any existing value is removed.
- Returns:
- address
-
setAddress
Value to set. If empty, any existing value is removed.
- Parameters:
address
- value to be set
-
of
factory method- Returns:
- instance of CartSetBillingAddressAction
-
of
factory method to create a shallow copy CartSetBillingAddressAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static CartSetBillingAddressAction deepCopy(@Nullable CartSetBillingAddressAction template) factory method to create a deep copy of CartSetBillingAddressAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for CartSetBillingAddressAction- Returns:
- builder
-
builder
create builder for CartSetBillingAddressAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withCartSetBillingAddressAction
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-