28 lines
470 B
TypeScript
28 lines
470 B
TypeScript
export interface ProtestDetailViewData {
|
|
protestId: string;
|
|
leagueId: string;
|
|
status: string;
|
|
submittedAt: string;
|
|
incident: {
|
|
lap: number;
|
|
description: string;
|
|
};
|
|
protestingDriver: {
|
|
id: string;
|
|
name: string;
|
|
};
|
|
accusedDriver: {
|
|
id: string;
|
|
name: string;
|
|
};
|
|
race: {
|
|
id: string;
|
|
name: string;
|
|
scheduledAt: string;
|
|
};
|
|
penaltyTypes: Array<{
|
|
type: string;
|
|
label: string;
|
|
description: string;
|
|
}>;
|
|
} |