Interface IGenshinDiaryHistory

Interface representing the history of a Genshin diary.

interface IGenshinDiaryHistory {
    action: string;
    action_id: number;
    num: number;
    time: string;
}

Properties

action: string

The name of the action.

action_id: number

The ID of the action.

num: number

The number of times the action was performed.

time: string

The time the action was performed.