-
Notifications
You must be signed in to change notification settings - Fork 17
/
currency.go
142 lines (140 loc) · 2.97 KB
/
currency.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
package lago
type Currency string
const (
AED Currency = "AED"
AFN Currency = "AFN"
ALL Currency = "ALL"
AMD Currency = "AMD"
ANG Currency = "ANG"
AOA Currency = "AOA"
ARS Currency = "ARS"
AUD Currency = "AUD"
AWG Currency = "AWG"
AZN Currency = "AZN"
BAM Currency = "BAM"
BBD Currency = "BBD"
BDT Currency = "BDT"
BGN Currency = "BGN"
BIF Currency = "BIF"
BMD Currency = "BMD"
BND Currency = "BND"
BOB Currency = "BOB"
BRL Currency = "BRL"
BSD Currency = "BSD"
BWP Currency = "BWP"
BYN Currency = "BYN"
BZD Currency = "BZD"
CAD Currency = "CAD"
CDF Currency = "CDF"
CHF Currency = "CHF"
CLP Currency = "CLP"
CNY Currency = "CNY"
COP Currency = "COP"
CRC Currency = "CRC"
CVE Currency = "CVE"
CZK Currency = "CZK"
DJF Currency = "DJF"
DKK Currency = "DKK"
DOP Currency = "DOP"
DZD Currency = "DZD"
EGP Currency = "EGP"
ETB Currency = "ETB"
EUR Currency = "EUR"
FJD Currency = "FJD"
FKP Currency = "FKP"
GBP Currency = "GBP"
GEL Currency = "GEL"
GIP Currency = "GIP"
GMD Currency = "GMD"
GNF Currency = "GNF"
GTQ Currency = "GTQ"
GYD Currency = "GYD"
HKD Currency = "HKD"
HNL Currency = "HNL"
HRK Currency = "HRK"
HTG Currency = "HTG"
HUF Currency = "HUF"
IDR Currency = "IDR"
ILS Currency = "ILS"
INR Currency = "INR"
ISK Currency = "ISK"
JMD Currency = "JMD"
JPY Currency = "JPY"
KES Currency = "KES"
KGS Currency = "KGS"
KHR Currency = "KHR"
KMF Currency = "KMF"
KRW Currency = "KRW"
KYD Currency = "KYD"
KZT Currency = "KZT"
LAK Currency = "LAK"
LBP Currency = "LBP"
LKR Currency = "LKR"
LRD Currency = "LRD"
LSL Currency = "LSL"
MAD Currency = "MAD"
MDL Currency = "MDL"
MGA Currency = "MGA"
MKD Currency = "MKD"
MMK Currency = "MMK"
MNT Currency = "MNT"
MOP Currency = "MOP"
MRO Currency = "MRO"
MUR Currency = "MUR"
MVR Currency = "MVR"
MWK Currency = "MWK"
MXN Currency = "MXN"
MYR Currency = "MYR"
MZN Currency = "MZN"
NAD Currency = "NAD"
NGN Currency = "NGN"
NIO Currency = "NIO"
NOK Currency = "NOK"
NPR Currency = "NPR"
NZD Currency = "NZD"
PAB Currency = "PAB"
PEN Currency = "PEN"
PGK Currency = "PGK"
PHP Currency = "PHP"
PKR Currency = "PKR"
PLN Currency = "PLN"
PYG Currency = "PYG"
QAR Currency = "QAR"
RON Currency = "RON"
RSD Currency = "RSD"
RUB Currency = "RUB"
RWF Currency = "RWF"
SAR Currency = "SAR"
SBD Currency = "SBD"
SCR Currency = "SCR"
SEK Currency = "SEK"
SGD Currency = "SGD"
SHP Currency = "SHP"
SLL Currency = "SLL"
SOS Currency = "SOS"
SRD Currency = "SRD"
STD Currency = "STD"
SZL Currency = "SZL"
THB Currency = "THB"
TJS Currency = "TJS"
TOP Currency = "TOP"
TRY Currency = "TRY"
TTD Currency = "TTD"
TWD Currency = "TWD"
TZS Currency = "TZS"
UAH Currency = "UAH"
UGX Currency = "UGX"
USD Currency = "USD"
UYU Currency = "UYU"
UZS Currency = "UZS"
VND Currency = "VND"
VUV Currency = "VUV"
WST Currency = "WST"
XAF Currency = "XAF"
XCD Currency = "XCD"
XOF Currency = "XOF"
XPF Currency = "XPF"
YER Currency = "YER"
ZAR Currency = "ZAR"
ZMW Currency = "ZMW"
)