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

    Interface ApplicationProperty

    Details of an application property.

    interface ApplicationProperty {
        allowedValues?: string[];
        defaultValue?: string;
        desc?: string;
        example?: string;
        id?: string;
        key?: string;
        name?: string;
        type?: string;
        value?: string;
    }
    Index

    Properties

    allowedValues?: string[]

    The allowed values, if applicable.

    defaultValue?: string

    The default value of the application property.

    desc?: string

    The description of the application property.

    example?: string
    id?: string

    The ID of the application property. The ID and key are the same.

    key?: string

    The key of the application property. The ID and key are the same.

    name?: string

    The name of the application property.

    type?: string

    The data type of the application property.

    value?: string

    The new value.