pub struct ConnectEmbeddedPaymentDisputesFeatures {
pub destination_on_behalf_of_charge_management: bool,
pub dispute_management: bool,
pub refund_management: bool,
}
Fields§
§destination_on_behalf_of_charge_management: bool
Whether connected accounts can manage destination charges that are created on behalf of them.
This is false
by default.
dispute_management: bool
Whether responding to disputes is enabled, including submitting evidence and accepting disputes.
This is true
by default.
refund_management: bool
Whether sending refunds is enabled. This is true
by default.
Trait Implementations§
Source§impl Clone for ConnectEmbeddedPaymentDisputesFeatures
impl Clone for ConnectEmbeddedPaymentDisputesFeatures
Source§fn clone(&self) -> ConnectEmbeddedPaymentDisputesFeatures
fn clone(&self) -> ConnectEmbeddedPaymentDisputesFeatures
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 FromValueOpt for ConnectEmbeddedPaymentDisputesFeatures
impl FromValueOpt for ConnectEmbeddedPaymentDisputesFeatures
fn from_value(v: Value) -> Option<Self>
impl Copy for ConnectEmbeddedPaymentDisputesFeatures
Auto Trait Implementations§
impl Freeze for ConnectEmbeddedPaymentDisputesFeatures
impl RefUnwindSafe for ConnectEmbeddedPaymentDisputesFeatures
impl Send for ConnectEmbeddedPaymentDisputesFeatures
impl Sync for ConnectEmbeddedPaymentDisputesFeatures
impl Unpin for ConnectEmbeddedPaymentDisputesFeatures
impl UnwindSafe for ConnectEmbeddedPaymentDisputesFeatures
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