pub struct SourceOwner {
pub address: Option<Address>,
pub email: Option<String>,
pub name: Option<String>,
pub phone: Option<String>,
pub verified_address: Option<Address>,
pub verified_email: Option<String>,
pub verified_name: Option<String>,
pub verified_phone: Option<String>,
}Fields§
§address: Option<Address>Owner’s address.
email: Option<String>Owner’s email address.
name: Option<String>Owner’s full name.
phone: Option<String>Owner’s phone number (including extension).
verified_address: Option<Address>Verified owner’s address. Verified values are verified or provided by the payment method directly (and if supported) at the time of authorization or settlement. They cannot be set or mutated.
verified_email: Option<String>Verified owner’s email address. Verified values are verified or provided by the payment method directly (and if supported) at the time of authorization or settlement. They cannot be set or mutated.
verified_name: Option<String>Verified owner’s full name. Verified values are verified or provided by the payment method directly (and if supported) at the time of authorization or settlement. They cannot be set or mutated.
verified_phone: Option<String>Verified owner’s phone number (including extension). Verified values are verified or provided by the payment method directly (and if supported) at the time of authorization or settlement. They cannot be set or mutated.
Trait Implementations§
Source§impl Clone for SourceOwner
impl Clone for SourceOwner
Source§fn clone(&self) -> SourceOwner
fn clone(&self) -> SourceOwner
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for SourceOwner
impl Debug for SourceOwner
Source§impl Deserialize for SourceOwner
impl Deserialize for SourceOwner
Source§impl FromValueOpt for SourceOwner
impl FromValueOpt for SourceOwner
fn from_value(v: Value) -> Option<Self>
Source§impl ObjectDeser for SourceOwner
impl ObjectDeser for SourceOwner
type Builder = SourceOwnerBuilder
Source§impl PartialEq for SourceOwner
impl PartialEq for SourceOwner
Source§fn eq(&self, other: &SourceOwner) -> bool
fn eq(&self, other: &SourceOwner) -> bool
self and other values to be equal, and is used by ==.