Interface MfaVoiceEnrollmentMembers

Interface describing the members of the Mfa Voice Enrollment screen.

interface MfaVoiceEnrollmentMembers {
    branding: BrandingMembers;
    client: ClientMembers;
    organization: OrganizationMembers;
    prompt: PromptMembers;
    screen: ScreenMembers;
    tenant: TenantMembers;
    transaction: TransactionMembers;
    untrustedData: UntrustedDataMembers;
    user: UserMembers;
    continue(payload?: {
        phone: string;
    } & CustomOptions): Promise<void>;
    selectPhoneCountryCode(payload?: CustomOptions): Promise<void>;
    tryAnotherMethod(payload?: CustomOptions): Promise<void>;
}

Hierarchy

  • BaseMembers
    • MfaVoiceEnrollmentMembers

Implemented by

Properties

branding: BrandingMembers
organization: OrganizationMembers
transaction: TransactionMembers
untrustedData: UntrustedDataMembers

Methods