/** * 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 { ResourceTimestampsSchema } from './ResourceTimestampsSchema'; /** * * @export * @interface BrowserAttributesSchema */ export interface BrowserAttributesSchema { /** * * @type {string} * @memberof BrowserAttributesSchema */ name: string; /** * * @type {string} * @memberof BrowserAttributesSchema */ status?: string; /** * * @type {ResourceTimestampsSchema} * @memberof BrowserAttributesSchema */ timestamps?: ResourceTimestampsSchema; } /** * Check if a given object implements the BrowserAttributesSchema interface. */ export declare function instanceOfBrowserAttributesSchema(value: object): value is BrowserAttributesSchema; export declare function BrowserAttributesSchemaFromJSON(json: any): BrowserAttributesSchema; export declare function BrowserAttributesSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): BrowserAttributesSchema; export declare function BrowserAttributesSchemaToJSON(json: any): BrowserAttributesSchema; export declare function BrowserAttributesSchemaToJSONTyped(value?: BrowserAttributesSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BrowserAttributesSchema.d.ts.map