-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment_response.struct.go
57 lines (55 loc) · 2.08 KB
/
payment_response.struct.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package gogojudo
import (
"time"
)
type PaymentReceiptModel struct {
ReceiptID string `json:"receiptId"`
YourPaymentReference string `json:"yourPaymentReference"`
Type string `json:"type"`
CreatedAt time.Time `json:"createdAt"`
Result string `json:"result"`
Message string `json:"message"`
JudoID int `json:"judoId"`
MerchantName string `json:"merchantName"`
AppearsOnStatementAs string `json:"appearsOnStatementAs"`
OriginalAmount string `json:"originalAmount"`
NetAmount string `json:"netAmount"`
Amount string `json:"amount"`
Currency string `json:"currency"`
CardDetails struct {
CardLastfour string `json:"cardLastfour"`
EndDate string `json:"endDate"`
CardToken string `json:"cardToken"`
CardType int `json:"cardType"`
CardScheme string `json:"cardScheme"`
CardFunding string `json:"cardFunding"`
CardCategory string `json:"cardCategory"`
CardQualifier int `json:"cardQualifier"`
CardCountry string `json:"cardCountry"`
Bank string `json:"bank"`
} `json:"cardDetails"`
Consumer struct {
ConsumerToken string `json:"consumerToken"`
YourConsumerReference string `json:"yourConsumerReference"`
} `json:"consumer"`
RiskScore int `json:"riskScore"`
Risks struct {
PostCodeCheck string `json:"postCodeCheck"`
MerchantSuggestion string `json:"merchantSuggestion"`
MerchantStatistics struct {
} `json:"merchantStatistics"`
} `json:"risks"`
AcsURL string `json:"acsUrl,omitempty"`
MD string `json:"md,omitempty"`
PaReq string `json:"paReq,omitempty"`
TermURL string `json:"termUrl,omitempty"`
// 3D Secure
PaymentRequires3DSecure struct {
Result string `json:"result,omitempty"`
Message string `json:"message,omitempty"`
AcsURL string `json:"acsUrl,omitempty"`
MD string `json:"md,omitempty"`
PaReq string `json:"paReq,omitempty"`
TermURL string `json:"termUrl,omitempty"`
} `json:"paymentRequires3DSecure"`
}