Interface AuthenticationCodeInfo

Information about the authentication code that was sent.

interface AuthenticationCodeInfo {
    @type: "authenticationCodeInfo";
    next_type: AuthenticationCodeType;
    phone_number: string;
    timeout: number;
    type: AuthenticationCodeType;
}

Properties

@type: "authenticationCodeInfo"

The way the next code will be sent to the user; may be null.

phone_number: string

A phone number that is being authenticated.

timeout: number

Timeout before the code can be re-sent, in seconds.

The way the code was sent to the user.