interface TransactionMembersOnSignupId {
    connectionStrategy: string;
    countryCode: null | string;
    countryPrefix: null | string;
    hasAlternateConnections: boolean;
    hasCurrentConnection: boolean;
    hasErrors: boolean;
    isPasskeyEnabled: boolean;
    locale: string;
    state: string;
    getAlternateConnections(): null | (Connection | EnterpriseConnection)[];
    getCurrentConnection(): Connection;
    getErrors(): null | Error[];
    getOptionalIdentifiers(): null | ("username" | "email" | "phone")[];
    getRequiredIdentifiers(): null | ("username" | "email" | "phone")[];
    getUsernamePolicy(): null | UsernamePolicy;
}

Hierarchy (view full)

Properties

connectionStrategy: string
countryCode: null | string
countryPrefix: null | string
hasAlternateConnections: boolean
hasCurrentConnection: boolean
hasErrors: boolean
isPasskeyEnabled: boolean
locale: string
state: string

Methods