|
3 | 3 | namespace Microsoft\BingAds\V13\AdInsight; |
4 | 4 |
|
5 | 5 | { |
6 | | - /** |
7 | | - * Defines a value set of currencies. |
8 | | - * @link https:/learn.microsoft.com/advertising/ad-insight-service/currency?view=bingads-13 Currency Value Set |
9 | | - * |
10 | | - * @used-by GetAudienceFullEstimationRequest |
11 | | - * @used-by GetAudienceFullEstimationResponse |
12 | | - */ |
13 | 6 | final class Currency |
14 | 7 | { |
15 | | - /** Unspecified currency. */ |
16 | 8 | const UnSpecify = 'UnSpecify'; |
17 | | - |
18 | | - /** The Algerian Dinar (DZD). */ |
19 | 9 | const AlgerianDinar = 'AlgerianDinar'; |
20 | | - |
21 | | - /** The Argentine Peso (ARS). */ |
22 | 10 | const ArgentinePeso = 'ArgentinePeso'; |
23 | | - |
24 | | - /** The Australian Dollar (AUD). */ |
25 | 11 | const AustralianDollar = 'AustralianDollar'; |
26 | | - |
27 | | - /** The Thai Baht (THB). */ |
28 | 12 | const Baht = 'Baht'; |
29 | | - |
30 | | - /** The Venezuelan Bolivar Fuerte (VEF). */ |
31 | 13 | const Bolivar = 'Bolivar'; |
32 | | - |
33 | | - /** The Brazilian Real (BRL). */ |
34 | 14 | const BrazilianReal = 'BrazilianReal'; |
35 | | - |
36 | | - /** The Canadian Dollar (CAD). */ |
37 | 15 | const CanadianDollar = 'CanadianDollar'; |
38 | | - |
39 | | - /** The Chilean Peso (CLP). */ |
40 | 16 | const ChileanPeso = 'ChileanPeso'; |
41 | | - |
42 | | - /** The Colombian Peso (COP). */ |
43 | 17 | const ColombianPeso = 'ColombianPeso'; |
44 | | - |
45 | | - /** The Czech Koruna (CZK). */ |
46 | 18 | const CzechKoruna = 'CzechKoruna'; |
47 | | - |
48 | | - /** The Danish Krone (DKK). */ |
49 | 19 | const DanishKrone = 'DanishKrone'; |
50 | | - |
51 | | - /** The Vietnamese Dong (VND). */ |
52 | 20 | const Dong = 'Dong'; |
53 | | - |
54 | | - /** The Egyptian Pound (EGP). */ |
55 | 21 | const EgyptianPound = 'EgyptianPound'; |
56 | | - |
57 | | - /** The Euro (EUR). */ |
58 | 22 | const EURO = 'EURO'; |
59 | | - |
60 | | - /** The Hungarian Forint (HUF). */ |
61 | 23 | const Forint = 'Forint'; |
62 | | - |
63 | | - /** The Hong Kong Dollar (HKD). */ |
64 | 24 | const HongKongDollar = 'HongKongDollar'; |
65 | | - |
66 | | - /** The Indian Rupee (INR). */ |
67 | 25 | const IndianRupee = 'IndianRupee'; |
68 | | - |
69 | | - /** The Japanese Yen (JPY). */ |
70 | 26 | const JapaneseYen = 'JapaneseYen'; |
71 | | - |
72 | | - /** The Lebanese Pound (LBP). */ |
73 | 27 | const LebanesePound = 'LebanesePound'; |
74 | | - |
75 | | - /** The Malaysian Ringgit (MYR). */ |
76 | 28 | const MalaysianRinggit = 'MalaysianRinggit'; |
77 | | - |
78 | | - /** The Mexican Peso (MXN). */ |
79 | 29 | const MexicanPeso = 'MexicanPeso'; |
80 | | - |
81 | | - /** The Moroccan Dirham (MAD). */ |
82 | 30 | const MoroccanDirham = 'MoroccanDirham'; |
83 | | - |
84 | | - /** The New Taiwan Dollar (TWD). */ |
85 | 31 | const NewTaiwanDollar = 'NewTaiwanDollar'; |
86 | | - |
87 | | - /** The New Zealand Dollar (NZD). */ |
88 | 32 | const NewZealandDollar = 'NewZealandDollar'; |
89 | | - |
90 | | - /** The Norwegian Krone (NOK). */ |
91 | 33 | const NorwegianKrone = 'NorwegianKrone'; |
92 | | - |
93 | | - /** The Peruvian Nuevo Sol (NOK). */ |
94 | 34 | const NuevoSol = 'NuevoSol'; |
95 | | - |
96 | | - /** The Philippine Peso (PHP). */ |
97 | 35 | const PhilippinePeso = 'PhilippinePeso'; |
98 | | - |
99 | | - /** The Qatari Rial (QAR). */ |
100 | 36 | const QatariRial = 'QatariRial'; |
101 | | - |
102 | | - /** The Indonesian Rupiah (IDR). */ |
103 | 37 | const Rupiah = 'Rupiah'; |
104 | | - |
105 | | - /** The Saudi Riyal (SAR). */ |
106 | 38 | const SaudiRiyal = 'SaudiRiyal'; |
107 | | - |
108 | | - /** The Singapore Dollar (SGD). */ |
109 | 39 | const SingaporeDollar = 'SingaporeDollar'; |
110 | | - |
111 | | - /** The South African Rand (ZAR). */ |
112 | 40 | const SouthAfricanRand = 'SouthAfricanRand'; |
113 | | - |
114 | | - /** The Swedish Krona (SEK). */ |
115 | 41 | const SwedishKrona = 'SwedishKrona'; |
116 | | - |
117 | | - /** The Swiss Franc (CHF). */ |
118 | 42 | const SwissFranc = 'SwissFranc'; |
119 | | - |
120 | | - /** The Turkish Lira (TRY). */ |
121 | 43 | const TurkishLira = 'TurkishLira'; |
122 | | - |
123 | | - /** The UK Pound (GBP). */ |
124 | 44 | const UKPound = 'UKPound'; |
125 | | - |
126 | | - /** The US Dollar USD */ |
127 | 45 | const USDollar = 'USDollar'; |
128 | | - |
129 | | - /** The South Korean Won (KRW). */ |
130 | 46 | const Won = 'Won'; |
131 | | - |
132 | | - /** The Chinese Yuan (CNY). */ |
133 | 47 | const YuanRenminbi = 'YuanRenminbi'; |
134 | | - |
135 | | - /** The Polish Zloty (PLN). */ |
136 | 48 | const PolishZloty = 'PolishZloty'; |
137 | | - |
138 | | - /** The UAE Dirham (AED). */ |
139 | 49 | const UAEDirham = 'UAEDirham'; |
140 | | - |
141 | | - /** The Israeli Sheqel (ILS). */ |
142 | 50 | const IsraeliSheqel = 'IsraeliSheqel'; |
143 | | - |
144 | | - /** The Nigerian Naira (NGN). */ |
145 | 51 | const NigerianNaira = 'NigerianNaira'; |
146 | 52 | } |
147 | 53 |
|
|
0 commit comments