Interface InventoryEntryResourceIdentifier
- All Superinterfaces:
Identifiable<InventoryEntry>
,ResourceIdentifier
,WithKey
- All Known Implementing Classes:
InventoryEntryResourceIdentifierImpl
public interface InventoryEntryResourceIdentifier
extends ResourceIdentifier, Identifiable<InventoryEntry>
ResourceIdentifier to an InventoryEntry.
Example to create an instance using the builder pattern
InventoryEntryResourceIdentifier inventoryEntryResourceIdentifier = InventoryEntryResourceIdentifier.builder()
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for InventoryEntryResourceIdentifier -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for InventoryEntryResourceIdentifierbuilder
(InventoryEntryResourceIdentifier template) create builder for InventoryEntryResourceIdentifier instancedeepCopy
(InventoryEntryResourceIdentifier template) factory method to create a deep copy of InventoryEntryResourceIdentifiergetId()
Unique identifier of the referenced InventoryEntry.getKey()
User-defined unique identifier of the referenced InventoryEntry.of()
factory methodof
(InventoryEntryResourceIdentifier template) factory method to create a shallow copy InventoryEntryResourceIdentifiervoid
Unique identifier of the referenced InventoryEntry.void
User-defined unique identifier of the referenced InventoryEntry.static com.fasterxml.jackson.core.type.TypeReference<InventoryEntryResourceIdentifier>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.common.ResourceIdentifier
getTypeId, withResourceIdentifier
-
Field Details
-
INVENTORY_ENTRY
discriminator value for InventoryEntryResourceIdentifier- See Also:
-
-
Method Details
-
getId
String getId()Unique identifier of the referenced InventoryEntry. Either
id
orkey
is required.- Specified by:
getId
in interfaceIdentifiable<InventoryEntry>
- Specified by:
getId
in interfaceResourceIdentifier
- Returns:
- id
-
getKey
String getKey()User-defined unique identifier of the referenced InventoryEntry. Either
id
orkey
is required.- Specified by:
getKey
in interfaceResourceIdentifier
- Specified by:
getKey
in interfaceWithKey
- Returns:
- key
-
setId
Unique identifier of the referenced InventoryEntry. Either
id
orkey
is required.- Specified by:
setId
in interfaceResourceIdentifier
- Parameters:
id
- value to be set
-
setKey
User-defined unique identifier of the referenced InventoryEntry. Either
id
orkey
is required.- Specified by:
setKey
in interfaceResourceIdentifier
- Parameters:
key
- value to be set
-
of
factory method- Returns:
- instance of InventoryEntryResourceIdentifier
-
of
factory method to create a shallow copy InventoryEntryResourceIdentifier- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static InventoryEntryResourceIdentifier deepCopy(@Nullable InventoryEntryResourceIdentifier template) factory method to create a deep copy of InventoryEntryResourceIdentifier- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for InventoryEntryResourceIdentifier- Returns:
- builder
-
builder
create builder for InventoryEntryResourceIdentifier instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withInventoryEntryResourceIdentifier
default <T> T withInventoryEntryResourceIdentifier(Function<InventoryEntryResourceIdentifier, 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<InventoryEntryResourceIdentifier> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-