fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
29 lines (28 loc) • 847 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.
*/
import { PropertyKey } from './';
/**
* List of property keys.
* @export
* @interface PropertyKeys
*/
export interface PropertyKeys {
/**
* Property key details.
* @type {Array<PropertyKey>}
* @memberof PropertyKeys
*/
readonly keys?: Array<PropertyKey>;
}
export declare function PropertyKeysFromJSON(json: any): PropertyKeys;
export declare function PropertyKeysFromJSONTyped(json: any, ignoreDiscriminator: boolean): PropertyKeys;
export declare function PropertyKeysToJSON(value?: PropertyKeys): any;