/** * 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 { TenantSsoAttributesSchema } from './TenantSsoAttributesSchema'; /** * * @export * @interface TenantSsoSchemaData */ export interface TenantSsoSchemaData { /** * * @type {TenantSsoSchemaDataTypeEnum} * @memberof TenantSsoSchemaData */ type?: TenantSsoSchemaDataTypeEnum; /** * The tenant's identifier * @type {string} * @memberof TenantSsoSchemaData */ id?: string; /** * * @type {TenantSsoAttributesSchema} * @memberof TenantSsoSchemaData */ attributes?: TenantSsoAttributesSchema; } /** * @export */ export declare const TenantSsoSchemaDataTypeEnum: { readonly TenantSso: "tenant-sso"; }; export type TenantSsoSchemaDataTypeEnum = typeof TenantSsoSchemaDataTypeEnum[keyof typeof TenantSsoSchemaDataTypeEnum]; /** * Check if a given object implements the TenantSsoSchemaData interface. */ export declare function instanceOfTenantSsoSchemaData(value: object): value is TenantSsoSchemaData; export declare function TenantSsoSchemaDataFromJSON(json: any): TenantSsoSchemaData; export declare function TenantSsoSchemaDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantSsoSchemaData; export declare function TenantSsoSchemaDataToJSON(json: any): TenantSsoSchemaData; export declare function TenantSsoSchemaDataToJSONTyped(value?: TenantSsoSchemaData | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TenantSsoSchemaData.d.ts.map