paypal_rust/resources/enums/
mod.rs

1pub mod authorization_status_reason;
2pub mod avs_code;
3pub mod capture_status;
4pub mod capture_status_reason;
5pub mod card_type;
6pub mod category;
7pub mod country_codes;
8pub mod currency_code;
9pub mod cvv_code;
10pub mod disembursement_mode;
11pub mod dispute_category;
12pub mod http_method;
13pub mod landing_page;
14pub mod network;
15pub mod op;
16pub mod order_intent;
17pub mod order_status;
18pub mod payee_preferred;
19pub mod payment_card_type;
20pub mod payment_initiator;
21pub mod payment_status;
22pub mod payment_type;
23pub mod phone_type;
24pub mod processing_instruction;
25pub mod refund_status;
26pub mod refund_status_reason;
27pub mod response_code;
28pub mod seller_protection_status;
29pub mod shipping_preference;
30pub mod shipping_type;
31pub mod standard_entry_class_code;
32pub mod tax_id_type;
33pub mod token_type;
34pub mod usage;
35pub mod user_action;
36pub mod verification_status;
37
38#[rustfmt::skip]
39pub use {
40    self::{
41        authorization_status_reason::*,
42        avs_code::*,
43        capture_status::*,
44        capture_status_reason::*,
45        card_type::*,
46        category::*,
47        country_codes::*,
48        currency_code::*,
49        cvv_code::*,
50        disembursement_mode::*,
51        dispute_category::*,
52        http_method::*,
53        landing_page::*,
54        network::*,
55        op::*,
56        order_intent::*,
57        order_status::*,
58        payee_preferred::*,
59        payment_card_type::*,
60        payment_initiator::*,
61        payment_status::*,
62        payment_type::*,
63        phone_type::*,
64        processing_instruction::*,
65        refund_status::*,
66        refund_status_reason::*,
67        response_code::*,
68        seller_protection_status::*,
69        shipping_preference::*,
70        shipping_type::*,
71        standard_entry_class_code::*,
72        tax_id_type::*,
73        token_type::*,
74        usage::*,
75        user_action::*,
76        verification_status::*,
77    },
78};