/** * 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 { TenantSsoSchemaData } from './TenantSsoSchemaData'; /** * * @export * @interface TenantSsoSchema */ export interface TenantSsoSchema { /** * * @type {TenantSsoSchemaData} * @memberof TenantSsoSchema */ data?: TenantSsoSchemaData; } /** * Check if a given object implements the TenantSsoSchema interface. */ export declare function instanceOfTenantSsoSchema(value: object): value is TenantSsoSchema; export declare function TenantSsoSchemaFromJSON(json: any): TenantSsoSchema; export declare function TenantSsoSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantSsoSchema; export declare function TenantSsoSchemaToJSON(json: any): TenantSsoSchema; export declare function TenantSsoSchemaToJSONTyped(value?: TenantSsoSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantSsoSchema.d.ts.map