Interface ProductSelection

All Superinterfaces:
BaseResource, Customizable<ProductSelection>, DomainResource<ProductSelection>, Identifiable<ProductSelection>, ProductSelectionMixin, Referencable<ProductSelection>, ResourceIdentifiable<ProductSelection>, Versioned<ProductSelection>, WithKey
All Known Implementing Classes:
ProductSelectionImpl

ProductSelection
Example to create an instance using the builder pattern

     ProductSelection productSelection = ProductSelection.builder()
             .id("{id}")
             .version(0.3)
             .createdAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .lastModifiedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .name(nameBuilder -> nameBuilder)
             .productCount(0.3)
             .mode(ProductSelectionMode.INDIVIDUAL)
             .build()