/** * 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. */ /** * * @export * @interface IncludedFields */ export interface IncludedFields { /** * * @type {Array} * @memberof IncludedFields */ included?: Array; /** * * @type {Array} * @memberof IncludedFields */ excluded?: Array; /** * * @type {Array} * @memberof IncludedFields */ actuallyIncluded?: Array; } export declare function IncludedFieldsFromJSON(json: any): IncludedFields; export declare function IncludedFieldsFromJSONTyped(json: any, ignoreDiscriminator: boolean): IncludedFields; export declare function IncludedFieldsToJSON(value?: IncludedFields): any;