/** * 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 { BrowserResourceSchema } from './BrowserResourceSchema'; import type { ResourcesLinksSchema } from './ResourcesLinksSchema'; /** * * @export * @interface BrowsersSchema */ export interface BrowsersSchema { /** * * @type {Array} * @memberof BrowsersSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof BrowsersSchema */ links?: ResourcesLinksSchema; /** * * @type {ResourcesMetaSchema} * @memberof BrowsersSchema */ meta?: ResourcesMetaSchema; } /** * Check if a given object implements the BrowsersSchema interface. */ export declare function instanceOfBrowsersSchema(value: object): value is BrowsersSchema; export declare function BrowsersSchemaFromJSON(json: any): BrowsersSchema; export declare function BrowsersSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): BrowsersSchema; export declare function BrowsersSchemaToJSON(json: any): BrowsersSchema; export declare function BrowsersSchemaToJSONTyped(value?: BrowsersSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BrowsersSchema.d.ts.map