pub struct GetResellerBalanceResponseBalance {
pub current_balance: Option<Decimal>,
pub spent_total: Option<Decimal>,
pub calls_total: Option<u64>,
pub time_total: Option<String>,
pub spent_today: Option<Decimal>,
pub calls_today: Option<u64>,
pub time_today: Option<String>,
}Expand description
Response body for Client::get_reseller_balance (wire method getResellerBalance).
Fields§
§current_balance: Option<Decimal>§spent_total: Option<Decimal>§calls_total: Option<u64>§time_total: Option<String>§spent_today: Option<Decimal>§calls_today: Option<u64>§time_today: Option<String>Trait Implementations§
Source§impl Clone for GetResellerBalanceResponseBalance
impl Clone for GetResellerBalanceResponseBalance
Source§fn clone(&self) -> GetResellerBalanceResponseBalance
fn clone(&self) -> GetResellerBalanceResponseBalance
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetResellerBalanceResponseBalance
impl Default for GetResellerBalanceResponseBalance
Source§fn default() -> GetResellerBalanceResponseBalance
fn default() -> GetResellerBalanceResponseBalance
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetResellerBalanceResponseBalance
impl<'de> Deserialize<'de> for GetResellerBalanceResponseBalance
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 GetResellerBalanceResponseBalance
impl RefUnwindSafe for GetResellerBalanceResponseBalance
impl Send for GetResellerBalanceResponseBalance
impl Sync for GetResellerBalanceResponseBalance
impl Unpin for GetResellerBalanceResponseBalance
impl UnsafeUnpin for GetResellerBalanceResponseBalance
impl UnwindSafe for GetResellerBalanceResponseBalance
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