Interface UpdateStory

interface UpdateStory {
    after_id?: number;
    archived?: boolean;
    before_id?: number;
    branch_ids?: number[];
    commit_ids?: number[];
    completed_at_override?: string;
    custom_fields?: CustomFieldValueParams[];
    deadline?: string;
    description?: string;
    epic_id?: number;
    estimate?: number;
    external_links?: string[];
    file_ids?: number[];
    follower_ids?: string[];
    group_id?: string;
    iteration_id?: number;
    labels?: CreateLabelParams[];
    linked_file_ids?: number[];
    move_to?: "last" | "first";
    name?: string;
    owner_ids?: string[];
    project_id?: number;
    pull_request_ids?: number[];
    requested_by_id?: string;
    started_at_override?: string;
    story_type?: "feature" | "chore" | "bug";
    workflow_state_id?: number;
}

Properties

after_id?: number

The ID of the story we want to move this story after.

int64

archived?: boolean

True if the story is archived, otherwise false.

before_id?: number

The ID of the story we want to move this story before.

int64

branch_ids?: number[]

An array of IDs of Branches attached to the story.

true

commit_ids?: number[]

An array of IDs of Commits attached to the story.

true

completed_at_override?: string

A manual override for the time/date the Story was completed.

date-time

custom_fields?: CustomFieldValueParams[]

A map 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

The description of the story.

100000

epic_id?: number

The ID of the epic the story belongs to.

int64

estimate?: number

The numeric point estimate of the story. Can also be null, which means unestimated.

int64

external_links?: string[]

An array of External Links associated with this story.

file_ids?: number[]

An array of IDs of files attached to the story.

true

follower_ids?: string[]

An array of UUIDs of the followers of this story.

true

group_id?: string

The ID of the group to associate with this story

uuid

iteration_id?: number

The ID of the iteration the story belongs to.

int64

An array of labels attached to the story.

linked_file_ids?: number[]

An array of IDs of linked files attached to the story.

true

move_to?: "last" | "first"

One of "first" or "last". This can be used to move the given story to the first or last position in the workflow state.

name?: string

The title of the story.

1

512

owner_ids?: string[]

An array of UUIDs of the owners of this story.

true

project_id?: number

The ID of the project the story belongs to.

int64

pull_request_ids?: number[]

An array of IDs of Pull/Merge Requests attached to the story.

true

requested_by_id?: string

The ID of the member that requested the story.

uuid

started_at_override?: string

A manual override for the time/date the Story was started.

date-time

story_type?: "feature" | "chore" | "bug"

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

workflow_state_id?: number

The ID of the workflow state to put the story in.

int64