Interface ProductVariantAddedMessagePayload

All Superinterfaces:
MessagePayload, MessagePayloadMixin

public interface ProductVariantAddedMessagePayload extends MessagePayload

Generated after a successful Add ProductVariant update action.


Example to create an instance using the builder pattern

     ProductVariantAddedMessagePayload productVariantAddedMessagePayload = ProductVariantAddedMessagePayload.builder()
             .variant(variantBuilder -> variantBuilder)
             .staged(true)
             .build()
 
  • Field Details

    • PRODUCT_VARIANT_ADDED

      static final String PRODUCT_VARIANT_ADDED
      discriminator value for ProductVariantAddedMessagePayload
      See Also:
  • Method Details

    • getVariant

      @NotNull @Valid @NotNull @Valid ProductVariant getVariant()

      Unique identifier of the Product Variant that was added.

      Returns:
      variant
    • getStaged

      @NotNull @NotNull Boolean getStaged()

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

      Returns:
      staged
    • setVariant

      void setVariant(ProductVariant variant)

      Unique identifier of the Product Variant that was added.

      Parameters:
      variant - 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 ProductVariantAddedMessagePayload
    • of

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

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

      builder factory method for ProductVariantAddedMessagePayload
      Returns:
      builder
    • builder

      create builder for ProductVariantAddedMessagePayload instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withProductVariantAddedMessagePayload

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