/** * Jira Software Cloud API * Jira Software Cloud REST API documentation * * The version of the OpenAPI document: 1001.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { InlineResponse200EstimationField } from './'; /** * * @export * @interface InlineResponse200Estimation */ export interface InlineResponse200Estimation { /** * * @type {string} * @memberof InlineResponse200Estimation */ type?: string; /** * * @type {InlineResponse200EstimationField} * @memberof InlineResponse200Estimation */ field?: InlineResponse200EstimationField; } export declare function InlineResponse200EstimationFromJSON(json: any): InlineResponse200Estimation; export declare function InlineResponse200EstimationFromJSONTyped(json: any, ignoreDiscriminator: boolean): InlineResponse200Estimation; export declare function InlineResponse200EstimationToJSON(value?: InlineResponse200Estimation): any;