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