public interface ShoppingList extends Resource<ShoppingList>, Custom, WithKey
custom fields
.Modifier and Type | Method and Description |
---|---|
String |
getAnonymousId() |
Reference<Customer> |
getCustomer() |
Integer |
getDeleteDaysAfterLastModification() |
LocalizedString |
getDescription() |
String |
getKey() |
List<LineItem> |
getLineItems() |
LocalizedString |
getName() |
LocalizedString |
getSlug() |
KeyReference<Store> |
getStore() |
List<TextLineItem> |
getTextLineItems() |
static Reference<ShoppingList> |
referenceOfId(String id)
Creates a reference for one item of this class by a known ID.
|
static String |
referenceTypeId()
A type hint for references which resource type is linked in a reference.
|
static String |
resourceTypeId()
An identifier for this resource which supports
CustomFields . |
default Reference<ShoppingList> |
toReference()
Creates a reference to this resource, the reference may not be filled.
|
static com.fasterxml.jackson.core.type.TypeReference<ShoppingList> |
typeReference()
Creates a container which contains the full Java type information to deserialize this class from JSON.
|
getCreatedAt, getId, getLastModifiedAt, getVersion
hasSameIdAs, toResourceIdentifier
LocalizedString getName()
@Nullable LocalizedString getDescription()
@Nullable LocalizedString getSlug()
@Nullable List<TextLineItem> getTextLineItems()
@Nullable KeyReference<Store> getStore()
static com.fasterxml.jackson.core.type.TypeReference<ShoppingList> typeReference()
static Reference<ShoppingList> referenceOfId(String id)
An example for categories but this applies for other resources, too:
final String categoryIdFromFormOrSession = "84ac4271-0fec-49d0-9fee-55586c565c58"; final Reference<Category> categoryReference = Category.referenceOfId(categoryIdFromFormOrSession); assertThat(categoryReference.getId()).isEqualTo(categoryIdFromFormOrSession);
See the test code.
If you already have a resource object, then use toReference()
instead:
final Category category = getCategory1(); final Reference<Category> categoryReference = category.toReference(); assertThat(category.getId()).isEqualTo(categoryReference.getId());
See the test code.
id
- the ID of the resource which should be referenced.static String referenceTypeId()
Reference.getTypeId()
static String resourceTypeId()
CustomFields
.TypeDraft.getResourceTypeIds()
,
Custom
default Reference<ShoppingList> toReference()
Referenceable
toReference
in interface Referenceable<ShoppingList>
toReference
in interface Resource<ShoppingList>