/** * 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 { JsonNode } from './'; /** * Lists of issues and entity properties. See [Entity properties](https://developer.atlassian.com/cloud/jira/platform/jira-entity-properties/) for more information. * @export * @interface IssueEntityProperties */ export interface IssueEntityProperties { /** * A list of entity property keys and values. * @type {{ [key: string]: JsonNode; }} * @memberof IssueEntityProperties */ properties?: { [key: string]: JsonNode; }; /** * A list of entity IDs. * @type {Array} * @memberof IssueEntityProperties */ entitiesIds?: Array; } export declare function IssueEntityPropertiesFromJSON(json: any): IssueEntityProperties; export declare function IssueEntityPropertiesFromJSONTyped(json: any, ignoreDiscriminator: boolean): IssueEntityProperties; export declare function IssueEntityPropertiesToJSON(value?: IssueEntityProperties): any;