UNPKG

@apideck/node

Version:
47 lines (46 loc) 1.31 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { SimpleFormFieldOption } from './SimpleFormFieldOption'; /** * * @export * @interface FormFieldOption */ export interface FormFieldOption { /** * * @type {string} * @memberof FormFieldOption */ label?: string; /** * * @type {string | number | boolean | Array<string | number>} * @memberof FormFieldOption */ value?: string | number | boolean | Array<string | number> | null; /** * * @type {string} * @memberof FormFieldOption */ id?: string; /** * * @type {Array<SimpleFormFieldOption>} * @memberof FormFieldOption */ options?: Array<SimpleFormFieldOption>; } export declare function FormFieldOptionFromJSON(json: any): FormFieldOption; export declare function FormFieldOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormFieldOption; export declare function FormFieldOptionToJSON(value?: FormFieldOption | null): any;