/** * 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. */ /** * The identifiers for a project. * @export * @interface ProjectIdentifierBean */ export interface ProjectIdentifierBean { /** * The ID of the project. * @type {number} * @memberof ProjectIdentifierBean */ readonly id?: number; /** * The key of the project. * @type {string} * @memberof ProjectIdentifierBean */ readonly key?: string; } export declare function ProjectIdentifierBeanFromJSON(json: any): ProjectIdentifierBean; export declare function ProjectIdentifierBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectIdentifierBean; export declare function ProjectIdentifierBeanToJSON(value?: ProjectIdentifierBean): any;