pub struct CheckoutMerchantSettings {
pub payment_methods: Option<CheckoutMerchantSettingsPaymentMethods>,
pub updated_at: Option<DateTime>,
}Fields§
§payment_methods: Option<CheckoutMerchantSettingsPaymentMethods>The set of payment methods accepted for the merchant’s account.
updated_at: Option<DateTime>Read only The RFC 3339 timestamp specifying the most recent update time of this booking. Examples for January 25th, 2020 6:25:34pm Pacific Standard Time: UTC: 2020-01-26T02:25:34Z Pacific Standard Time with UTC offset: 2020-01-25T18:25:34-08:00
Trait Implementations§
Source§impl Clone for CheckoutMerchantSettings
impl Clone for CheckoutMerchantSettings
Source§fn clone(&self) -> CheckoutMerchantSettings
fn clone(&self) -> CheckoutMerchantSettings
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 CheckoutMerchantSettings
impl Debug for CheckoutMerchantSettings
Source§impl Default for CheckoutMerchantSettings
impl Default for CheckoutMerchantSettings
Source§fn default() -> CheckoutMerchantSettings
fn default() -> CheckoutMerchantSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckoutMerchantSettings
impl<'de> Deserialize<'de> for CheckoutMerchantSettings
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 CheckoutMerchantSettings
impl PartialEq for CheckoutMerchantSettings
Source§impl Serialize for CheckoutMerchantSettings
impl Serialize for CheckoutMerchantSettings
impl Eq for CheckoutMerchantSettings
impl StructuralPartialEq for CheckoutMerchantSettings
Auto Trait Implementations§
impl Freeze for CheckoutMerchantSettings
impl RefUnwindSafe for CheckoutMerchantSettings
impl Send for CheckoutMerchantSettings
impl Sync for CheckoutMerchantSettings
impl Unpin for CheckoutMerchantSettings
impl UnwindSafe for CheckoutMerchantSettings
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