Interface ProductVariantSelection

All Known Subinterfaces:
ProductVariantSelectionIncludeAllExcept, ProductVariantSelectionIncludeOnly

public interface ProductVariantSelection

Polymorphic base type for Product Variant Selections. The actual type is determined by the type field.


Example to create a subtype instance using the builder pattern

     ProductVariantSelection productVariantSelection = ProductVariantSelection.exclusionBuilder()
             plusSkus(skusBuilder -> skusBuilder)
             .build()