@shortcut/client
    Preparing search index...

    Interface EntityTemplateStoryContents

    A container entity for the attributes this template should populate.

    interface EntityTemplateStoryContents {
        custom_fields?: CreateCustomFieldValueParams[];
        deadline?: string;
        description?: string | null;
        entity_type?: string;
        epic?: EpicSlim;
        estimate?: number;
        external_links?: string[];
        files?: FileSlim[];
        followers?: MemberSlim[];
        iteration?: IterationSlim;
        labels?: LabelSlim[];
        linked_files?: LinkedFileSlim[];
        name?: string;
        owners?: MemberSlim[];
        project?: ProjectSlim;
        story_type?: string;
        sub_tasks?: EntityTemplateSubTask[];
        tasks?: EntityTemplateTask[];
        team?: TeamSlim;
        workflow_state?: WorkflowStateSlim;
    }
    Index

    Properties

    An array of maps specifying a CustomField ID and CustomFieldEnumValue ID that represents an assertion of some value for a CustomField.

    deadline?: string

    The due date of the story.

    date-time

    description?: string | null

    The description of the story.

    entity_type?: string

    A string description of this resource.

    epic?: EpicSlim

    The Epic the story belongs to.

    estimate?: number

    The numeric point estimate of the story.

    int64

    external_links?: string[]

    An array of external links connected to the story.

    files?: FileSlim[]

    An array of files attached to the story.

    followers?: MemberSlim[]

    An array of Members listed as Followers.

    iteration?: IterationSlim

    The Iteration the story belongs to.

    labels?: LabelSlim[]

    An array of labels attached to the story.

    linked_files?: LinkedFileSlim[]

    An array of linked files attached to the story.

    name?: string

    The name of the story.

    owners?: MemberSlim[]

    An array of Members who own the story.

    project?: ProjectSlim

    The Project the story belongs to.

    Optionalstory_type

    story_type?: string

    The type of story (feature, bug, chore).

    sub_tasks?: EntityTemplateSubTask[]

    An array of sub-tasks connected to the story.

    An array of tasks connected to the story.

    team?: TeamSlim
    workflow_state?: WorkflowStateSlim

    The default Workflow State of the Workspace's default Workflow.