/** * 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 { UpdateTenantSsoRequestData } from './UpdateTenantSsoRequestData'; /** * * @export * @interface UpdateTenantSsoRequest */ export interface UpdateTenantSsoRequest { /** * * @type {UpdateTenantSsoRequestData} * @memberof UpdateTenantSsoRequest */ data?: UpdateTenantSsoRequestData; } /** * Check if a given object implements the UpdateTenantSsoRequest interface. */ export declare function instanceOfUpdateTenantSsoRequest(value: object): value is UpdateTenantSsoRequest; export declare function UpdateTenantSsoRequestFromJSON(json: any): UpdateTenantSsoRequest; export declare function UpdateTenantSsoRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateTenantSsoRequest; export declare function UpdateTenantSsoRequestToJSON(json: any): UpdateTenantSsoRequest; export declare function UpdateTenantSsoRequestToJSONTyped(value?: UpdateTenantSsoRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UpdateTenantSsoRequest.d.ts.map