Interface IDailyReward

An object describing a daily reward.

interface IDailyReward {
    award: IDailyAwardItem;
    biz: string;
    month: number;
    now: string;
    resign: boolean;
}

Properties

Properties

The award item associated with the reward.

biz: string

The business code of the reward.

month: number

The month number in which the reward is available.

now: string

The current date in string format.

resign: boolean

Whether the user can resign for the reward.