Interface ShippingMethod

All Superinterfaces:
BaseResource, Customizable<ShippingMethod>, DomainResource<ShippingMethod>, Identifiable<ShippingMethod>, Referencable<ShippingMethod>, ResourceIdentifiable<ShippingMethod>, ShippingMethodMixin, Versioned<ShippingMethod>, WithKey
All Known Implementing Classes:
ShippingMethodImpl

ShippingMethod
Example to create an instance using the builder pattern

     ShippingMethod shippingMethod = ShippingMethod.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}")
             .taxCategory(taxCategoryBuilder -> taxCategoryBuilder)
             .plusZoneRates(zoneRatesBuilder -> zoneRatesBuilder)
             .isDefault(true)
             .build()