Merge pull request #174 from exciler/go

Fix variable init
This commit is contained in:
OpenXE-ERP 2025-02-06 11:07:19 +01:00 committed by GitHub
commit ec8b737390
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,9 +12,9 @@ class CreateShipmentResult
{ {
public bool $Success = false; public bool $Success = false;
public array $Errors = []; public array $Errors = [];
public ?string $Label; public ?string $Label = null;
public ?string $ExportDocuments; public ?string $ExportDocuments = null;
public ?string $TrackingNumber; public ?string $TrackingNumber = null;
public ?string $TrackingUrl; public ?string $TrackingUrl = null;
public ?string $AdditionalInfo; public ?string $AdditionalInfo = null;
} }