pub struct ListItem {Show 13 fields
pub currencies: String,
pub deposit_commission: String,
pub email: String,
pub further_information: String,
pub max_withdrawal: Option<Value>,
pub min_withdrawal: Option<Value>,
pub name: String,
pub paymentagent_loginid: String,
pub phone_numbers: Vec<PhoneNumberItem>,
pub summary: String,
pub supported_payment_methods: Vec<SupportedPaymentMethodItem>,
pub urls: Vec<UrlItem>,
pub withdrawal_commission: String,
}
Fields§
§currencies: String
Currencies that are accepted by this payment agent.\n
deposit_commission: String
Commission amount applied on deposits made through this payment agent.\n
email: String
Payment agent’s email address.\n
further_information: String
More descriptions about this payment agent.\n
max_withdrawal: Option<Value>
Maximum withdrawal allowed for transactions through this payment agent.\n
min_withdrawal: Option<Value>
Minimum withdrawal allowed for transactions through this payment agent.\n
name: String
Payment agent’s name.\n
paymentagent_loginid: String
Payment agent’s loginid.\n
phone_numbers: Vec<PhoneNumberItem>
Payment agent’s phone number(s) with country code.\n
summary: String
A summary about payment agent.\n
supported_payment_methods: Vec<SupportedPaymentMethodItem>
A list of supported payment methods.\n
urls: Vec<UrlItem>
The URL(s) of payment agent’s website(s).\n
withdrawal_commission: String
Commission amount applied on withdrawals made through this payment agent.\n
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ListItem
impl<'de> Deserialize<'de> for ListItem
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 ListItem
impl RefUnwindSafe for ListItem
impl Send for ListItem
impl Sync for ListItem
impl Unpin for ListItem
impl UnwindSafe for ListItem
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