TagoIO SDK for JavaScript and TypeScript
    Preparing search index...

    Interface AccountInfo

    interface AccountInfo {
        active: boolean;
        blocked: boolean;
        company?: string;
        created_at: Date;
        developer?: boolean;
        email: string;
        id: string;
        language: string;
        last_login: Date;
        name: string;
        newsletter?: boolean;
        options: {
            decimal_separator: string;
            last_whats_new: Date;
            thousand_separator: string;
            user_view_welcome: boolean;
        };
        otp?: { authenticator: boolean; email: boolean; sms: boolean };
        phone: string;
        plan: string;
        send_invoice: boolean;
        stripe_id: string;
        timezone: string;
        type: string;
        updated_at: Date;
    }

    Hierarchy

    Index

    Properties

    active: boolean
    blocked: boolean
    company?: string

    Company of the account

    created_at: Date
    developer?: boolean
    email: string

    Email of the account

    id: string
    language: string

    language set e.g "en-us"

    last_login: Date
    name: string

    Name of the account

    newsletter?: boolean

    Set true if wanna receive newsletter

    options: {
        decimal_separator: string;
        last_whats_new: Date;
        thousand_separator: string;
        user_view_welcome: boolean;
    }

    Type declaration

    • decimal_separator: string

      How decimal values are separated

    • last_whats_new: Date
    • thousand_separator: string
    • user_view_welcome: boolean
    otp?: { authenticator: boolean; email: boolean; sms: boolean }

    One-Time Password (OTP) settings

    phone: string
    plan: string

    Plan of the account e.g "free" | "starter" | "scale"

    send_invoice: boolean
    stripe_id: string
    timezone: string

    Timezone of the account

    type: string

    Type of the account e.g "user"

    updated_at: Date