/** * 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 { TenantRelationshipsBoeUserSchema } from './TenantRelationshipsBoeUserSchema'; import type { TenantRelationshipsFeedbacksSchema } from './TenantRelationshipsFeedbacksSchema'; import type { TenantRelationshipsBoeCalendarSchema } from './TenantRelationshipsBoeCalendarSchema'; import type { TenantRelationshipsFormsSchema } from './TenantRelationshipsFormsSchema'; /** * * @export * @interface TenantRelationshipsSchema */ export interface TenantRelationshipsSchema { /** * * @type {TenantRelationshipsBoeUserSchema} * @memberof TenantRelationshipsSchema */ boeUser?: TenantRelationshipsBoeUserSchema; /** * * @type {TenantRelationshipsBoeCalendarSchema} * @memberof TenantRelationshipsSchema */ boeCalendar?: TenantRelationshipsBoeCalendarSchema; /** * * @type {TenantRelationshipsFeedbacksSchema} * @memberof TenantRelationshipsSchema */ feedbacks?: TenantRelationshipsFeedbacksSchema; /** * * @type {TenantRelationshipsFormsSchema} * @memberof TenantRelationshipsSchema */ forms?: TenantRelationshipsFormsSchema; } /** * Check if a given object implements the TenantRelationshipsSchema interface. */ export declare function instanceOfTenantRelationshipsSchema(value: object): value is TenantRelationshipsSchema; export declare function TenantRelationshipsSchemaFromJSON(json: any): TenantRelationshipsSchema; export declare function TenantRelationshipsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantRelationshipsSchema; export declare function TenantRelationshipsSchemaToJSON(json: any): TenantRelationshipsSchema; export declare function TenantRelationshipsSchemaToJSONTyped(value?: TenantRelationshipsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantRelationshipsSchema.d.ts.map