AniChartUserResponse is an interface representing the response from an AniChart user query. It includes the user response, settings, and highlights.

interface AniChartUserResponse {
    highlights: string;
    settings: string;
    user: UserResponse;
}

Properties

highlights: string

highlights is a string representing the user's AniChart highlights.

settings: string

settings is a string representing the user's AniChart settings.

user is an instance of UserResponse representing the user's data.