ArtistResource

Properties

Name Type Description Notes
id string The unique identifier (GUID) [default to undefined]
name string The name of the artist [default to undefined]
place_of_birth string The place of birth of the artist [default to undefined]
place_of_death string The place of death of the artist [default to undefined]
date_of_birth string The date of birth of the artist [default to undefined]
date_of_death string The date of death of the artist [default to undefined]
period_of_activity string The period of activity of the artist [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]
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]
items Array<ItemResource> Items associated with this artist (ItemResource[]) [optional] [default to undefined]

Example

import { ArtistResource } from './api';

const instance: ArtistResource = {
    id,
    name,
    place_of_birth,
    place_of_death,
    date_of_birth,
    date_of_death,
    period_of_activity,
    internal_name,
    backward_compatibility,
    created_at,
    updated_at,
    items,
};

Back to Model list Back to API list Back to README


This documentation was automatically generated from the TypeScript API client.