/** * 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 { AvatarUrlsBean, IssueTypeIssueCreateMetadata } from './'; /** * Details of the issue creation metadata for a project. * @export * @interface ProjectIssueCreateMetadata */ export interface ProjectIssueCreateMetadata { /** * Expand options that include additional project issue create metadata details in the response. * @type {string} * @memberof ProjectIssueCreateMetadata */ readonly expand?: string; /** * List of the issue types supported by the project. * @type {Array} * @memberof ProjectIssueCreateMetadata */ readonly issuetypes?: Array; /** * The key of the project. * @type {string} * @memberof ProjectIssueCreateMetadata */ readonly key?: string; /** * The name of the project. * @type {string} * @memberof ProjectIssueCreateMetadata */ readonly name?: string; /** * List of the project\'s avatars, returning the avatar size and associated URL. * @type {AvatarUrlsBean} * @memberof ProjectIssueCreateMetadata */ readonly avatarUrls?: AvatarUrlsBean; /** * The ID of the project. * @type {string} * @memberof ProjectIssueCreateMetadata */ readonly id?: string; /** * The URL of the project. * @type {string} * @memberof ProjectIssueCreateMetadata */ readonly self?: string; } export declare function ProjectIssueCreateMetadataFromJSON(json: any): ProjectIssueCreateMetadata; export declare function ProjectIssueCreateMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectIssueCreateMetadata; export declare function ProjectIssueCreateMetadataToJSON(value?: ProjectIssueCreateMetadata): any;