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