@shortcut/client
    Preparing search index...

    Interface EntityTemplate

    An entity template can be used to prefill various fields when creating new stories.

    interface EntityTemplate {
        author_id: string;
        created_at: string;
        entity_type: string;
        id: string;
        last_used_at: string;
        name: string;
        story_contents: StoryContents;
        updated_at: string;
    }
    Index

    Properties

    author_id: string

    The unique ID of the member who created the template.

    uuid

    created_at: string

    The time/date when the entity template was created.

    date-time

    entity_type: string

    A string description of this resource.

    id: string

    The unique identifier for the entity template.

    uuid

    last_used_at: string

    The last time that someone created an entity using this template.

    date-time

    name: string

    The template's name.

    story_contents

    story_contents: StoryContents

    A container entity for the attributes this template should populate.

    updated_at: string

    The time/date when the entity template was last updated.

    date-time