/** * 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 AddFieldBean */ export interface AddFieldBean { /** * The ID of the field to add. * @type {string} * @memberof AddFieldBean */ fieldId: string; } export declare function AddFieldBeanFromJSON(json: any): AddFieldBean; export declare function AddFieldBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): AddFieldBean; export declare function AddFieldBeanToJSON(value?: AddFieldBean): any;