interface State {
    builtIn: boolean;
    createdAt: string;
    createdBy?: CreatedBy;
    description?: LocalizedString;
    id: string;
    initial: boolean;
    key: string;
    lastModifiedAt: string;
    lastModifiedBy?: LastModifiedBy;
    name?: LocalizedString;
    roles?: string[];
    transitions?: StateReference[];
    type: string;
    version: number;
}

Hierarchy

Properties

builtIn: boolean

true for States that are an integral part of the Project. Those States cannot be deleted and their key cannot be changed.

createdAt: string

Date and time (UTC) the State was initially created.

createdBy?: CreatedBy

Present on resources created after 1 February 2019 except for events not tracked.

description?: LocalizedString

Description of the State.

id: string

Unique identifier of the State.

initial: boolean

true for an initial State, the first State in a workflow.

key: string

User-defined unique identifier of the State.

lastModifiedAt: string

Date and time (UTC) the State was last updated.

lastModifiedBy?: LastModifiedBy

Present on resources created after 1 February 2019 except for events not tracked.

Name of the State.

roles?: string[]

Roles the State can fulfill for Reviews and Line Items.

transitions?: StateReference[]
  • list of States of the same type that the current State can be transitioned to. For example, when the current State is the Initial State of StateType OrderState and this list contains the reference to the Shipped OrderState, the transition Initial -> Shipped is allowed.
    • if empty, no transitions are allowed from the current State, defining the current State as final for this workflow.
    • if not set, the validation is turned off and the current State can be transitioned to any other State of the same type as the current State.
type: string

Indicates to which resource or object types the State is assigned to.

version: number

Current version of the State.

Generated using TypeDoc