@shortcut/client
    Preparing search index...

    Interface UpdateStoryContents

    Updated attributes for the template to populate.

    interface UpdateStoryContents {
        custom_fields?: CustomFieldValueParams[];
        deadline?: null | string;
        description?: string;
        epic_id?: null | number;
        estimate?: null | number;
        external_links?: string[];
        file_ids?: number[];
        follower_ids?: string[];
        group_id?: null | string;
        iteration_id?: null | number;
        labels?: CreateLabelParams[];
        linked_file_ids?: number[];
        name?: string;
        owner_ids?: string[];
        project_id?: null | number;
        story_type?: string;
        sub_tasks?: CreateSubTaskParams[];
        tasks?: BaseTaskParams[];
        workflow_state_id?: null | number;
    }
    Index

    Properties

    custom_fields?: CustomFieldValueParams[]

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

    deadline?: null | string

    The due date of the story.

    date-time

    description?: string

    The description of the story.

    epic_id?: null | number

    The ID of the epic the to be populated.

    int64

    estimate?: null | number

    The numeric point estimate to be populated.

    int64

    external_links?: string[]

    An array of external links to be populated.

    file_ids?: number[]

    An array of the attached file IDs to be populated.

    true

    follower_ids?: string[]

    An array of UUIDs for any Members listed as Followers.

    group_id?: null | string

    The ID of the group to be populated.

    uuid

    iteration_id?: null | number

    The ID of the iteration the to be populated.

    int64

    An array of labels to be populated by the template.

    linked_file_ids?: number[]

    An array of the linked file IDs to be populated.

    true

    name?: string

    The name of the story.

    owner_ids?: string[]

    An array of UUIDs of the owners of this story.

    project_id?: null | number

    The ID of the project the story belongs to.

    int64

    Optionalstory_type

    story_type?: string

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

    sub_tasks?: CreateSubTaskParams[]

    An array of sub-tasks connected to the story

    tasks?: BaseTaskParams[]

    An array of tasks to be populated by the template.

    workflow_state_id?: null | number

    The ID of the workflow state to be populated.

    int64