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 array $Errors = [];
public ?string $Label;
public ?string $ExportDocuments;
public ?string $TrackingNumber;
public ?string $TrackingUrl;
public ?string $AdditionalInfo;
public ?string $Label = null;
public ?string $ExportDocuments = null;
public ?string $TrackingNumber = null;
public ?string $TrackingUrl = null;
public ?string $AdditionalInfo = null;
}