/** * 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. */ /** * Details of an item associated with the changed record. * @export * @interface AssociatedItemBean */ export interface AssociatedItemBean { /** * The name of the associated parent record. * @type {string} * @memberof AssociatedItemBean */ readonly parentName?: string; /** * The name of the associated record. * @type {string} * @memberof AssociatedItemBean */ readonly name?: string; /** * The ID of the associated parent record. * @type {string} * @memberof AssociatedItemBean */ readonly parentId?: string; /** * The type of the associated record. * @type {string} * @memberof AssociatedItemBean */ readonly typeName?: string; /** * The ID of the associated record. * @type {string} * @memberof AssociatedItemBean */ readonly id?: string; } export declare function AssociatedItemBeanFromJSON(json: any): AssociatedItemBean; export declare function AssociatedItemBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssociatedItemBean; export declare function AssociatedItemBeanToJSON(value?: AssociatedItemBean): any;