@grabjs/superapp-sdk
    Preparing search index...

    Type Alias VerifyEmailRequest

    VerifyEmailRequest: { email?: string; skipUserInput?: boolean }

    Request parameters for verifying the user's email.

    Type Declaration

    • Optionalemail?: string
    • OptionalskipUserInput?: boolean

    Both properties are optional. If email is provided and skipUserInput is true, the verify OTP bottom sheet will be triggered directly without user editing.

    {
    email: 'user@example.com',
    skipUserInput: true
    }