Interface CustomerGroupSetCustomTypeAction
- All Superinterfaces:
CustomerGroupUpdateAction
,ResourceUpdateAction<CustomerGroupUpdateAction>
This action sets or removes the custom type for an existing CustomerGroup. If present, this action overwrites any existing custom type and fields.
Example to create an instance using the builder pattern
CustomerGroupSetCustomTypeAction customerGroupSetCustomTypeAction = CustomerGroupSetCustomTypeAction.builder()
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for CustomerGroupSetCustomTypeAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for CustomerGroupSetCustomTypeActionbuilder
(CustomerGroupSetCustomTypeAction template) create builder for CustomerGroupSetCustomTypeAction instancedeepCopy
(CustomerGroupSetCustomTypeAction template) factory method to create a deep copy of CustomerGroupSetCustomTypeAction@Valid FieldContainer
Sets the Custom Fields fields for the CustomerGroup.@Valid TypeResourceIdentifier
getType()
Defines the Type that extends the CustomerGroup with Custom Fields.of()
factory methodof
(CustomerGroupSetCustomTypeAction template) factory method to create a shallow copy CustomerGroupSetCustomTypeActionvoid
setFields
(FieldContainer fields) Sets the Custom Fields fields for the CustomerGroup.void
Defines the Type that extends the CustomerGroup with Custom Fields.static com.fasterxml.jackson.core.type.TypeReference<CustomerGroupSetCustomTypeAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.customer_group.CustomerGroupUpdateAction
getAction, withCustomerGroupUpdateAction
Methods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
SET_CUSTOM_TYPE
discriminator value for CustomerGroupSetCustomTypeAction- See Also:
-
-
Method Details
-
getType
Defines the Type that extends the CustomerGroup with Custom Fields. If absent, any existing Type and Custom Fields are removed from the CustomerGroup.
- Returns:
- type
-
getFields
Sets the Custom Fields fields for the CustomerGroup.
- Returns:
- fields
-
setType
Defines the Type that extends the CustomerGroup with Custom Fields. If absent, any existing Type and Custom Fields are removed from the CustomerGroup.
- Parameters:
type
- value to be set
-
setFields
Sets the Custom Fields fields for the CustomerGroup.
- Parameters:
fields
- value to be set
-
of
factory method- Returns:
- instance of CustomerGroupSetCustomTypeAction
-
of
factory method to create a shallow copy CustomerGroupSetCustomTypeAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static CustomerGroupSetCustomTypeAction deepCopy(@Nullable CustomerGroupSetCustomTypeAction template) factory method to create a deep copy of CustomerGroupSetCustomTypeAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for CustomerGroupSetCustomTypeAction- Returns:
- builder
-
builder
create builder for CustomerGroupSetCustomTypeAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withCustomerGroupSetCustomTypeAction
default <T> T withCustomerGroupSetCustomTypeAction(Function<CustomerGroupSetCustomTypeAction, 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<CustomerGroupSetCustomTypeAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-