@retroachievements/api
Version:
A well-tested library that lets you get achievement, user, and game data from RetroAchievements.
26 lines (24 loc) • 570 B
text/typescript
export interface ResponseTicketEntity {
ID: string;
AchievementID: string;
AchievementTitle: string;
AchievementDesc: string;
Points: string;
BadgeName: string;
AchievementAuthor: string;
GameID: string;
ConsoleName: string;
GameTitle: string;
GameIcon: string;
ReportedAt: string;
ReportType: string;
ReportState: string;
Hardcore: "0" | "1" | null;
ReportNotes: string;
ReportedBy: string;
ResolvedAt: string | null;
ResolvedBy: string | null;
ReportStateDescription: string;
ReportTypeDescription: string;
URL?: string;
}