13 lines
356 B
Go
13 lines
356 B
Go
package api
|
|
|
|
type CreatePaymentResponse struct {
|
|
Amount int `json:"Amount"`
|
|
ErrorCode string `json:"ErrorCode"`
|
|
OrderId string `json:"OrderId"`
|
|
PaymentId string `json:"PaymentId"`
|
|
PaymentURL string `json:"PaymentURL"`
|
|
Status string `json:"Status"`
|
|
Success bool `json:"Success"`
|
|
TerminalKey string `json:"TerminalKey"`
|
|
}
|