UNPKG

fetch-jsd

Version:

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

40 lines (39 loc) 1.1 kB
/** * 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 CustomerCreateDTO */ export interface CustomerCreateDTO { /** * Customer\'s email address. * @type {string} * @memberof CustomerCreateDTO */ email?: string; /** * Deprecated, please use \'displayName\'. * @type {string} * @memberof CustomerCreateDTO */ fullName?: string; /** * Customer\'s name for display in the UI. * @type {string} * @memberof CustomerCreateDTO */ displayName?: string; } export declare function CustomerCreateDTOFromJSON(json: any): CustomerCreateDTO; export declare function CustomerCreateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerCreateDTO; export declare function CustomerCreateDTOToJSON(value?: CustomerCreateDTO): any;