Interface ShippingMethodReference
- All Superinterfaces:
Identifiable<ShippingMethod>
,Reference
,ReferenceMixin
- All Known Implementing Classes:
ShippingMethodReferenceImpl
Reference to a ShippingMethod.
Example to create an instance using the builder pattern
ShippingMethodReference shippingMethodReference = ShippingMethodReference.builder()
.id("{id}")
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for ShippingMethodReference -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for ShippingMethodReferencebuilder
(ShippingMethodReference template) create builder for ShippingMethodReference instancestatic ShippingMethodReference
deepCopy
(ShippingMethodReference template) factory method to create a deep copy of ShippingMethodReference@NotNull String
getId()
Unique identifier of the referenced ShippingMethod.@Valid ShippingMethod
getObj()
Contains the representation of the expanded ShippingMethod.static ShippingMethodReference
of()
factory methodstatic ShippingMethodReference
of
(ShippingMethodReference template) factory method to create a shallow copy ShippingMethodReferencevoid
Unique identifier of the referenced ShippingMethod.void
setObj
(ShippingMethod obj) Contains the representation of the expanded ShippingMethod.static com.fasterxml.jackson.core.type.TypeReference<ShippingMethodReference>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.common.Reference
getTypeId, withReference
Methods inherited from interface com.commercetools.api.models.common.ReferenceMixin
toResourceIdentifier
-
Field Details
-
SHIPPING_METHOD
discriminator value for ShippingMethodReference- See Also:
-
-
Method Details
-
getObj
Contains the representation of the expanded ShippingMethod. Only present in responses to requests with Reference Expansion for ShippingMethods.
- Returns:
- obj
-
getId
Unique identifier of the referenced ShippingMethod.
- Specified by:
getId
in interfaceIdentifiable<ShippingMethod>
- Specified by:
getId
in interfaceReference
- Specified by:
getId
in interfaceReferenceMixin
- Returns:
- id
-
setObj
Contains the representation of the expanded ShippingMethod. Only present in responses to requests with Reference Expansion for ShippingMethods.
- Parameters:
obj
- value to be set
-
setId
Unique identifier of the referenced ShippingMethod.
-
of
factory method- Returns:
- instance of ShippingMethodReference
-
of
factory method to create a shallow copy ShippingMethodReference- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of ShippingMethodReference- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ShippingMethodReference- Returns:
- builder
-
builder
create builder for ShippingMethodReference instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withShippingMethodReference
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
-