pub struct NetAmountBreakdown {
pub converted_amount: Option<Money>,
pub exchange_rate: Option<ExchangeRate>,
pub payable_amount: Option<Money>,
}
Fields§
§converted_amount: Option<Money>
The converted payable amount.
exchange_rate: Option<ExchangeRate>
The exchange rate that determines the amount that was debited from the merchant’s PayPal account.
payable_amount: Option<Money>
The net amount debited from the merchant’s PayPal account.
Trait Implementations§
source§impl Clone for NetAmountBreakdown
impl Clone for NetAmountBreakdown
source§fn clone(&self) -> NetAmountBreakdown
fn clone(&self) -> NetAmountBreakdown
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for NetAmountBreakdown
impl Debug for NetAmountBreakdown
source§impl Default for NetAmountBreakdown
impl Default for NetAmountBreakdown
source§fn default() -> NetAmountBreakdown
fn default() -> NetAmountBreakdown
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for NetAmountBreakdown
impl<'de> Deserialize<'de> for NetAmountBreakdown
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more