mirror of
https://github.com/Receipt-Wrangler/receipt-wrangler-api.git
synced 2026-01-27 13:49:07 -06:00
17 lines
778 B
Go
17 lines
778 B
Go
package commands
|
|
|
|
type ReceiptProcessingMetadata struct {
|
|
ReceiptProcessingSettingsIdRan uint
|
|
DidReceiptProcessingSettingsSucceed bool
|
|
FallbackReceiptProcessingSettingsIdRan uint
|
|
DidFallbackReceiptProcessingSettingsSucceed bool
|
|
RawResponse string
|
|
FallbackRawResponse string
|
|
PromptSystemTaskCommand UpsertSystemTaskCommand
|
|
FallbackPromptSystemTaskCommand UpsertSystemTaskCommand
|
|
OcrSystemTaskCommand UpsertSystemTaskCommand
|
|
ChatCompletionSystemTaskCommand UpsertSystemTaskCommand
|
|
FallbackOcrSystemTaskCommand UpsertSystemTaskCommand
|
|
FallbackChatCompletionSystemTaskCommand UpsertSystemTaskCommand
|
|
}
|