-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.go
43 lines (29 loc) · 990 Bytes
/
common.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
package fasapay
//CurrencyCode type
type CurrencyCode string
//CurrencyCodeUSD const
const CurrencyCodeUSD CurrencyCode = "USD"
//CurrencyCodeUSD const
const CurrencyCodeIDR CurrencyCode = "IDR"
//TransactionFeeMode type
type TransactionFeeMode string
//TransactionFeeModeFiR const
const TransactionFeeModeFiR TransactionFeeMode = "FiR"
//TransactionFeeModeFiS const
const TransactionFeeModeFiS TransactionFeeMode = "FiS"
//TransactionStatus type
type TransactionStatus string
//TransactionStatusFinish const
const TransactionStatusFinish TransactionStatus = "FINISH"
//TransactionType type
type TransactionType string
//TransactionTypeTransfer const
const TransactionTypeTransfer = "transfer"
//TransactionTypeTopUp const
const TransactionTypeTopUp = "topup"
//TransactionTypeRedeem const
const TransactionTypeRedeem = "redeem"
//TransactionTypeExchange const
const TransactionTypeExchange = "exchange"
//TransactionTypeReceive const
const TransactionTypeReceive = "receive"