Interface IDailyInfo

Interface representing a daily information .

interface IDailyInfo {
    first_bind: boolean;
    is_sign: boolean;
    is_sub: boolean;
    month_last_day: boolean;
    region: string;
    short_sign_day: number;
    sign_cnt_missed: number;
    today: string;
    total_sign_day: number;
}

Properties

first_bind: boolean

Whether this is the user's first time signing in.

is_sign: boolean

Whether the user has signed in today.

is_sub: boolean

Whether the user has subscribed to the game.

month_last_day: boolean

Whether today is the last day of the current month.

region: string

The region of the user's game account.

short_sign_day: number
sign_cnt_missed: number
today: string

The current date in YYYY-MM-DD format.

total_sign_day: number

The total number of days the user has signed in.