From b79317c8101a4578a8d5e98b1ebfad66576ea50d Mon Sep 17 00:00:00 2001 From: Ruslan Efanov Date: Thu, 29 Aug 2024 16:05:23 +0300 Subject: [PATCH] add field of currency in order --- client_test.go | 3 +++ types.go | 1 + 2 files changed, 4 insertions(+) diff --git a/client_test.go b/client_test.go index 21b0ff6..ae77d24 100644 --- a/client_test.go +++ b/client_test.go @@ -2021,6 +2021,7 @@ func TestClient_OrderChange(t *testing.T) { "slug": 1, "id": 1, "number": "1A", + "currency": "RUB", "orderMethod": "shopping-cart", "countryIso": "RU", "createdAt": "2020-07-14 11:44:43", @@ -2109,6 +2110,8 @@ func TestClient_OrderChange(t *testing.T) { t.Errorf("invalid order number: got %s want %s", cr.Order.Number, "1A") } + assert.Equal(t, "RUB", cr.Order.Currency) + f.ID = cr.ID f.CustomerComment = "test comment" diff --git a/types.go b/types.go index 21ff671..3e1e895 100644 --- a/types.go +++ b/types.go @@ -342,6 +342,7 @@ type Order struct { Payments OrderPayments `json:"payments,omitempty"` ApplyRound *bool `json:"applyRound,omitempty"` PrivilegeType string `json:"privilegeType,omitempty"` + Currency string `json:"currency,omitempty"` } // OrdersStatus type.