/** * 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. */ /** * List of user accountIds. * @export * @interface UserKey */ export interface UserKey { /** * 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 UserKey */ key?: string; /** * The accountId of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. * @type {string} * @memberof UserKey */ accountId?: string; } export declare function UserKeyFromJSON(json: any): UserKey; export declare function UserKeyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserKey; export declare function UserKeyToJSON(value?: UserKey): any;