/** * 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 { FormAttributesSchema } from './FormAttributesSchema'; /** * * @export * @interface CreateFormRequestBodyData */ export interface CreateFormRequestBodyData { /** * * @type {CreateFormRequestBodyDataTypeEnum} * @memberof CreateFormRequestBodyData */ type: CreateFormRequestBodyDataTypeEnum; /** * * @type {FormAttributesSchema} * @memberof CreateFormRequestBodyData */ attributes: FormAttributesSchema; /** * WRITE shape for request bodies: the storage-convention plural keys the services and the existing SDK writer classes use. Responses use the wire-shaped RelationshipsSchema instead - the two deliberately differ (PLAN_RELATIONSHIP_CONTRACT.md). * @type {object} * @memberof CreateFormRequestBodyData */ relationships?: object; } /** * @export */ export declare const CreateFormRequestBodyDataTypeEnum: { readonly Forms: "forms"; }; export type CreateFormRequestBodyDataTypeEnum = typeof CreateFormRequestBodyDataTypeEnum[keyof typeof CreateFormRequestBodyDataTypeEnum]; /** * Check if a given object implements the CreateFormRequestBodyData interface. */ export declare function instanceOfCreateFormRequestBodyData(value: object): value is CreateFormRequestBodyData; export declare function CreateFormRequestBodyDataFromJSON(json: any): CreateFormRequestBodyData; export declare function CreateFormRequestBodyDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateFormRequestBodyData; export declare function CreateFormRequestBodyDataToJSON(json: any): CreateFormRequestBodyData; export declare function CreateFormRequestBodyDataToJSONTyped(value?: CreateFormRequestBodyData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=CreateFormRequestBodyData.d.ts.map