Struct xrpl_api::account_lines::AccountLine
source · pub struct AccountLine {Show 13 fields
pub account: String,
pub balance: String,
pub currency: String,
pub limit: String,
pub limit_peer: String,
pub quality_in: u64,
pub quality_out: u64,
pub no_ripple: Option<bool>,
pub no_ripple_peer: Option<bool>,
pub authorized: Option<bool>,
pub peer_authorized: Option<bool>,
pub freeze: Option<bool>,
pub freeze_peer: Option<bool>,
}Fields§
§account: String§balance: String§currency: String§limit: String§limit_peer: String§quality_in: u64Rate at which the account values incoming balances on this trust line, as a ratio of this value per 1 billion units. (For example, a value of 500 million represents a 0.5:1 ratio.) As a special case, 0 is treated as a 1:1 ratio.
quality_out: u64Rate at which the account values outgoing balances on this trust line, as a ratio of this value per 1 billion units. (For example, a value of 500 million represents a 0.5:1 ratio.) As a special case, 0 is treated as a 1:1 ratio.
no_ripple: Option<bool>If true, this account has enabled the No Ripple flag for this trust line. If present and false, this account has disabled the No Ripple flag, but, because the account also has the Default Ripple flag disabled, that is not considered the default state. If omitted, the account has the No Ripple flag disabled for this trust line and Default Ripple enabled.
no_ripple_peer: Option<bool>If true, the peer account has enabled the No Ripple flag for this trust line. If present and false, this account has disabled the No Ripple flag, but, because the account also has the Default Ripple flag disabled, that is not considered the default state. If omitted, the account has the No Ripple flag disabled for this trust line and Default Ripple enabled..
If true, this account has authorized this trust line. The default is false.
If true, the peer account has authorized this trust line. The default is false.
freeze: Option<bool>If true, this account has frozen this trust line. The default is false.
freeze_peer: Option<bool>If true, the peer account has frozen this trust line. The default is false.