CollectionTranslationResource

Properties

Name Type Description Notes
id string The unique identifier (GUID) [default to undefined]
collection_id string The collection this translation belongs to (CollectionResource id) [default to undefined]
language_id string The language of this translation (LanguageResource id) [default to undefined]
context_id string The context of this translation (ContextResource id) [default to undefined]
title string The title of the collection translation [default to undefined]
description string The description of the collection translation [default to undefined]
url string The URL for the collection translation [default to undefined]
backward_compatibility string The Id(s) of matching resource in the legacy system (if any). [default to undefined]
extra object Extra data for translation (object, may be null) [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]
collection CollectionResource The collection relationship (CollectionResource) [optional] [default to undefined]
language LanguageResource The language relationship (LanguageResource) [optional] [default to undefined]
context ContextResource The context relationship (ContextResource) [optional] [default to undefined]

Example

import { CollectionTranslationResource } from './api';

const instance: CollectionTranslationResource = {
    id,
    collection_id,
    language_id,
    context_id,
    title,
    description,
    url,
    backward_compatibility,
    extra,
    created_at,
    updated_at,
    collection,
    language,
    context,
};

Back to Model list Back to API list Back to README


This documentation was automatically generated from the TypeScript API client.