fetch-jsd
Version:
34 lines (33 loc) • 958 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.
*/
/**
*
* @export
* @interface RequestTypeGroupDTO
*/
export interface RequestTypeGroupDTO {
/**
* ID of the request type group
* @type {string}
* @memberof RequestTypeGroupDTO
*/
id?: string;
/**
* Name of the request type group.
* @type {string}
* @memberof RequestTypeGroupDTO
*/
name?: string;
}
export declare function RequestTypeGroupDTOFromJSON(json: any): RequestTypeGroupDTO;
export declare function RequestTypeGroupDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestTypeGroupDTO;
export declare function RequestTypeGroupDTOToJSON(value?: RequestTypeGroupDTO): any;