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
pub mod address;
pub mod address_details;
pub mod address_portable;
pub mod amount_breakdown;
pub mod amount_with_breakdown;
pub mod authorization_status_details;
pub mod authorization_with_additional_data;
pub mod capture;
pub mod capture_status_details;
pub mod card_address_portable;
pub mod card_response;
pub mod date_no_time;
pub mod email;
pub mod enums;
pub mod exchange_rate;
pub mod item;
pub mod link_description;
pub mod money;
pub mod name;
pub mod net_amount_breakdown;
pub mod network_transaction_reference;
pub mod order;
pub mod order_application_context;
pub mod patch;
pub mod payee;
pub mod payee_base;
pub mod payer;
pub mod payment_collection;
pub mod payment_instruction;
pub mod payment_method;
pub mod payment_source;
pub mod payment_source_response;
pub mod payments;
pub mod paypal_payment_source_response;
pub mod phone_with_type;
pub mod phone_with_type_phone;
pub mod platform_fee;
pub mod processor_response;
pub mod purchase_unit;
pub mod purchase_unit_request;
pub mod refund;
pub mod refund_status_details;
pub mod seller_payable_breakdown;
pub mod seller_protection;
pub mod seller_recievable_breakdown;
pub mod shipping_detail;
pub mod shipping_detail_address_portable;
pub mod shipping_detail_name;
pub mod shipping_option;
pub mod stored_payment_source;
pub mod tax_info;
pub mod token;
pub mod user_info;
pub mod webhooks;

#[rustfmt::skip]
pub use {
    enums::*,
    address::*,
    address_details::*,
    address_portable::*,
    amount_breakdown::*,
    amount_with_breakdown::*,
    authorization_status_details::*,
    authorization_with_additional_data::*,
    capture::*,
    capture_status_details::*,
    card_address_portable::*,
    card_response::*,
    date_no_time::*,
    email::*,
    enums::*,
    exchange_rate::*,
    item::*,
    link_description::*,
    money::*,
    name::*,
    net_amount_breakdown::*,
    network_transaction_reference::*,
    order::*,
    order_application_context::*,
    patch::*,
    payee::*,
    payee_base::*,
    payer::*,
    payment_collection::*,
    payment_instruction::*,
    payment_method::*,
    payment_source::*,
    payment_source_response::*,
    payments::*,
    paypal_payment_source_response::*,
    phone_with_type::*,
    phone_with_type_phone::*,
    platform_fee::*,
    processor_response::*,
    purchase_unit::*,
    purchase_unit_request::*,
    refund::*,
    refund_status_details::*,
    seller_payable_breakdown::*,
    seller_protection::*,
    seller_recievable_breakdown::*,
    shipping_detail::*,
    shipping_detail_address_portable::*,
    shipping_detail_name::*,
    shipping_option::*,
    stored_payment_source::*,
    tax_info::*,
    token::*,
    webhooks::*,
    user_info::*,
};