Skip to content

Commit

Permalink
add DATA omitempty tag
Browse files Browse the repository at this point in the history
  • Loading branch information
bamp94 committed May 31, 2021
1 parent 764b9ed commit 99306cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion init.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type InitRequest struct {
Language string `json:"Language,omitempty"` // Язык платежной формы: ru или en
Recurrent string `json:"Recurrent,omitempty"` // Y для регистрации автоплатежа. Можно использовать SetIsRecurrent(true)
CustomerKey string `json:"CustomerKey,omitempty"` // Идентификатор покупателя в системе продавца. Передается вместе с параметром CardId. См. метод GetCardList
Data map[string]string `json:"DATA"` // Дополнительные параметры платежа
Data map[string]string `json:"DATA,omitempty"` // Дополнительные параметры платежа
Receipt *Receipt `json:"Receipt,omitempty"` // Чек
RedirectDueDate Time `json:"RedirectDueDate,omitempty"` // Срок жизни ссылки
NotificationURL string `json:"NotificationURL,omitempty"` // Адрес для получения http нотификаций
Expand Down

0 comments on commit 99306cd

Please sign in to comment.