/** * 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 { TenantRelationshipsSchema } from './TenantRelationshipsSchema'; import type { ResourceLinksSchema } from './ResourceLinksSchema'; import type { TenantAttributesSchema } from './TenantAttributesSchema'; /** * * @export * @interface TenantResourceSchema */ export interface TenantResourceSchema { /** * * @type {TenantResourceSchemaTypeEnum} * @memberof TenantResourceSchema */ type: TenantResourceSchemaTypeEnum; /** * 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 TenantResourceSchema */ id: string; /** * * @type {TenantAttributesSchema} * @memberof TenantResourceSchema */ attributes: TenantAttributesSchema; /** * * @type {TenantRelationshipsSchema} * @memberof TenantResourceSchema */ relationships?: TenantRelationshipsSchema; /** * * @type {ResourceLinksSchema} * @memberof TenantResourceSchema */ links?: ResourceLinksSchema; /** * * @type {{ [key: string]: any; }} * @memberof TenantResourceSchema */ meta?: { [key: string]: any; }; } /** * @export */ export declare const TenantResourceSchemaTypeEnum: { readonly Tenants: "tenants"; }; export type TenantResourceSchemaTypeEnum = typeof TenantResourceSchemaTypeEnum[keyof typeof TenantResourceSchemaTypeEnum]; /** * Check if a given object implements the TenantResourceSchema interface. */ export declare function instanceOfTenantResourceSchema(value: object): value is TenantResourceSchema; export declare function TenantResourceSchemaFromJSON(json: any): TenantResourceSchema; export declare function TenantResourceSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantResourceSchema; export declare function TenantResourceSchemaToJSON(json: any): TenantResourceSchema; export declare function TenantResourceSchemaToJSONTyped(value?: TenantResourceSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantResourceSchema.d.ts.map