/** * 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 { ProjectIdentifierBean } from './'; /** * A list of projects in which a user is granted permissions. * @export * @interface PermittedProjects */ export interface PermittedProjects { /** * A list of projects. * @type {Array} * @memberof PermittedProjects */ readonly projects?: Array; } export declare function PermittedProjectsFromJSON(json: any): PermittedProjects; export declare function PermittedProjectsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PermittedProjects; export declare function PermittedProjectsToJSON(value?: PermittedProjects): any;