15 lines
399 B
Go
15 lines
399 B
Go
![]() |
package yandex
|
||
|
|
||
|
type Amount struct {
|
||
|
Value string `json:"value" bson:"value"`
|
||
|
Currency string `json:"currency" bson:"currency"`
|
||
|
}
|
||
|
|
||
|
type BankCardInformation struct {
|
||
|
Number string `json:"number"`
|
||
|
ExpiryYear string `json:"expiry_year"`
|
||
|
ExpiryMonth string `json:"expiry_month"`
|
||
|
CSC string `json:"csc,omitempty"`
|
||
|
CardHolderName string `json:"cardholder,omitempty"`
|
||
|
}
|