Files
ezbookkeeping/src/models/large_language_model.ts
T

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