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;
|
|
}
|