You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upgrade OpenAPI generator to 7.13.0 and enhance API models
Migrates OpenAPI generator version from 6.4.0 to 7.13.0, introducing
new API response models and updates to existing ones for improved
functionality and compatibility. Adds support for additional
response types, enhances documentation, and ensures proper type
annotations. Includes a new `FormDataProcessor` class for handling
form data preparation and file uploads.
Also updates `.vscode` settings for customized IDE appearance and
improves PHP doc generation by addressing date formatting issues.
Copy file name to clipboardExpand all lines: docs/Api/GetFxRatesApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ $apiInstance = new \VitexSoftware\Raiffeisenbank\PremiumAPI\GetFxRatesApi(
30
30
);
31
31
$xRequestId = 'xRequestId_example'; // string | Unique request id provided by consumer application for reference and auditing.
32
32
$currencyCode = 'currencyCode_example'; // string | The foreign currency code in ISO-4217 format.
33
-
$date = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | The effective date for which the FX rates are requested. Will default to **now** when not specified.
33
+
$date = new \DateTime('2013-10-20T19:20:30+01:00'); // \DateTime | The effective date for which the FX rates are requested. Will default to **now** when not specified.
Copy file name to clipboardExpand all lines: docs/Api/GetFxRatesListApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ $apiInstance = new \VitexSoftware\Raiffeisenbank\PremiumAPI\GetFxRatesListApi(
29
29
new \VitexSoftware\Raiffeisenbank\ApiClient(['clientpubip'=> \VitexSoftware\Raiffeisenbank\ApiClient::getPublicIP() ,'debug'=>true])
30
30
);
31
31
$xRequestId = 'xRequestId_example'; // string | Unique request id provided by consumer application for reference and auditing.
32
-
$date = new \DateTime("2013-10-20T19:20:30+01:00"); // \DateTime | The effective date for which the FX rates list is requested. Will default to **now** when not specified.
32
+
$date = new \DateTime('2013-10-20T19:20:30+01:00'); // \DateTime | The effective date for which the FX rates list is requested. Will default to **now** when not specified.
0 commit comments