Interface ProductPriceExternalDiscountSetMessagePayload

All Superinterfaces:
MessagePayload, MessagePayloadMixin

public interface ProductPriceExternalDiscountSetMessagePayload extends MessagePayload

Generated after a successful Set Discounted Price update action.


Example to create an instance using the builder pattern

     ProductPriceExternalDiscountSetMessagePayload productPriceExternalDiscountSetMessagePayload = ProductPriceExternalDiscountSetMessagePayload.builder()
             .variantId(1)
             .priceId("{priceId}")
             .staged(true)
             .build()
 
  • Field Details

    • PRODUCT_PRICE_EXTERNAL_DISCOUNT_SET

      static final String PRODUCT_PRICE_EXTERNAL_DISCOUNT_SET
      discriminator value for ProductPriceExternalDiscountSetMessagePayload
      See Also:
  • Method Details

    • getVariantId

      @NotNull @NotNull Integer getVariantId()

      Unique identifier of the Product Variant for which the Discount was set.

      Returns:
      variantId
    • getVariantKey

      String getVariantKey()

      Key of the Product Variant for which the Discount was set.

      Returns:
      variantKey
    • getSku

      String getSku()

      SKU of the Product Variant for which Discount was set.

      Returns:
      sku
    • getPriceId

      @NotNull @NotNull String getPriceId()

      Unique identifier of the Price.

      Returns:
      priceId
    • getDiscounted

      @Valid @Valid DiscountedPrice getDiscounted()

      Discounted Price for the Product Variant for which Discount was set.

      Returns:
      discounted
    • getStaged

      @NotNull @NotNull Boolean getStaged()

      Whether the update was only applied to the staged Product Projection.

      Returns:
      staged
    • setVariantId

      void setVariantId(Integer variantId)

      Unique identifier of the Product Variant for which the Discount was set.

      Parameters:
      variantId - value to be set
    • setVariantKey

      void setVariantKey(String variantKey)

      Key of the Product Variant for which the Discount was set.

      Parameters:
      variantKey - value to be set
    • setSku

      void setSku(String sku)

      SKU of the Product Variant for which Discount was set.

      Parameters:
      sku - value to be set
    • setPriceId

      void setPriceId(String priceId)

      Unique identifier of the Price.

      Parameters:
      priceId - value to be set
    • setDiscounted

      void setDiscounted(DiscountedPrice discounted)

      Discounted Price for the Product Variant for which Discount was set.

      Parameters:
      discounted - value to be set
    • setStaged

      void setStaged(Boolean staged)

      Whether the update was only applied to the staged Product Projection.

      Parameters:
      staged - value to be set
    • of

      factory method
      Returns:
      instance of ProductPriceExternalDiscountSetMessagePayload
    • of

      factory method to create a shallow copy ProductPriceExternalDiscountSetMessagePayload
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      factory method to create a deep copy of ProductPriceExternalDiscountSetMessagePayload
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for ProductPriceExternalDiscountSetMessagePayload
      Returns:
      builder
    • builder

      create builder for ProductPriceExternalDiscountSetMessagePayload instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductPriceExternalDiscountSetMessagePayload

      default <T> T withProductPriceExternalDiscountSetMessagePayload(Function<ProductPriceExternalDiscountSetMessagePayload,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<ProductPriceExternalDiscountSetMessagePayload> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference