/** * 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 { BrowserAttributesSchema } from './BrowserAttributesSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; /** * * @export * @interface BrowserResourceSchema */ export interface BrowserResourceSchema { /** * * @type {BrowserResourceSchemaTypeEnum} * @memberof BrowserResourceSchema */ type: BrowserResourceSchemaTypeEnum; /** * Returns results with an ID greater than the specified ID. The ID is a combination of a UUID4 (hexadecimal) followed by a hyphen and an integer number from 1 to 9. * @type {string} * @memberof BrowserResourceSchema */ id: string; /** * * @type {BrowserAttributesSchema} * @memberof BrowserResourceSchema */ attributes: BrowserAttributesSchema; /** * * @type {object} * @memberof BrowserResourceSchema */ relationships?: object; /** * * @type {ResourceLinksSchema} * @memberof BrowserResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof BrowserResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const BrowserResourceSchemaTypeEnum: { readonly Emails: "emails"; }; export type BrowserResourceSchemaTypeEnum = typeof BrowserResourceSchemaTypeEnum[keyof typeof BrowserResourceSchemaTypeEnum]; /** * Check if a given object implements the BrowserResourceSchema interface. */ export declare function instanceOfBrowserResourceSchema(value: object): value is BrowserResourceSchema; export declare function BrowserResourceSchemaFromJSON(json: any): BrowserResourceSchema; export declare function BrowserResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): BrowserResourceSchema; export declare function BrowserResourceSchemaToJSON(json: any): BrowserResourceSchema; export declare function BrowserResourceSchemaToJSONTyped(value?: BrowserResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=BrowserResourceSchema.d.ts.map