Interface CustomShippingMethodChangeValue
public interface CustomShippingMethodChangeValue
CustomShippingMethodChangeValue
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
CustomShippingMethodChangeValue customShippingMethodChangeValue = CustomShippingMethodChangeValue.builder()
.name("{name}")
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for CustomShippingMethodChangeValuebuilder
(CustomShippingMethodChangeValue template) create builder for CustomShippingMethodChangeValue instancedeepCopy
(CustomShippingMethodChangeValue template) factory method to create a deep copy of CustomShippingMethodChangeValue@NotNull String
getName()
Name of the Custom ShippingMethod.of()
factory methodof
(CustomShippingMethodChangeValue template) factory method to create a shallow copy CustomShippingMethodChangeValuevoid
Name of the Custom ShippingMethod.static com.fasterxml.jackson.core.type.TypeReference<CustomShippingMethodChangeValue>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map function
-
Method Details
-
getName
Name of the Custom ShippingMethod.
- Returns:
- name
-
setName
Name of the Custom ShippingMethod.
- Parameters:
name
- value to be set
-
of
factory method- Returns:
- instance of CustomShippingMethodChangeValue
-
of
factory method to create a shallow copy CustomShippingMethodChangeValue- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static CustomShippingMethodChangeValue deepCopy(@Nullable CustomShippingMethodChangeValue template) factory method to create a deep copy of CustomShippingMethodChangeValue- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for CustomShippingMethodChangeValue- Returns:
- builder
-
builder
create builder for CustomShippingMethodChangeValue instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withCustomShippingMethodChangeValue
default <T> T withCustomShippingMethodChangeValue(Function<CustomShippingMethodChangeValue, T> helper) accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
static com.fasterxml.jackson.core.type.TypeReference<CustomShippingMethodChangeValue> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-