/** * 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. */ /** * A user found in a search. * @export * @interface UserPickerUser */ export interface UserPickerUser { /** * The display name of the user. Depending on the user’s privacy setting, this may be returned as null. * @type {string} * @memberof UserPickerUser */ displayName?: string; /** * 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 UserPickerUser */ key?: string; /** * 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 UserPickerUser */ name?: string; /** * The avatar URL of the user. * @type {string} * @memberof UserPickerUser */ avatarUrl?: string; /** * The display name, email address, and key of the user with the matched query string highlighted with the HTML bold tag. * @type {string} * @memberof UserPickerUser */ html?: string; /** * The accountId of the user, which uniquely identifies the user across all Atlassian products. For example, *5b10ac8d82e05b22cc7d4ef5*. * @type {string} * @memberof UserPickerUser */ accountId?: string; } export declare function UserPickerUserFromJSON(json: any): UserPickerUser; export declare function UserPickerUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserPickerUser; export declare function UserPickerUserToJSON(value?: UserPickerUser): any;