Interface IGenshinDiaryDetail

Interface representing detailed information for a Genshin diary.

interface IGenshinDiaryDetail {
    current_page: number;
    data_month: number;
    list: IGenshinDiaryHistory[];
    nickname: string;
    optional_month: number[];
    region: string;
    uid: number;
}

Hierarchy (view full)

Properties

current_page: number

The current page of the diary.

data_month: number

The current month's data for the diary.

An array of history objects.

nickname: string

The nickname associated with the diary.

optional_month: number[]

An array of optional months for the diary.

region: string

The region of the diary.

uid: number

The unique identifier of the diary.