UNPKG

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.37 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 RequestParticipantUpdateDTO */ export interface RequestParticipantUpdateDTO { /** * 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 RequestParticipantUpdateDTO */ usernames?: Array<string>; /** * List of users, specified by account IDs, to add to or remove as participants in the request. * @type {Array<string>} * @memberof RequestParticipantUpdateDTO */ accountIds?: Array<string>; } export declare function RequestParticipantUpdateDTOFromJSON(json: any): RequestParticipantUpdateDTO; export declare function RequestParticipantUpdateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): RequestParticipantUpdateDTO; export declare function RequestParticipantUpdateDTOToJSON(value?: RequestParticipantUpdateDTO): any;