Interface IDailyClaim

Interface representing the response data for claiming daily rewards.

interface IDailyClaim {
    code: number;
    info: IDailyInfo;
    reward: null | IDailyReward;
    status: string;
}

Properties

Properties

code: number

The response code for the claim request.

Information about the user's daily claim status.

reward: null | IDailyReward

The claimed reward, if any.

status: string

The status of the claim request.