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