Interface ShippingMethodChangeValue
public interface ShippingMethodChangeValue
ShippingMethodChangeValue
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
ShippingMethodChangeValue shippingMethodChangeValue = ShippingMethodChangeValue.builder()
.id("{id}")
.name("{name}")
.build()
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ShippingMethodChangeValuebuilder
(ShippingMethodChangeValue template) create builder for ShippingMethodChangeValue instancestatic ShippingMethodChangeValue
deepCopy
(ShippingMethodChangeValue template) factory method to create a deep copy of ShippingMethodChangeValue@NotNull String
getId()
id
of the ShippingMethod.@NotNull String
getName()
Name of the ShippingMethod.static ShippingMethodChangeValue
of()
factory methodstatic ShippingMethodChangeValue
of
(ShippingMethodChangeValue template) factory method to create a shallow copy ShippingMethodChangeValuevoid
id
of the ShippingMethod.void
Name of the ShippingMethod.static com.fasterxml.jackson.core.type.TypeReference<ShippingMethodChangeValue>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map function
-
Method Details
-
getId
id
of the ShippingMethod.- Returns:
- id
-
getName
Name of the ShippingMethod.
- Returns:
- name
-
setId
id
of the ShippingMethod.- Parameters:
id
- value to be set
-
setName
Name of the ShippingMethod.
- Parameters:
name
- value to be set
-
of
factory method- Returns:
- instance of ShippingMethodChangeValue
-
of
factory method to create a shallow copy ShippingMethodChangeValue- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of ShippingMethodChangeValue- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ShippingMethodChangeValue- Returns:
- builder
-
builder
create builder for ShippingMethodChangeValue instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withShippingMethodChangeValue
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
-