Interface CartClassificationType

All Superinterfaces:
ShippingRateInputType
All Known Implementing Classes:
CartClassificationTypeImpl

Used when the ShippingRate maps to an abstract Cart categorization expressed by strings (for example, Light, Medium, or Heavy). Only keys defined in the values array can be used to create a tier or to set a value of the shippingRateInput on the Cart. Keys must be unique.


Example to create an instance using the builder pattern

     CartClassificationType cartClassificationType = CartClassificationType.builder()
             .plusValues(valuesBuilder -> valuesBuilder)
             .build()