pub struct ListAddressBeneficiariesRequest {Show 14 fields
pub currency: Option<String>,
pub address: Option<String>,
pub tag: Option<String>,
pub created_before: Option<u64>,
pub created_after: Option<u64>,
pub updated_before: Option<u64>,
pub updated_after: Option<u64>,
pub personal: Option<bool>,
pub unhosted: Option<bool>,
pub beneficiary_vasp_name: Option<String>,
pub beneficiary_vasp_did: Option<String>,
pub beneficiary_vasp_website: Option<String>,
pub limit: Option<u32>,
pub continuation: Option<String>,
}Expand description
Request parameters for listing address beneficiaries with filtering and pagination.
Fields§
§currency: Option<String>Filter by currency symbol
address: Option<String>Filter by address
tag: Option<String>Tag for XRP addresses
created_before: Option<u64>Filter by creation timestamp (before), in milliseconds
created_after: Option<u64>Filter by creation timestamp (after), in milliseconds
updated_before: Option<u64>Filter by update timestamp (before), in milliseconds
updated_after: Option<u64>Filter by update timestamp (after), in milliseconds
personal: Option<bool>Filter by personal wallet flag
unhosted: Option<bool>Filter by unhosted wallet flag
beneficiary_vasp_name: Option<String>Filter by beneficiary VASP name
beneficiary_vasp_did: Option<String>Filter by beneficiary VASP DID
beneficiary_vasp_website: Option<String>Filter by beneficiary VASP website
limit: Option<u32>Maximum number of results to return
continuation: Option<String>Continuation token for pagination
Trait Implementations§
Source§impl Clone for ListAddressBeneficiariesRequest
impl Clone for ListAddressBeneficiariesRequest
Source§fn clone(&self) -> ListAddressBeneficiariesRequest
fn clone(&self) -> ListAddressBeneficiariesRequest
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 ListAddressBeneficiariesRequest
impl Default for ListAddressBeneficiariesRequest
Source§fn default() -> ListAddressBeneficiariesRequest
fn default() -> ListAddressBeneficiariesRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListAddressBeneficiariesRequest
impl<'de> Deserialize<'de> for ListAddressBeneficiariesRequest
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
Source§impl PartialEq for ListAddressBeneficiariesRequest
impl PartialEq for ListAddressBeneficiariesRequest
Source§fn eq(&self, other: &ListAddressBeneficiariesRequest) -> bool
fn eq(&self, other: &ListAddressBeneficiariesRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ListAddressBeneficiariesRequest
Auto Trait Implementations§
impl Freeze for ListAddressBeneficiariesRequest
impl RefUnwindSafe for ListAddressBeneficiariesRequest
impl Send for ListAddressBeneficiariesRequest
impl Sync for ListAddressBeneficiariesRequest
impl Unpin for ListAddressBeneficiariesRequest
impl UnsafeUnpin for ListAddressBeneficiariesRequest
impl UnwindSafe for ListAddressBeneficiariesRequest
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