/** * 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'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { FormRelationshipsSchema } from './FormRelationshipsSchema'; /** * * @export * @interface FormResourceSchema */ export interface FormResourceSchema { /** * * @type {FormResourceSchemaTypeEnum} * @memberof FormResourceSchema */ type: FormResourceSchemaTypeEnum; /** * Returns results with an ID greater than the specified ID. The ID is a combination of a UUID4 (hexadecimal) followed by a hyphen and an integer number from 1 to 9. * @type {string} * @memberof FormResourceSchema */ id: string; /** * * @type {FormAttributesSchema} * @memberof FormResourceSchema */ attributes: FormAttributesSchema; /** * * @type {FormRelationshipsSchema} * @memberof FormResourceSchema */ relationships?: FormRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof FormResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof FormResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const FormResourceSchemaTypeEnum: { readonly Forms: "forms"; }; export type FormResourceSchemaTypeEnum = typeof FormResourceSchemaTypeEnum[keyof typeof FormResourceSchemaTypeEnum]; /** * Check if a given object implements the FormResourceSchema interface. */ export declare function instanceOfFormResourceSchema(value: object): value is FormResourceSchema; export declare function FormResourceSchemaFromJSON(json: any): FormResourceSchema; export declare function FormResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormResourceSchema; export declare function FormResourceSchemaToJSON(json: any): FormResourceSchema; export declare function FormResourceSchemaToJSONTyped(value?: FormResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FormResourceSchema.d.ts.map