Interface ProductPriceCustomFieldChangedMessagePayload
- All Superinterfaces:
MessagePayload
,MessagePayloadMixin
Generated after changing an existing Custom Field on a Price using the Set Price CustomField update action.
Example to create an instance using the builder pattern
ProductPriceCustomFieldChangedMessagePayload productPriceCustomFieldChangedMessagePayload = ProductPriceCustomFieldChangedMessagePayload.builder()
.priceId("{priceId}")
.variantId(0.3)
.staged(true)
.name("{name}")
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ProductPriceCustomFieldChangedMessagePayload -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ProductPriceCustomFieldChangedMessagePayloadcreate builder for ProductPriceCustomFieldChangedMessagePayload instancefactory method to create a deep copy of ProductPriceCustomFieldChangedMessagePayload@NotNull String
getName()
Name of the Custom Field that was changed.@NotNull String
Unique identifier of the Price of which the Custom Field was changed.@NotNull Boolean
Whether the update was only applied to the staged Product Projection.@NotNull Object
getValue()
CustomFieldValue based on the FieldType after the Set Price CustomField update action.@NotNull Long
Unique identifier of the ProductVariant to which the Price belongs.of()
factory methodfactory method to create a shallow copy ProductPriceCustomFieldChangedMessagePayloadvoid
Name of the Custom Field that was changed.void
setPriceId
(String priceId) Unique identifier of the Price of which the Custom Field was changed.void
Whether the update was only applied to the staged Product Projection.void
CustomFieldValue based on the FieldType after the Set Price CustomField update action.void
setVariantId
(Long variantId) Unique identifier of the ProductVariant to which the Price belongs.static com.fasterxml.jackson.core.type.TypeReference<ProductPriceCustomFieldChangedMessagePayload>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withProductPriceCustomFieldChangedMessagePayload
(Function<ProductPriceCustomFieldChangedMessagePayload, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.message.MessagePayload
getType, withMessagePayload
Methods inherited from interface com.commercetools.api.models.message.MessagePayloadMixin
as
-
Field Details
-
PRODUCT_PRICE_CUSTOM_FIELD_CHANGED
discriminator value for ProductPriceCustomFieldChangedMessagePayload- See Also:
-
-
Method Details
-
getPriceId
Unique identifier of the Price of which the Custom Field was changed.
- Returns:
- priceId
-
getVariantId
Unique identifier of the ProductVariant to which the Price belongs.
- Returns:
- variantId
-
getStaged
Whether the update was only applied to the staged Product Projection.
- Returns:
- staged
-
getName
Name of the Custom Field that was changed.
- Returns:
- name
-
getValue
CustomFieldValue based on the FieldType after the Set Price CustomField update action.
- Returns:
- value
-
setPriceId
Unique identifier of the Price of which the Custom Field was changed.
- Parameters:
priceId
- value to be set
-
setVariantId
Unique identifier of the ProductVariant to which the Price belongs.
- Parameters:
variantId
- value to be set
-
setStaged
Whether the update was only applied to the staged Product Projection.
- Parameters:
staged
- value to be set
-
setName
Name of the Custom Field that was changed.
- Parameters:
name
- value to be set
-
setValue
CustomFieldValue based on the FieldType after the Set Price CustomField update action.
- Parameters:
value
- value to be set
-
of
factory method- Returns:
- instance of ProductPriceCustomFieldChangedMessagePayload
-
of
static ProductPriceCustomFieldChangedMessagePayload of(ProductPriceCustomFieldChangedMessagePayload template) factory method to create a shallow copy ProductPriceCustomFieldChangedMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ProductPriceCustomFieldChangedMessagePayload deepCopy(@Nullable ProductPriceCustomFieldChangedMessagePayload template) factory method to create a deep copy of ProductPriceCustomFieldChangedMessagePayload- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductPriceCustomFieldChangedMessagePayload- Returns:
- builder
-
builder
static ProductPriceCustomFieldChangedMessagePayloadBuilder builder(ProductPriceCustomFieldChangedMessagePayload template) create builder for ProductPriceCustomFieldChangedMessagePayload instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withProductPriceCustomFieldChangedMessagePayload
default <T> T withProductPriceCustomFieldChangedMessagePayload(Function<ProductPriceCustomFieldChangedMessagePayload, 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<ProductPriceCustomFieldChangedMessagePayload> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-