/** * 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 CreateUpdateRoleRequestBean */ export interface CreateUpdateRoleRequestBean { /** * The name of the project role. Must be unique. Cannot begin or end with whitespace. The maximum length is 255 characters. Required when creating a project role. Optional when partially updating a project role. * @type {string} * @memberof CreateUpdateRoleRequestBean */ name?: string; /** * A description of the project role. Required when fully updating a project role. Optional when creating or partially updating a project role. * @type {string} * @memberof CreateUpdateRoleRequestBean */ description?: string; } export declare function CreateUpdateRoleRequestBeanFromJSON(json: any): CreateUpdateRoleRequestBean; export declare function CreateUpdateRoleRequestBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateUpdateRoleRequestBean; export declare function CreateUpdateRoleRequestBeanToJSON(value?: CreateUpdateRoleRequestBean): any;