-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenum.go
43 lines (34 loc) · 961 Bytes
/
enum.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 fonbnk
type (
Country string
Network string
OffRampType string
OffRampCurrency string
OffRampAsset string
OffRampPaymentType string
KYCStatus string
KYCIDType string
)
const (
KENYA Country = "KE"
UGANDA Country = "UG"
CELO Network = "CELO"
BANK OffRampType = "bank"
AIRTIME OffRampType = "airtime"
MOBILE_MONEY OffRampType = "mobile_money"
PAYBILL OffRampType = "paybill"
LOCAL OffRampCurrency = "local"
USD OffRampCurrency = "usd"
CUSD OffRampAsset = "CUSD"
USDT OffRampAsset = "USDT"
USDC OffRampAsset = "USDC"
CKES OffRampAsset = "CKES"
CRYPTO OffRampPaymentType = "CRYPTO_WALLET"
INITIATED KYCStatus = "initiated"
APPROVED KYCStatus = "approved"
REJECTED KYCStatus = "rejected"
INVALID KYCStatus = "invalid"
KE_NATIONAL_ID KYCIDType = "NATIONAL_ID"
KE_PASSPORT KYCIDType = "PASSPORT"
KE_ALIEN_CARD KYCIDType = "ALIEN_CARD"
)