Interface ProductTailoringSlugSetMessage

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

public interface ProductTailoringSlugSetMessage extends Message

Generated after a successful Product Tailoring Set Slug update action.


Example to create an instance using the builder pattern

     ProductTailoringSlugSetMessage productTailoringSlugSetMessage = ProductTailoringSlugSetMessage.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)
             .build()
 
  • Field Details

    • PRODUCT_TAILORING_SLUG_SET

      static final String PRODUCT_TAILORING_SLUG_SET
      discriminator value for ProductTailoringSlugSetMessage
      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
    • getSlug

      @Valid @Valid LocalizedString getSlug()

      The slug of the Product Tailoring after the Set Slug update action.

      Returns:
      slug
    • getOldSlug

      @Valid @Valid LocalizedString getOldSlug()

      The slug of the ProductTailoring before the Set Slug update action.

      Returns:
      oldSlug
    • 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
    • setSlug

      void setSlug(LocalizedString slug)

      The slug of the Product Tailoring after the Set Slug update action.

      Parameters:
      slug - value to be set
    • setOldSlug

      void setOldSlug(LocalizedString oldSlug)

      The slug of the ProductTailoring before the Set Slug update action.

      Parameters:
      oldSlug - value to be set
    • of

      factory method
      Returns:
      instance of ProductTailoringSlugSetMessage
    • of

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

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

      builder factory method for ProductTailoringSlugSetMessage
      Returns:
      builder
    • builder

      create builder for ProductTailoringSlugSetMessage instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductTailoringSlugSetMessage

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