/** * 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 { FinderResourceSchema } from './FinderResourceSchema'; /** * * @export * @interface FindersSchema */ export interface FindersSchema { /** * * @type {Array} * @memberof FindersSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof FindersSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof FindersSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the FindersSchema interface. */ export declare function instanceOfFindersSchema(value: object): value is FindersSchema; export declare function FindersSchemaFromJSON(json: any): FindersSchema; export declare function FindersSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FindersSchema; export declare function FindersSchemaToJSON(json: any): FindersSchema; export declare function FindersSchemaToJSONTyped(value?: FindersSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FindersSchema.d.ts.map