pub struct CashAppDetails {
pub buyer_full_name: Option<String>,
pub buyer_country_code: Option<Country>,
pub buyer_cashtag: Option<String>,
}Expand description
Brand-specific details for payments with the brand of CASH_APP.
Fields§
§buyer_full_name: Option<String>The name of the Cash App account holder.
buyer_country_code: Option<Country>The country of the Cash App account holder, in ISO 3166-1-alpha-2 format. Min Length 2, Max Length 2
buyer_cashtag: Option<String>Read only $Cashtag of the Cash App account holder.
Trait Implementations§
Source§impl Clone for CashAppDetails
impl Clone for CashAppDetails
Source§fn clone(&self) -> CashAppDetails
fn clone(&self) -> CashAppDetails
Returns a copy 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 Debug for CashAppDetails
impl Debug for CashAppDetails
Source§impl Default for CashAppDetails
impl Default for CashAppDetails
Source§fn default() -> CashAppDetails
fn default() -> CashAppDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CashAppDetails
impl<'de> Deserialize<'de> for CashAppDetails
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 CashAppDetails
impl PartialEq for CashAppDetails
Source§impl Serialize for CashAppDetails
impl Serialize for CashAppDetails
impl Eq for CashAppDetails
impl StructuralPartialEq for CashAppDetails
Auto Trait Implementations§
impl Freeze for CashAppDetails
impl RefUnwindSafe for CashAppDetails
impl Send for CashAppDetails
impl Sync for CashAppDetails
impl Unpin for CashAppDetails
impl UnwindSafe for CashAppDetails
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