16 lines
332 B
TypeScript
16 lines
332 B
TypeScript
export interface ReportQuery {
|
|
accounts?: string[] | null;
|
|
ignore_self?: boolean | null;
|
|
start_date?: string | null;
|
|
end_date?: string | null;
|
|
min_amount?: number | null;
|
|
max_amount?: number | null;
|
|
}
|
|
|
|
export interface ReportSnapshot {
|
|
id: string;
|
|
snapshot_id: string;
|
|
created_at: string;
|
|
query?: ReportQuery;
|
|
}
|