From 788ffb9af83aafff4fd5e19faa0a6d9574edc8f0 Mon Sep 17 00:00:00 2001 From: Igor Kulkov Date: Sat, 29 Jul 2023 10:38:24 +0300 Subject: [PATCH] fix --- dto.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dto.go b/dto.go index 12f29ba..9a527ee 100644 --- a/dto.go +++ b/dto.go @@ -254,10 +254,10 @@ func (in ReceiptIn) path() string { return "/v1/receipt" } func (in ReceiptIn) out() (_ ReceiptOut) { return } type Brand struct { - Description string `json:"description"` - ID int64 `json:"id"` - Image string `json:"image"` - Name string `json:"name"` + Description string `json:"description"` + Id int64 `json:"id"` + Image *string `json:"image"` + Name string `json:"name"` } type Receipt struct {