/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * 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 UpdateUserToGroupBean */ export interface UpdateUserToGroupBean { [key: string]: object | any; /** * 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. * @type {string} * @memberof UpdateUserToGroupBean */ name?: string; /** * The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. * @type {string} * @memberof UpdateUserToGroupBean */ accountId?: string; } export declare function UpdateUserToGroupBeanFromJSON(json: any): UpdateUserToGroupBean; export declare function UpdateUserToGroupBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateUserToGroupBean; export declare function UpdateUserToGroupBeanToJSON(value?: UpdateUserToGroupBean): any;