pub struct TransferMetricsGetAuthorizationUsage {
pub daily_credit_utilization: Option<String>,
pub daily_debit_utilization: Option<String>,
pub monthly_credit_utilization: Option<String>,
pub monthly_debit_utilization: Option<String>,
}Expand description
Details regarding authorization usage.
Fields§
§daily_credit_utilization: Option<String>The daily credit utilization formatted as a decimal.
daily_debit_utilization: Option<String>The daily debit utilization formatted as a decimal.
monthly_credit_utilization: Option<String>The monthly credit utilization formatted as a decimal.
monthly_debit_utilization: Option<String>The monthly debit utilization formatted as a decimal.
Trait Implementations§
Source§impl Clone for TransferMetricsGetAuthorizationUsage
impl Clone for TransferMetricsGetAuthorizationUsage
Source§fn clone(&self) -> TransferMetricsGetAuthorizationUsage
fn clone(&self) -> TransferMetricsGetAuthorizationUsage
Returns a duplicate 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 Default for TransferMetricsGetAuthorizationUsage
impl Default for TransferMetricsGetAuthorizationUsage
Source§fn default() -> TransferMetricsGetAuthorizationUsage
fn default() -> TransferMetricsGetAuthorizationUsage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransferMetricsGetAuthorizationUsage
impl<'de> Deserialize<'de> for TransferMetricsGetAuthorizationUsage
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
Auto Trait Implementations§
impl Freeze for TransferMetricsGetAuthorizationUsage
impl RefUnwindSafe for TransferMetricsGetAuthorizationUsage
impl Send for TransferMetricsGetAuthorizationUsage
impl Sync for TransferMetricsGetAuthorizationUsage
impl Unpin for TransferMetricsGetAuthorizationUsage
impl UnwindSafe for TransferMetricsGetAuthorizationUsage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more