UNPKG

fetch-jsd

Version:

A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.

30 lines (29 loc) 933 B
/** * 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 { LinkGroup } from './'; /** * Details of the operations that can be performed on the issue. * @export * @interface Operations */ export interface Operations { [key: string]: object | any; /** * Details of the link groups defining issue operations. * @type {Array<LinkGroup>} * @memberof Operations */ readonly linkGroups?: Array<LinkGroup>; } export declare function OperationsFromJSON(json: any): Operations; export declare function OperationsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Operations; export declare function OperationsToJSON(value?: Operations): any;