fetch-jsd
Version:
34 lines (33 loc) • 908 B
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.
*/
/**
* Property key details.
* @export
* @interface PropertyKey
*/
export interface PropertyKey {
/**
* The URL of the property.
* @type {string}
* @memberof PropertyKey
*/
readonly self?: string;
/**
* The key of the property.
* @type {string}
* @memberof PropertyKey
*/
readonly key?: string;
}
export declare function PropertyKeyFromJSON(json: any): PropertyKey;
export declare function PropertyKeyFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyKey;
export declare function PropertyKeyToJSON(value?: PropertyKey): any;