Interface ProductVariantTailoringAddedMessage

All Superinterfaces:
BaseResource, DomainResource<Message>, Identifiable<Message>, Message, Versioned<Message>

public interface ProductVariantTailoringAddedMessage extends Message

Generated after a successful Add ProductVariant Tailoring update action.


Example to create an instance using the builder pattern

     ProductVariantTailoringAddedMessage productVariantTailoringAddedMessage = ProductVariantTailoringAddedMessage.builder()
             .id("{id}")
             .version(0.3)
             .createdAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .lastModifiedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .sequenceNumber(0.3)
             .resource(resourceBuilder -> resourceBuilder)
             .resourceVersion(0.3)
             .store(storeBuilder -> storeBuilder)
             .product(productBuilder -> productBuilder)
             .variantId(1)
             .variant(variantBuilder -> variantBuilder)
             .build()
 
  • Field Details

    • PRODUCT_VARIANT_TAILORING_ADDED

      static final String PRODUCT_VARIANT_TAILORING_ADDED
      discriminator value for ProductVariantTailoringAddedMessage
      See Also:
  • Method Details

    • getStore

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

      The Store to which the Product Tailoring belongs.

      Returns:
      store
    • getProductKey

      String getProductKey()

      key of the tailored Product.

      Returns:
      productKey
    • getProduct

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

      Reference to the tailored Product.

      Returns:
      product
    • getVariantId

      @NotNull @NotNull Long getVariantId()

      id of the ProductVariant added to the Tailoring.

      Returns:
      variantId
    • getVariant

      @NotNull @Valid @NotNull @Valid ProductVariantTailoring getVariant()

      The ProductVariantTailoring that was added to the ProductTailoring.

      Returns:
      variant
    • setStore

      void setStore(StoreKeyReference store)

      The Store to which the Product Tailoring belongs.

      Parameters:
      store - value to be set
    • setProductKey

      void setProductKey(String productKey)

      key of the tailored Product.

      Parameters:
      productKey - value to be set
    • setProduct

      void setProduct(ProductReference product)

      Reference to the tailored Product.

      Parameters:
      product - value to be set
    • setVariantId

      void setVariantId(Long variantId)

      id of the ProductVariant added to the Tailoring.

      Parameters:
      variantId - value to be set
    • setVariant

      void setVariant(ProductVariantTailoring variant)

      The ProductVariantTailoring that was added to the ProductTailoring.

      Parameters:
      variant - value to be set
    • of

      factory method
      Returns:
      instance of ProductVariantTailoringAddedMessage
    • of

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

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

      builder factory method for ProductVariantTailoringAddedMessage
      Returns:
      builder
    • builder

      create builder for ProductVariantTailoringAddedMessage instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductVariantTailoringAddedMessage

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