Interface ProductTypeImport

All Superinterfaces:
ImportResource
All Known Implementing Classes:
ProductTypeImportImpl

public interface ProductTypeImport extends ImportResource

The data representation for a ProductType to be imported that is persisted as a ProductType in the Project.


Example to create an instance using the builder pattern

     ProductTypeImport productTypeImport = ProductTypeImport.builder()
             .key("{key}")
             .name("{name}")
             .description("{description}")
             .build()