/** * 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 UnrestrictedUserEmail */ export interface UnrestrictedUserEmail { /** * The accountId of the user * @type {string} * @memberof UnrestrictedUserEmail */ accountId?: string; /** * The email of the user * @type {string} * @memberof UnrestrictedUserEmail */ email?: string; } export declare function UnrestrictedUserEmailFromJSON(json: any): UnrestrictedUserEmail; export declare function UnrestrictedUserEmailFromJSONTyped(json: any, ignoreDiscriminator: boolean): UnrestrictedUserEmail; export declare function UnrestrictedUserEmailToJSON(value?: UnrestrictedUserEmail): any;