fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
28 lines (27 loc) • 1.02 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.
*/
/**
*
* @export
* @interface OrganizationServiceDeskUpdateDTO
*/
export interface OrganizationServiceDeskUpdateDTO {
/**
* List of organizations, specified by \'ID\' field values, to add to or remove from the service desk.
* @type {number}
* @memberof OrganizationServiceDeskUpdateDTO
*/
organizationId?: number;
}
export declare function OrganizationServiceDeskUpdateDTOFromJSON(json: any): OrganizationServiceDeskUpdateDTO;
export declare function OrganizationServiceDeskUpdateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationServiceDeskUpdateDTO;
export declare function OrganizationServiceDeskUpdateDTOToJSON(value?: OrganizationServiceDeskUpdateDTO): any;