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.35 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 UsersOrganizationUpdateDTO
*/
export interface UsersOrganizationUpdateDTO {
/**
* 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 UsersOrganizationUpdateDTO
*/
usernames?: Array<string>;
/**
* List of customers, specific by account IDs, to add to or remove from the organization.
* @type {Array<string>}
* @memberof UsersOrganizationUpdateDTO
*/
accountIds?: Array<string>;
}
export declare function UsersOrganizationUpdateDTOFromJSON(json: any): UsersOrganizationUpdateDTO;
export declare function UsersOrganizationUpdateDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): UsersOrganizationUpdateDTO;
export declare function UsersOrganizationUpdateDTOToJSON(value?: UsersOrganizationUpdateDTO): any;