GetTransactionAttachmentPreSignedUrlRequest Example Usage import { GetTransactionAttachmentPreSignedUrlRequest } from "@midday-ai/sdk/models/operations"; let value: GetTransactionAttachmentPreSignedUrlRequest = { transactionId: "b3b7c1e2-4c2a-4e7a-9c1a-2b7c1e24c2a4", attachmentId: "a43dc3a5-6925-4d91-ac9c-4c1a34bdb388", download: true, }; Fields Field Type Required Description Example transactionId string ✔️ Unique identifier of the transaction b3b7c1e2-4c2a-4e7a-9c1a-2b7c1e24c2a4 attachmentId string ✔️ Unique identifier of the attachment to generate a pre-signed URL for a43dc3a5-6925-4d91-ac9c-4c1a34bdb388 download boolean ➖ Whether to force download the file. If true, the file will be downloaded. If false or omitted, the file will be displayed in the browser if possible. true