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