Interface AuthenticationCodeTypeFirebaseIos

A digit-only authentication code is delivered via Firebase Authentication to the official iOS application. Subtype of AuthenticationCodeType.

interface AuthenticationCodeTypeFirebaseIos {
    @type: "authenticationCodeTypeFirebaseIos";
    length: number;
    push_timeout: number;
    receipt: string;
}

Properties

@type: "authenticationCodeTypeFirebaseIos"
length: number

Length of the code.

push_timeout: number

Time after the next authentication method is expected to be used if verification push notification isn't received, in seconds.

receipt: string

Receipt of successful application token validation to compare with receipt from push notification.