11 lines
186 B
TypeScript
11 lines
186 B
TypeScript
export interface PublicReport {
|
|
created: string;
|
|
type: string;
|
|
}
|
|
|
|
export interface Communication {
|
|
created: string;
|
|
id: string;
|
|
public_report: PublicReport | null;
|
|
type: string;
|
|
}
|