@leancodepl/kratos
Version:
Headless React components library for building Ory Kratos authentication flows
23 lines • 1.14 kB
TypeScript
import { IdentityWithCredentialsSamlConfig } from './IdentityWithCredentialsSamlConfig';
/**
* Payload to import SAML credentials
* @export
* @interface IdentityWithCredentialsSaml
*/
export interface IdentityWithCredentialsSaml {
/**
*
* @type {IdentityWithCredentialsSamlConfig}
* @memberof IdentityWithCredentialsSaml
*/
config?: IdentityWithCredentialsSamlConfig;
}
/**
* Check if a given object implements the IdentityWithCredentialsSaml interface.
*/
export declare function instanceOfIdentityWithCredentialsSaml(value: object): value is IdentityWithCredentialsSaml;
export declare function IdentityWithCredentialsSamlFromJSON(json: any): IdentityWithCredentialsSaml;
export declare function IdentityWithCredentialsSamlFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdentityWithCredentialsSaml;
export declare function IdentityWithCredentialsSamlToJSON(json: any): IdentityWithCredentialsSaml;
export declare function IdentityWithCredentialsSamlToJSONTyped(value?: IdentityWithCredentialsSaml | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=IdentityWithCredentialsSaml.d.ts.map