@leancodepl/kratos
Version:
Headless React components library for building Ory Kratos authentication flows
17 lines • 961 B
TypeScript
import { UpdateVerificationFlowWithCodeMethod } from './UpdateVerificationFlowWithCodeMethod';
import { UpdateVerificationFlowWithLinkMethod } from './UpdateVerificationFlowWithLinkMethod';
/**
* @type UpdateVerificationFlowBody
* Update Verification Flow Request Body
* @export
*/
export type UpdateVerificationFlowBody = {
method: 'code';
} & UpdateVerificationFlowWithCodeMethod | {
method: 'link';
} & UpdateVerificationFlowWithLinkMethod;
export declare function UpdateVerificationFlowBodyFromJSON(json: any): UpdateVerificationFlowBody;
export declare function UpdateVerificationFlowBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateVerificationFlowBody;
export declare function UpdateVerificationFlowBodyToJSON(json: any): any;
export declare function UpdateVerificationFlowBodyToJSONTyped(value?: UpdateVerificationFlowBody | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=UpdateVerificationFlowBody.d.ts.map