pub struct AccountBalance {
pub uin: Option<u64>,
pub real_balance: Option<f64>,
pub cash_account_balance: Option<f64>,
pub income_into_account_balance: Option<f64>,
pub present_account_balance: Option<f64>,
pub freeze_amount: Option<f64>,
pub owe_amount: Option<f64>,
pub credit_amount: Option<f64>,
pub credit_balance: Option<f64>,
pub real_credit_balance: Option<f64>,
pub balance: Option<f64>,
pub request_id: String,
}
Expand description
Detailed billing attributes mapped from Tencent Cloud billing service.
Field | Type | Description |
---|---|---|
uin | Option<u64> | UIN of the queried account. |
real_balance | Option<f64> | Actual available balance (cents). |
cash_account_balance | Option<f64> | Cash balance (cents). |
income_into_account_balance | Option<f64> | Income balance (cents). |
present_account_balance | Option<f64> | Promotional balance (cents). |
freeze_amount | Option<f64> | Frozen amount (cents). |
owe_amount | Option<f64> | Outstanding amount (cents). |
credit_amount | Option<f64> | Credit limit (cents). |
credit_balance | Option<f64> | Remaining credit (cents). |
real_credit_balance | Option<f64> | Actual usable credit (cents). |
balance | Option<f64> | Deprecated alias of real_balance . |
request_id | String | Unique request identifier. |
Fieldsยง
ยงuin: Option<u64>
ยงreal_balance: Option<f64>
ยงcash_account_balance: Option<f64>
ยงincome_into_account_balance: Option<f64>
ยงpresent_account_balance: Option<f64>
ยงfreeze_amount: Option<f64>
ยงowe_amount: Option<f64>
ยงcredit_amount: Option<f64>
ยงcredit_balance: Option<f64>
ยงreal_credit_balance: Option<f64>
ยงbalance: Option<f64>
ยงrequest_id: String
Trait Implementationsยง
Sourceยงimpl Debug for AccountBalance
impl Debug for AccountBalance
Sourceยงimpl<'de> Deserialize<'de> for AccountBalance
impl<'de> Deserialize<'de> for AccountBalance
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 AccountBalance
impl RefUnwindSafe for AccountBalance
impl Send for AccountBalance
impl Sync for AccountBalance
impl Unpin for AccountBalance
impl UnwindSafe for AccountBalance
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