@hunteroi/discord-verification
    Preparing search index...

    Interface IUser

    Represents a user.

    IUser

    interface IUser {
        activatedCode?: null | string;
        activationTimestamp?: null | number;
        code?: null | string;
        data: any;
        nbCodeCalled: number;
        nbVerifyCalled: number;
        status: UserStatus;
        userid: string;
        username: string;
    }
    Index

    Properties

    activatedCode?: null | string

    The used code that verified the user.

    IUser

    activationTimestamp?: null | number

    The timestamp marking the activation of the user.

    IUser

    code?: null | string

    The generated code to verify that user.

    IUser

    data: any

    The data used to send the code. Could be an email, a phone number or any complex information. Type should match what is expected from the sender API.

    IUser

    nbCodeCalled: number

    The number of times the generation of a code for that user is initiated.

    IUser

    nbVerifyCalled: number

    The number of times the verification of a code for that user is initiated.

    IUser

    status: UserStatus

    The status of the user.

    IUser

    userid: string

    The user Discord ID.

    IUser

    username: string

    The user name.

    IUser