fetch-jsd
Version:
28 lines (27 loc) • 842 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 OrganizationCreateDTO
*/
export interface OrganizationCreateDTO {
/**
* Name of the organization.
* @type {string}
* @memberof OrganizationCreateDTO
*/
name?: string;
}
export declare function OrganizationCreateDTOFromJSON(json: any): OrganizationCreateDTO;
export declare function OrganizationCreateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationCreateDTO;
export declare function OrganizationCreateDTOToJSON(value?: OrganizationCreateDTO): any;