/** * 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. */ /** * Identifiers for a project. * @export * @interface ProjectIdentifiers */ export interface ProjectIdentifiers { /** * The key of the created project. * @type {string} * @memberof ProjectIdentifiers */ readonly key: string; /** * The URL of the created project. * @type {string} * @memberof ProjectIdentifiers */ readonly self: string; /** * The ID of the created project. * @type {number} * @memberof ProjectIdentifiers */ readonly id: number; } export declare function ProjectIdentifiersFromJSON(json: any): ProjectIdentifiers; export declare function ProjectIdentifiersFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectIdentifiers; export declare function ProjectIdentifiersToJSON(value?: ProjectIdentifiers): any;