/** * 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 { ConfigureTenantSsoRequestData } from './ConfigureTenantSsoRequestData'; /** * * @export * @interface ConfigureTenantSsoRequest */ export interface ConfigureTenantSsoRequest { /** * * @type {ConfigureTenantSsoRequestData} * @memberof ConfigureTenantSsoRequest */ data?: ConfigureTenantSsoRequestData; } /** * Check if a given object implements the ConfigureTenantSsoRequest interface. */ export declare function instanceOfConfigureTenantSsoRequest(value: object): value is ConfigureTenantSsoRequest; export declare function ConfigureTenantSsoRequestFromJSON(json: any): ConfigureTenantSsoRequest; export declare function ConfigureTenantSsoRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConfigureTenantSsoRequest; export declare function ConfigureTenantSsoRequestToJSON(json: any): ConfigureTenantSsoRequest; export declare function ConfigureTenantSsoRequestToJSONTyped(value?: ConfigureTenantSsoRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ConfigureTenantSsoRequest.d.ts.map