/** * Details for barcode blocks */ export interface BarcodeDetails { /** Indicates this is a barcode details object */ type: "barcode_details"; /** URL to the clipped/segmented barcode image. Only set if the option `imageClippingEnabled` in blockOptions.barcodes is `true`. */ imageUrl?: string; /** The decoded value of the barcode or QR code. Only set if the option `readingEnabled` in blockOptions.barcodes is `true`. */ decodedValue?: string; /** The format of the barcode (e.g., "QRCode", "Code128", "DataMatrix", "EAN13"). */ format?: string; }