ItemResource
Properties
Name | Type | Description | Notes |
---|---|---|---|
id | string | The unique identifier (GUID) | [default to undefined] |
internal_name | string | A name for this resource, for internal use only. | [default to undefined] |
backward_compatibility | string | The Id(s) of matching resource in the legacy system (if any). | [default to undefined] |
type | string | The type of the item, either \'object\' or \'monument\'. | [default to undefined] |
owner_reference | string | Owner\'s reference number for the item (external reference from owner) | [default to undefined] |
mwnf_reference | string | MWNF reference number for the item (reference from MWNF system) | [default to undefined] |
partner | PartnerResource | The partner owning the item (PartnerResource) | [optional] [default to undefined] |
project | ProjectResource | The project this item belongs to, nullable (ProjectResource) | [optional] [default to undefined] |
country | CountryResource | The country this item is associated with, nullable (CountryResource) | [optional] [default to undefined] |
artists | Array<ArtistResource> | Artists associated with this item (ArtistResource[]) | [default to undefined] |
workshops | Array<WorkshopResource> | Workshops associated with this item (WorkshopResource[]) | [default to undefined] |
tags | Array<TagResource> | Tags associated with this item (TagResource[]) | [optional] [default to undefined] |
translations | Array<ItemTranslationResource> | Translations for this item (internationalization and contextualization) (ItemTranslationResource[]) | [optional] [default to undefined] |
created_at | string | The date of creation of the resource (managed by the system) | [default to undefined] |
updated_at | string | The date of last modification of the resource (managed by the system) | [default to undefined] |
Example
import { ItemResource } from './api';
const instance: ItemResource = {
id,
internal_name,
backward_compatibility,
type,
owner_reference,
mwnf_reference,
partner,
project,
country,
artists,
workshops,
tags,
translations,
created_at,
updated_at,
};
Back to Model list Back to API list Back to README
This documentation was automatically generated from the TypeScript API client.