Update December 24, 2024 (#131)

This commit is contained in:
Kirill
2025-01-23 01:07:04 +03:00
committed by GitHub
parent c38e9f19a9
commit 804a4f3c2b
2 changed files with 17 additions and 10 deletions

View File

@@ -923,3 +923,13 @@ const (
// awaiting shipping
VisualStatusWaitingShipment VisualStatus = "WaitingShipment"
)
type VAT string
const (
VAT0 VAT = "0"
VAT005 VAT = "0.05"
VAT007 VAT = "0.07"
VAT01 VAT = "0.1"
VAT02 VAT = "0.2"
)