ya_client_model/
payment.rs

1pub mod acceptance;
2pub mod account;
3pub mod activity_payment;
4pub mod agreement_payment;
5pub mod allocation;
6pub mod debit_note;
7pub mod debit_note_event;
8pub mod document_status;
9pub mod driver_details;
10pub mod invoice;
11pub mod invoice_event;
12pub mod market_decoration;
13pub mod network;
14pub mod params;
15#[allow(clippy::module_inception)]
16pub mod payment;
17pub mod rejection;
18pub mod rejection_reason;
19
20pub use self::acceptance::Acceptance;
21pub use self::account::Account;
22pub use self::activity_payment::ActivityPayment;
23pub use self::agreement_payment::AgreementPayment;
24pub use self::allocation::Allocation;
25pub use self::allocation::AllocationUpdate;
26pub use self::allocation::NewAllocation;
27pub use self::debit_note::DebitNote;
28pub use self::debit_note::NewDebitNote;
29pub use self::debit_note_event::{DebitNoteEvent, DebitNoteEventType};
30pub use self::document_status::DocumentStatus;
31pub use self::driver_details::DriverDetails;
32pub use self::invoice::Invoice;
33pub use self::invoice::NewInvoice;
34pub use self::invoice_event::{InvoiceEvent, InvoiceEventType};
35pub use self::market_decoration::MarketDecoration;
36pub use self::market_decoration::MarketProperty;
37pub use self::network::Network;
38pub use self::payment::{DriverStatusProperty, Payment, Signed};
39pub use self::rejection::Rejection;
40pub use self::rejection_reason::RejectionReason;
41
42pub const PAYMENT_API_PATH: &str = "/payment-api/v1";