/** * 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 { StateResourceSchema } from './StateResourceSchema'; /** * * @export * @interface StateSchema */ export interface StateSchema { /** * * @type {StateResourceSchema} * @memberof StateSchema */ data?: StateResourceSchema; /** * * @type {ResourceLinksSchema} * @memberof StateSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof StateSchema */ meta?: { [key: string]: any; }; } /** * Check if a given object implements the StateSchema interface. */ export declare function instanceOfStateSchema(value: object): value is StateSchema; export declare function StateSchemaFromJSON(json: any): StateSchema; export declare function StateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): StateSchema; export declare function StateSchemaToJSON(json: any): StateSchema; export declare function StateSchemaToJSONTyped(value?: StateSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=StateSchema.d.ts.map