From 4085a88485821e5f9f5ec5e9396c6a8c95bbbd40 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 20 Jul 2026 10:51:30 +0200 Subject: [PATCH] Update XML docs for `raw` param in SwissQrCodeController Removed detailed description of the `raw` parameter in XML documentation for two methods in `SwissQrCodeController`. Updated `` tag to simplify the explanation by removing conditional details based on the `raw` parameter. These changes affect methods handling multipart/form-data PDF input and Base64 JSON input. --- DocumentOperator.API/Controllers/SwissQrCodeController.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DocumentOperator.API/Controllers/SwissQrCodeController.cs b/DocumentOperator.API/Controllers/SwissQrCodeController.cs index dee4adc..3756ded 100644 --- a/DocumentOperator.API/Controllers/SwissQrCodeController.cs +++ b/DocumentOperator.API/Controllers/SwissQrCodeController.cs @@ -17,9 +17,9 @@ public class SwissQrCodeController(IMediator Mediator) : ControllerBase /// Extracts Swiss QR Code from the last page of a PDF document (multipart/form-data) /// /// PDF file containing Swiss QR Code - /// If true, returns raw QR code text lines as string array; if false, returns parsed Bill object (default: false) + /// /// Cancellation token - /// Swiss QR Code data (IBAN, amount, creditor, debtor, reference, etc.) or raw text lines based on 'raw' parameter + /// Swiss QR Code data (IBAN, amount, creditor, debtor, reference, etc.) /// Swiss QR Code extracted successfully /// Invalid PDF or file format /// No Swiss QR Code found on the last page @@ -62,9 +62,9 @@ public class SwissQrCodeController(IMediator Mediator) : ControllerBase /// Extracts Swiss QR Code from the last page of a PDF document (Base64 JSON) /// /// References array + PDF as Base64 string - /// If true, returns raw QR code text lines as string array; if false, returns parsed Bill object (default: false) + /// /// Cancellation token - /// Swiss QR Code data (IBAN, amount, creditor, debtor, reference, etc.) or raw text lines based on 'raw' parameter + /// Swiss QR Code data (IBAN, amount, creditor, debtor, reference, etc.) /// Swiss QR Code extracted successfully /// Invalid PDF or Base64 format /// No Swiss QR Code found on the last page