PhoneAuthCredential class

Representa as credenciais retornadas por PhoneAuthProvider.

Assinatura:

export declare class PhoneAuthCredential extends AuthCredential 

Estende: AuthCredential

Métodos

Método Modificadores Descrição
fromJSON(json) (link em inglês) static Gera uma credencial de telefone com base em um objeto simples ou em uma string JSON.
toJSON() (link em inglês) Retorna uma representação serializável do JSON desse objeto.

PhoneAuthCredential.fromJSON()

Gera uma credencial de telefone com base em um objeto simples ou em uma string JSON.

Assinatura:

static fromJSON(json: object | string): PhoneAuthCredential | null;

Parâmetros

Parâmetro Tipo Descrição
json objeto | corda

Retorna:

PhoneAuthCredential | nulo

PhoneAuthCredential.toJSON()

Retorna uma representação serializável do JSON desse objeto.

Assinatura:

toJSON(): object;

Retorna:

objeto

uma representação serializável do JSON desse objeto.