Interface ProductType

All Superinterfaces:
AttributeDefinitionContainer, BaseResource, DomainResource<ProductType>, Identifiable<ProductType>, ProductTypeMixin, Referencable<ProductType>, ResourceIdentifiable<ProductType>, Versioned<ProductType>, WithKey
All Known Implementing Classes:
ProductTypeImpl

ProductType
Example to create an instance using the builder pattern

     ProductType productType = ProductType.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("{name}")
             .description("{description}")
             .build()