/** * 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. */ import { RoleActor, Scope } from './'; /** * Details about the roles in a project. * @export * @interface ProjectRole */ export interface ProjectRole { /** * The list of users who act in this role. * @type {Array} * @memberof ProjectRole */ readonly actors?: Array; /** * The URL the project role details. * @type {string} * @memberof ProjectRole */ readonly self?: string; /** * * @type {boolean} * @memberof ProjectRole */ _default?: boolean; /** * The description of the project role. * @type {string} * @memberof ProjectRole */ readonly description?: string; /** * * @type {boolean} * @memberof ProjectRole */ admin?: boolean; /** * The name of the project role. * @type {string} * @memberof ProjectRole */ name?: string; /** * The scope of the role. Indicated for roles associated with [next-gen projects](https://confluence.atlassian.com/x/loMyO). * @type {Scope} * @memberof ProjectRole */ readonly scope?: Scope; /** * The ID of the project role. * @type {number} * @memberof ProjectRole */ readonly id?: number; } export declare function ProjectRoleFromJSON(json: any): ProjectRole; export declare function ProjectRoleFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectRole; export declare function ProjectRoleToJSON(value?: ProjectRole): any;