Interface ShippingRateInput
public interface ShippingRateInput
ShippingRateInput
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
ShippingRateInput shippingRateInput = ShippingRateInput.builder()
.type("{type}")
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic ShippingRateInputBuilderbuilder()builder factory method for ShippingRateInputstatic ShippingRateInputBuilderbuilder(ShippingRateInput template) create builder for ShippingRateInput instancecopyDeep()static ShippingRateInputdeepCopy(ShippingRateInput template) factory method to create a deep copy of ShippingRateInput@NotNull StringgetType()static ShippingRateInputof()factory methodstatic ShippingRateInputof(ShippingRateInput template) factory method to create a shallow copy ShippingRateInputvoidset typestatic com.fasterxml.jackson.core.type.TypeReference<ShippingRateInput>gives a TypeReference for usage with Jackson DataBinddefault <T> TwithShippingRateInput(Function<ShippingRateInput, T> helper) accessor map function
-
Method Details
-
getType
- Returns:
- type
-
setType
set type- Parameters:
type- value to be set
-
of
factory method- Returns:
- instance of ShippingRateInput
-
of
factory method to create a shallow copy ShippingRateInput- Parameters:
template- instance to be copied- Returns:
- copy instance
-
copyDeep
ShippingRateInput copyDeep() -
deepCopy
factory method to create a deep copy of ShippingRateInput- Parameters:
template- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ShippingRateInput- Returns:
- builder
-
builder
create builder for ShippingRateInput instance- Parameters:
template- instance with prefilled values for the builder- Returns:
- builder
-
withShippingRateInput
accessor map function- Type Parameters:
T- mapped type- Parameters:
helper- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-