UNPKG

@apideck/node

Version:
55 lines (54 loc) 1.51 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 { FormFieldOption } from './FormFieldOption'; /** * * @export * @interface ConnectionDefaults */ export interface ConnectionDefaults { /** * * @type {string} * @memberof ConnectionDefaults */ readonly target?: ConnectionDefaultsTarget; /** * * @type {string} * @memberof ConnectionDefaults */ id?: string; /** * * @type {Array<FormFieldOption>} * @memberof ConnectionDefaults */ options?: Array<FormFieldOption>; /** * * @type {string | number | boolean | Array<string | number>} * @memberof ConnectionDefaults */ value?: string | number | boolean | Array<string | number> | null; } /** * @export * @enum {string} */ export declare enum ConnectionDefaultsTarget { custom_fields = "custom_fields", resource = "resource" } export declare function ConnectionDefaultsFromJSON(json: any): ConnectionDefaults; export declare function ConnectionDefaultsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectionDefaults; export declare function ConnectionDefaultsToJSON(value?: ConnectionDefaults | null): any;