/** * 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 { ResourcesLinksSchema } from './ResourcesLinksSchema'; import type { TenantsMetaSchema } from './TenantsMetaSchema'; import type { TenantResourceSchema } from './TenantResourceSchema'; /** * * @export * @interface TenantsSchema */ export interface TenantsSchema { /** * * @type {Array} * @memberof TenantsSchema */ data?: Array; /** * * @type {ResourcesLinksSchema} * @memberof TenantsSchema */ links?: ResourcesLinksSchema; /** * * @type {TenantsMetaSchema} * @memberof TenantsSchema */ meta?: TenantsMetaSchema; } /** * Check if a given object implements the TenantsSchema interface. */ export declare function instanceOfTenantsSchema(value: object): value is TenantsSchema; export declare function TenantsSchemaFromJSON(json: any): TenantsSchema; export declare function TenantsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantsSchema; export declare function TenantsSchemaToJSON(json: any): TenantsSchema; export declare function TenantsSchemaToJSONTyped(value?: TenantsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantsSchema.d.ts.map