Jira.js - Jira Cloud API library
    Preparing search index...

    Interface CreateStatuses

    Details of the statuses being created and their scope.

    interface CreateStatuses {
        scope: { project?: { id: string }; type: "PROJECT" | "GLOBAL" };
        statuses: Version3Models.StatusCreate[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    scope: { project?: { id: string }; type: "PROJECT" | "GLOBAL" }

    Type Declaration

    • Optionalproject?: { id: string }
      • id: string

        The ID of the project.

    • type: "PROJECT" | "GLOBAL"

      The scope of the status. GLOBAL for company-managed projects and PROJECT for team-managed projects.

    Details of the statuses being created.