import { SsoSamlAssertionContent, GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link IdpInitiatedSamlSsoSession} for the original type. */ export type CreateIdpInitiatedSamlSsoSession = { tenantId?: string; /** The globally unique identifier of the assertion record. */ id: string; /** The identifier of the SAML SSO connector. */ connectorId: string; /** The SAML assertion. */ assertionContent?: SsoSamlAssertionContent; createdAt?: number; /** The expiration time of the assertion. */ expiresAt: number; }; export type IdpInitiatedSamlSsoSession = { tenantId: string; /** The globally unique identifier of the assertion record. */ id: string; /** The identifier of the SAML SSO connector. */ connectorId: string; /** The SAML assertion. */ assertionContent: SsoSamlAssertionContent; createdAt: number; /** The expiration time of the assertion. */ expiresAt: number; }; export type IdpInitiatedSamlSsoSessionKeys = 'tenantId' | 'id' | 'connectorId' | 'assertionContent' | 'createdAt' | 'expiresAt'; export declare const IdpInitiatedSamlSsoSessions: GeneratedSchema;