pub struct CreateAccountSessionComponentsPaymentDisputesFeatures {
pub destination_on_behalf_of_charge_management: Option<bool>,
pub dispute_management: Option<bool>,
pub refund_management: Option<bool>,
}Expand description
The list of features enabled in the embedded component.
Fields§
§destination_on_behalf_of_charge_management: Option<bool>Whether connected accounts can manage destination charges that are created on behalf of them.
This is false by default.
dispute_management: Option<bool>Whether responding to disputes is enabled, including submitting evidence and accepting disputes.
This is true by default.
refund_management: Option<bool>Whether sending refunds is enabled. This is true by default.
Implementations§
Trait Implementations§
Source§impl Clone for CreateAccountSessionComponentsPaymentDisputesFeatures
impl Clone for CreateAccountSessionComponentsPaymentDisputesFeatures
Source§fn clone(&self) -> CreateAccountSessionComponentsPaymentDisputesFeatures
fn clone(&self) -> CreateAccountSessionComponentsPaymentDisputesFeatures
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 PartialEq for CreateAccountSessionComponentsPaymentDisputesFeatures
impl PartialEq for CreateAccountSessionComponentsPaymentDisputesFeatures
Source§fn eq(
&self,
other: &CreateAccountSessionComponentsPaymentDisputesFeatures,
) -> bool
fn eq( &self, other: &CreateAccountSessionComponentsPaymentDisputesFeatures, ) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CreateAccountSessionComponentsPaymentDisputesFeatures
impl Eq for CreateAccountSessionComponentsPaymentDisputesFeatures
impl StructuralPartialEq for CreateAccountSessionComponentsPaymentDisputesFeatures
Auto Trait Implementations§
impl Freeze for CreateAccountSessionComponentsPaymentDisputesFeatures
impl RefUnwindSafe for CreateAccountSessionComponentsPaymentDisputesFeatures
impl Send for CreateAccountSessionComponentsPaymentDisputesFeatures
impl Sync for CreateAccountSessionComponentsPaymentDisputesFeatures
impl Unpin for CreateAccountSessionComponentsPaymentDisputesFeatures
impl UnsafeUnpin for CreateAccountSessionComponentsPaymentDisputesFeatures
impl UnwindSafe for CreateAccountSessionComponentsPaymentDisputesFeatures
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