/** * 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 { ProjectIssueCreateMetadata } from './'; /** * The wrapper for the issue creation metadata for a list of projects. * @export * @interface IssueCreateMetadata */ export interface IssueCreateMetadata { /** * List of projects and their issue creation metadata. * @type {Array} * @memberof IssueCreateMetadata */ readonly projects?: Array; /** * Expand options that include additional project details in the response. * @type {string} * @memberof IssueCreateMetadata */ readonly expand?: string; } export declare function IssueCreateMetadataFromJSON(json: any): IssueCreateMetadata; export declare function IssueCreateMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueCreateMetadata; export declare function IssueCreateMetadataToJSON(value?: IssueCreateMetadata): any;