/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Details of an application property. * @export * @interface ApplicationProperty */ export interface ApplicationProperty { /** * The data type of the application property. * @type {string} * @memberof ApplicationProperty */ type?: string; /** * The name of the application property. * @type {string} * @memberof ApplicationProperty */ name?: string; /** * The key of the application property. The ID and key are the same. * @type {string} * @memberof ApplicationProperty */ key?: string; /** * The default value of the application property. * @type {string} * @memberof ApplicationProperty */ defaultValue?: string; /** * The description of the application property. * @type {string} * @memberof ApplicationProperty */ desc?: string; /** * The ID of the application property. The ID and key are the same. * @type {string} * @memberof ApplicationProperty */ id?: string; /** * The new value. * @type {string} * @memberof ApplicationProperty */ value?: string; /** * * @type {string} * @memberof ApplicationProperty */ example?: string; /** * The allowed values, if applicable. * @type {Array} * @memberof ApplicationProperty */ allowedValues?: Array; } export declare function ApplicationPropertyFromJSON(json: any): ApplicationProperty; export declare function ApplicationPropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationProperty; export declare function ApplicationPropertyToJSON(value?: ApplicationProperty): any;