fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
41 lines (40 loc) • 1.11 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.
*/
import { SelfLinkDTO } from './';
/**
*
* @export
* @interface OrganizationDTO
*/
export interface OrganizationDTO {
/**
* A unique system generated ID for the organization.
* @type {string}
* @memberof OrganizationDTO
*/
id?: string;
/**
* Name of the organization.
* @type {string}
* @memberof OrganizationDTO
*/
name?: string;
/**
* REST API URL to the organization.
* @type {SelfLinkDTO}
* @memberof OrganizationDTO
*/
_links?: SelfLinkDTO;
}
export declare function OrganizationDTOFromJSON(json: any): OrganizationDTO;
export declare function OrganizationDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationDTO;
export declare function OrganizationDTOToJSON(value?: OrganizationDTO): any;