Interface ProductMoveImageToPositionAction
- All Superinterfaces:
ProductUpdateAction,ResourceUpdateAction<ProductUpdateAction>
Either variantId or sku is required.
Example to create an instance using the builder pattern
ProductMoveImageToPositionAction productMoveImageToPositionAction = ProductMoveImageToPositionAction.builder()
.imageUrl("{imageUrl}")
.position(0.3)
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for ProductMoveImageToPositionAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for ProductMoveImageToPositionActionbuilder(ProductMoveImageToPositionAction template) create builder for ProductMoveImageToPositionAction instancecopyDeep()deepCopy(ProductMoveImageToPositionAction template) factory method to create a deep copy of ProductMoveImageToPositionAction@NotNull StringThe URL of the image to update.@NotNull LongPosition inimageswhere the image should be moved.getSku()Theskuof the ProductVariant to update.Iftrue, only the stagedimagesis updated.Theidof the ProductVariant to update.of()factory methodof(ProductMoveImageToPositionAction template) factory method to create a shallow copy ProductMoveImageToPositionActionvoidsetImageUrl(String imageUrl) The URL of the image to update.voidsetPosition(Long position) Position inimageswhere the image should be moved.voidTheskuof the ProductVariant to update.voidIftrue, only the stagedimagesis updated.voidsetVariantId(Long variantId) Theidof the ProductVariant to update.static com.fasterxml.jackson.core.type.TypeReference<ProductMoveImageToPositionAction>gives a TypeReference for usage with Jackson DataBinddefault <T> Taccessor map functionMethods inherited from interface com.commercetools.api.models.product.ProductUpdateAction
getAction, withProductUpdateActionMethods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
MOVE_IMAGE_TO_POSITION
discriminator value for ProductMoveImageToPositionAction- See Also:
-
-
Method Details
-
getVariantId
Long getVariantId()The
idof the ProductVariant to update.- Returns:
- variantId
-
getSku
String getSku()The
skuof the ProductVariant to update.- Returns:
- sku
-
getImageUrl
The URL of the image to update.
- Returns:
- imageUrl
-
getPosition
Position in
imageswhere the image should be moved. Must be between0and the total number of images minus1.- Returns:
- position
-
getStaged
Boolean getStaged()If
true, only the stagedimagesis updated. Iffalse, both the current and stagedimagesis updated.- Returns:
- staged
-
setVariantId
The
idof the ProductVariant to update.- Parameters:
variantId- value to be set
-
setSku
The
skuof the ProductVariant to update.- Parameters:
sku- value to be set
-
setImageUrl
The URL of the image to update.
- Parameters:
imageUrl- value to be set
-
setPosition
Position in
imageswhere the image should be moved. Must be between0and the total number of images minus1.- Parameters:
position- value to be set
-
setStaged
If
true, only the stagedimagesis updated. Iffalse, both the current and stagedimagesis updated.- Parameters:
staged- value to be set
-
of
factory method- Returns:
- instance of ProductMoveImageToPositionAction
-
of
factory method to create a shallow copy ProductMoveImageToPositionAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
ProductMoveImageToPositionAction copyDeep()- Specified by:
copyDeepin interfaceProductUpdateAction
-
deepCopy
@Nullable static ProductMoveImageToPositionAction deepCopy(@Nullable ProductMoveImageToPositionAction template) factory method to create a deep copy of ProductMoveImageToPositionAction- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductMoveImageToPositionAction- Returns:
- builder
-
builder
create builder for ProductMoveImageToPositionAction instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withProductMoveImageToPositionAction
default <T> T withProductMoveImageToPositionAction(Function<ProductMoveImageToPositionAction, 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<ProductMoveImageToPositionAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-