/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.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 type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { FormResourceSchema } from './FormResourceSchema'; /** * * @export * @interface FormSchema */ export interface FormSchema { /** * * @type {FormResourceSchema} * @memberof FormSchema */ data?: FormResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof FormSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof FormSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the FormSchema interface. */ export declare function instanceOfFormSchema(value: object): value is FormSchema; export declare function FormSchemaFromJSON(json: any): FormSchema; export declare function FormSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormSchema; export declare function FormSchemaToJSON(json: any): FormSchema; export declare function FormSchemaToJSONTyped(value?: FormSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FormSchema.d.ts.map