Interface ProductTailoringMoveImageToPositionAction
- All Superinterfaces:
ProductTailoringUpdateAction
Either variantId
or sku
is required to reference a ProductVariant that exists.
Example to create an instance using the builder pattern
ProductTailoringMoveImageToPositionAction productTailoringMoveImageToPositionAction = ProductTailoringMoveImageToPositionAction.builder()
.imageUrl("{imageUrl}")
.position(0.3)
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ProductTailoringMoveImageToPositionAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ProductTailoringMoveImageToPositionActioncreate builder for ProductTailoringMoveImageToPositionAction instancefactory method to create a deep copy of ProductTailoringMoveImageToPositionAction@NotNull String
The URL of the image to update.@NotNull Long
Position inimages
where the image should be moved.getSku()
Thesku
of the tailored ProductVariant to update.Iftrue
, only the stagedimages
is updated.Theid
of the tailored ProductVariant to update.of()
factory methodof
(ProductTailoringMoveImageToPositionAction template) factory method to create a shallow copy ProductTailoringMoveImageToPositionActionvoid
setImageUrl
(String imageUrl) The URL of the image to update.void
setPosition
(Long position) Position inimages
where the image should be moved.void
Thesku
of the tailored ProductVariant to update.void
Iftrue
, only the stagedimages
is updated.void
setVariantId
(Long variantId) Theid
of the tailored ProductVariant to update.static com.fasterxml.jackson.core.type.TypeReference<ProductTailoringMoveImageToPositionAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withProductTailoringMoveImageToPositionAction
(Function<ProductTailoringMoveImageToPositionAction, T> helper) accessor map functionMethods inherited from interface com.commercetools.api.models.product_tailoring.ProductTailoringUpdateAction
getAction, withProductTailoringUpdateAction
-
Field Details
-
MOVE_IMAGE_TO_POSITION
discriminator value for ProductTailoringMoveImageToPositionAction- See Also:
-
-
Method Details
-
getVariantId
Long getVariantId()The
id
of the tailored ProductVariant to update.- Returns:
- variantId
-
getSku
String getSku()The
sku
of the tailored ProductVariant to update.- Returns:
- sku
-
getImageUrl
The URL of the image to update.
- Returns:
- imageUrl
-
getPosition
Position in
images
where the image should be moved. Must be between0
and the total number of images minus1
.- Returns:
- position
-
getStaged
Boolean getStaged()If
true
, only the stagedimages
is updated. Iffalse
, both the current and stagedimages
is updated.- Returns:
- staged
-
setVariantId
The
id
of the tailored ProductVariant to update.- Parameters:
variantId
- value to be set
-
setSku
The
sku
of the tailored 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
images
where the image should be moved. Must be between0
and the total number of images minus1
.- Parameters:
position
- value to be set
-
setStaged
If
true
, only the stagedimages
is updated. Iffalse
, both the current and stagedimages
is updated.- Parameters:
staged
- value to be set
-
of
factory method- Returns:
- instance of ProductTailoringMoveImageToPositionAction
-
of
static ProductTailoringMoveImageToPositionAction of(ProductTailoringMoveImageToPositionAction template) factory method to create a shallow copy ProductTailoringMoveImageToPositionAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static ProductTailoringMoveImageToPositionAction deepCopy(@Nullable ProductTailoringMoveImageToPositionAction template) factory method to create a deep copy of ProductTailoringMoveImageToPositionAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ProductTailoringMoveImageToPositionAction- Returns:
- builder
-
builder
static ProductTailoringMoveImageToPositionActionBuilder builder(ProductTailoringMoveImageToPositionAction template) create builder for ProductTailoringMoveImageToPositionAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withProductTailoringMoveImageToPositionAction
default <T> T withProductTailoringMoveImageToPositionAction(Function<ProductTailoringMoveImageToPositionAction, 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<ProductTailoringMoveImageToPositionAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-