fetch-jsd
Version:
A simple and typed library, based on OpenAPI spec from developer.atlassian.com, for accessing product APIs.
34 lines (33 loc) • 1.31 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 ServiceDeskCustomerDTO
*/
export interface ServiceDeskCustomerDTO {
/**
* This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details. Use `accountIds` instead.
* @type {Array<string>}
* @memberof ServiceDeskCustomerDTO
*/
usernames?: Array<string>;
/**
* List of users, specified by account IDs, to add to or remove from a service desk.
* @type {Array<string>}
* @memberof ServiceDeskCustomerDTO
*/
accountIds?: Array<string>;
}
export declare function ServiceDeskCustomerDTOFromJSON(json: any): ServiceDeskCustomerDTO;
export declare function ServiceDeskCustomerDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServiceDeskCustomerDTO;
export declare function ServiceDeskCustomerDTOToJSON(value?: ServiceDeskCustomerDTO): any;