paypal_rust/resources/
mod.rs

1pub mod address;
2pub mod address_details;
3pub mod address_portable;
4pub mod amount_breakdown;
5pub mod amount_with_breakdown;
6pub mod authorization_status_details;
7pub mod authorization_with_additional_data;
8pub mod capture;
9pub mod capture_status_details;
10pub mod card_address_portable;
11pub mod card_response;
12pub mod date_no_time;
13pub mod email;
14pub mod enums;
15pub mod exchange_rate;
16pub mod item;
17pub mod link_description;
18pub mod money;
19pub mod name;
20pub mod net_amount_breakdown;
21pub mod network_transaction_reference;
22pub mod order;
23pub mod order_application_context;
24pub mod patch;
25pub mod payee;
26pub mod payee_base;
27pub mod payer;
28pub mod payment_collection;
29pub mod payment_instruction;
30pub mod payment_method;
31pub mod payment_source;
32pub mod payment_source_response;
33pub mod payments;
34pub mod paypal_payment_source_response;
35pub mod phone_with_type;
36pub mod phone_with_type_phone;
37pub mod platform_fee;
38pub mod processor_response;
39pub mod purchase_unit;
40pub mod purchase_unit_request;
41pub mod refund;
42pub mod refund_status_details;
43pub mod seller_payable_breakdown;
44pub mod seller_protection;
45pub mod seller_recievable_breakdown;
46pub mod shipping_detail;
47pub mod shipping_detail_address_portable;
48pub mod shipping_detail_name;
49pub mod shipping_option;
50pub mod stored_payment_source;
51pub mod tax_info;
52pub mod token;
53pub mod user_info;
54pub mod webhooks;
55
56#[rustfmt::skip]
57pub use {
58    enums::*,
59    address::*,
60    address_details::*,
61    address_portable::*,
62    amount_breakdown::*,
63    amount_with_breakdown::*,
64    authorization_status_details::*,
65    authorization_with_additional_data::*,
66    capture::*,
67    capture_status_details::*,
68    card_address_portable::*,
69    card_response::*,
70    date_no_time::*,
71    email::*,
72    enums::*,
73    exchange_rate::*,
74    item::*,
75    link_description::*,
76    money::*,
77    name::*,
78    net_amount_breakdown::*,
79    network_transaction_reference::*,
80    order::*,
81    order_application_context::*,
82    patch::*,
83    payee::*,
84    payee_base::*,
85    payer::*,
86    payment_collection::*,
87    payment_instruction::*,
88    payment_method::*,
89    payment_source::*,
90    payment_source_response::*,
91    payments::*,
92    paypal_payment_source_response::*,
93    phone_with_type::*,
94    phone_with_type_phone::*,
95    platform_fee::*,
96    processor_response::*,
97    purchase_unit::*,
98    purchase_unit_request::*,
99    refund::*,
100    refund_status_details::*,
101    seller_payable_breakdown::*,
102    seller_protection::*,
103    seller_recievable_breakdown::*,
104    shipping_detail::*,
105    shipping_detail_address_portable::*,
106    shipping_detail_name::*,
107    shipping_option::*,
108    stored_payment_source::*,
109    tax_info::*,
110    token::*,
111    webhooks::*,
112    user_info::*,
113};