/** * 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 { ResourcesMetaSchema } from './ResourcesMetaSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; import type { StateResourceSchema } from './StateResourceSchema'; /** * * @export * @interface StatesSchema */ export interface StatesSchema { /** * * @type {Array} * @memberof StatesSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof StatesSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof StatesSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the StatesSchema interface. */ export declare function instanceOfStatesSchema(value: object): value is StatesSchema; export declare function StatesSchemaFromJSON(json: any): StatesSchema; export declare function StatesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): StatesSchema; export declare function StatesSchemaToJSON(json: any): StatesSchema; export declare function StatesSchemaToJSONTyped(value?: StatesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=StatesSchema.d.ts.map