1#![allow(unused_imports)]
2#![allow(clippy::too_many_arguments)]
3
4#[allow(unused)]
6pub mod marketplace_ids {
7 pub static CA: &str = "A2EUQ1WTGCTBG2";
9 pub static US: &str = "ATVPDKIKX0DER";
10 pub static MX: &str = "A1AM78C64UM0Y8";
11 pub static BR: &str = "A2Q3Y263D00KWC";
12 pub static IE: &str = "A28R8C7NBKEWEA";
14 pub static ES: &str = "A1RKKUPIHCS9HS";
15 pub static UK: &str = "A1F83G8C2ARO7P";
16 pub static FR: &str = "A13V1IB3VIYZZH";
17 pub static BE: &str = "AMEN7PMS3EDWL";
18 pub static NL: &str = "A1805IZSGTT6HS";
19 pub static DE: &str = "A1PA6795UKMFR9";
20 pub static IT: &str = "APJ6JRA9NG5V4";
21 pub static SE: &str = "A2NODRKZP88ZB9";
22 pub static ZA: &str = "AE08WJ6YKNBMC";
23 pub static PL: &str = "A1C3SOZRARQ6R3";
24 pub static EG: &str = "ARBP9OOSHTCHU";
25 pub static TR: &str = "A33AVAJ2PDY3EV";
26 pub static SA: &str = "A17E79C6D8DWNP";
27 pub static AE: &str = "A2VIGQ35RCS4UG";
28 pub static IN: &str = "A21TJRUUN4KGV";
29 pub static SG: &str = "A19VAU5U5O7RUS";
31 pub static AU: &str = "A39IBJ37TRP1C6";
32 pub static JP: &str = "A1VC38T7YXB528";
33}
34
35#[allow(unused)]
37pub mod locale {
38 pub static EN_US: &str = "en_US";
39 pub static EN_CA: &str = "en_CA";
40 pub static ES_MX: &str = "es_MX";
41 pub static PT_BR: &str = "pt_BR";
42 pub static EN_GB: &str = "en_GB";
43 pub static FR_FR: &str = "fr_FR";
44 pub static NL_NL: &str = "nl_NL";
45 pub static DE_DE: &str = "de_DE";
46 pub static IT_IT: &str = "it_IT";
47 pub static SV_SE: &str = "sv_SE";
48 pub static PL_PL: &str = "pl_PL";
49 pub static AR_EG: &str = "ar_EG";
50 pub static TR_TR: &str = "tr_TR";
51 pub static AR_SA: &str = "ar_SA";
52 pub static EN_IN: &str = "en_IN";
53 pub static EN_AU: &str = "en_AU";
54 pub static JA_JP: &str = "ja_JP";
55}
56
57pub mod apis;
58pub mod models;
59pub mod client;
60pub mod client_apis;