React Native Firebase
    Preparing search index...

    Result of a successful phone number verification, containing the verified phone number and a JWT token for server-side validation.

    Mirrors the native com.google.firebase.pnv.VerifiedPhoneNumberTokenResult class. Returned by getVerifiedPhoneNumber() and exchangeCredentialResponseForPhoneNumber().

    interface VerifiedPhoneNumberTokenResult {
        claims: Record<string, unknown> | null;
        expirationTimestamp: number;
        issuedAtTimestamp: number;
        nonce: string | null;
        phoneNumber: string;
        token: string;
    }
    Index

    Properties

    claims: Record<string, unknown> | null

    All JWT claims as a key-value map, or null if unavailable.

    expirationTimestamp: number

    Token expiration time as Unix epoch seconds.

    issuedAtTimestamp: number

    Token issued-at time as Unix epoch seconds.

    nonce: string | null

    The nonce from the JWT payload, or null if not present.

    phoneNumber: string

    The verified phone number in E.164 format.

    token: string

    The raw JWT token string for server-side validation.