/** * 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 a custom option for a field. * @export * @interface CustomFieldOption */ export interface CustomFieldOption { /** * The URL of these custom field option details. * @type {string} * @memberof CustomFieldOption */ readonly self?: string; /** * The value of the custom field option. * @type {string} * @memberof CustomFieldOption */ readonly value?: string; } export declare function CustomFieldOptionFromJSON(json: any): CustomFieldOption; export declare function CustomFieldOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomFieldOption; export declare function CustomFieldOptionToJSON(value?: CustomFieldOption): any;