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

    Interface IssueTypeIssueCreateMetadata

    Details of the issue creation metadata for an issue type.

    interface IssueTypeIssueCreateMetadata {
        avatarId?: number;
        description?: string;
        entityId?: string;
        expand?: string;
        fields?: {};
        hierarchyLevel?: number;
        iconUrl?: string;
        id?: string;
        name?: string;
        scope?: Version3Models.Scope;
        self?: string;
        subtask?: boolean;
    }
    Index

    Properties

    avatarId?: number

    The ID of the issue type's avatar.

    description?: string

    The description of the issue type.

    entityId?: string

    Unique ID for next-gen projects.

    expand?: string

    Expand options that include additional issue type metadata details in the response.

    fields?: {}

    List of the fields available when creating an issue for the issue type.

    hierarchyLevel?: number

    Hierarchy level of the issue type.

    iconUrl?: string

    The URL of the issue type's avatar.

    id?: string

    The ID of the issue type.

    name?: string

    The name of the issue type.

    self?: string

    The URL of these issue type details.

    subtask?: boolean

    Whether this issue type is used to create subtasks.