fetch-jsd
Version: 
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
34 lines (33 loc) • 1.11 kB
TypeScript
/**
 * Service Desk Public REST API
 * Public REST API for Jira Service Desk
 *
 * The version of the OpenAPI document: 1001.0.0-SNAPSHOT
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * An entity property, for more information see [Entity properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/).
 * @export
 * @interface EntityProperty
 */
export interface EntityProperty {
    /**
     * The key of the property. Required on create and update.
     * @type {string}
     * @memberof EntityProperty
     */
    key?: string;
    /**
     * The value of the property. Required on create and update.
     * @type {object}
     * @memberof EntityProperty
     */
    value?: object;
}
export declare function EntityPropertyFromJSON(json: any): EntityProperty;
export declare function EntityPropertyFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityProperty;
export declare function EntityPropertyToJSON(value?: EntityProperty): any;