11 lines
213 B
TypeScript
11 lines
213 B
TypeScript
export interface SenderNameStatistics {
|
|
name: string;
|
|
first_timestamp: string;
|
|
last_timestamp: string;
|
|
count: number;
|
|
}
|
|
|
|
export interface SenderNameListResponse {
|
|
sender_names: SenderNameStatistics[];
|
|
}
|