Interface ProductTailoringDescriptionSetMessagePayload

All Superinterfaces:
MessagePayload, MessagePayloadMixin

public interface ProductTailoringDescriptionSetMessagePayload extends MessagePayload

Generated after a successful Product Tailoring Set Description update action.


Example to create an instance using the builder pattern

     ProductTailoringDescriptionSetMessagePayload productTailoringDescriptionSetMessagePayload = ProductTailoringDescriptionSetMessagePayload.builder()
             .store(storeBuilder -> storeBuilder)
             .product(productBuilder -> productBuilder)
             .build()
 
  • Field Details

    • PRODUCT_TAILORING_DESCRIPTION_SET

      static final String PRODUCT_TAILORING_DESCRIPTION_SET
      discriminator value for ProductTailoringDescriptionSetMessagePayload
      See Also:
  • Method Details

    • getStore

      @NotNull @Valid @NotNull @Valid StoreKeyReference getStore()

      The Store to which the Product Tailoring belongs.

      Returns:
      store
    • getProductKey

      String getProductKey()

      User-defined unique identifier of the Product this Product Tailoring belongs to.

      Returns:
      productKey
    • getProduct

      @NotNull @Valid @NotNull @Valid ProductReference getProduct()

      Reference to the Product the Product Tailoring belongs to.

      Returns:
      product
    • getDescription

      @Valid @Valid LocalizedString getDescription()

      The description of the Product Tailoring after the Set Description update action.

      Returns:
      description
    • getOldDescription

      @Valid @Valid LocalizedString getOldDescription()

      The description of the ProductTailoring before the Set Description update action.

      Returns:
      oldDescription
    • setStore

      void setStore(StoreKeyReference store)

      The Store to which the Product Tailoring belongs.

      Parameters:
      store - value to be set
    • setProductKey

      void setProductKey(String productKey)

      User-defined unique identifier of the Product this Product Tailoring belongs to.

      Parameters:
      productKey - value to be set
    • setProduct

      void setProduct(ProductReference product)

      Reference to the Product the Product Tailoring belongs to.

      Parameters:
      product - value to be set
    • setDescription

      void setDescription(LocalizedString description)

      The description of the Product Tailoring after the Set Description update action.

      Parameters:
      description - value to be set
    • setOldDescription

      void setOldDescription(LocalizedString oldDescription)

      The description of the ProductTailoring before the Set Description update action.

      Parameters:
      oldDescription - value to be set
    • of

      factory method
      Returns:
      instance of ProductTailoringDescriptionSetMessagePayload
    • of

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

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

      builder factory method for ProductTailoringDescriptionSetMessagePayload
      Returns:
      builder
    • builder

      create builder for ProductTailoringDescriptionSetMessagePayload instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductTailoringDescriptionSetMessagePayload

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