mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 23:17:33 +08:00
12 lines
364 B
TypeScript
12 lines
364 B
TypeScript
export interface RecognizedReceiptImageResponse {
|
|
readonly type: number;
|
|
readonly time?: number;
|
|
readonly categoryId?: string;
|
|
readonly sourceAccountId?: string;
|
|
readonly destinationAccountId?: string;
|
|
readonly sourceAmount?: number;
|
|
readonly destinationAmount?: number;
|
|
readonly tagIds?: string[];
|
|
readonly comment?: string;
|
|
}
|