pub struct InvoicesResourceConfirmationSecret {
pub client_secret: String,
pub type_: String,
}Fields§
§client_secret: StringThe client_secret of the payment that Stripe creates for the invoice after finalization.
type_: StringThe type of client_secret. Currently this is always payment_intent, referencing the default payment_intent that Stripe creates during invoice finalization.
Trait Implementations§
Source§impl Clone for InvoicesResourceConfirmationSecret
impl Clone for InvoicesResourceConfirmationSecret
Source§fn clone(&self) -> InvoicesResourceConfirmationSecret
fn clone(&self) -> InvoicesResourceConfirmationSecret
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InvoicesResourceConfirmationSecret
impl FromValueOpt for InvoicesResourceConfirmationSecret
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for InvoicesResourceConfirmationSecret
impl PartialEq for InvoicesResourceConfirmationSecret
Source§fn eq(&self, other: &InvoicesResourceConfirmationSecret) -> bool
fn eq(&self, other: &InvoicesResourceConfirmationSecret) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for InvoicesResourceConfirmationSecret
impl StructuralPartialEq for InvoicesResourceConfirmationSecret
Auto Trait Implementations§
impl Freeze for InvoicesResourceConfirmationSecret
impl RefUnwindSafe for InvoicesResourceConfirmationSecret
impl Send for InvoicesResourceConfirmationSecret
impl Sync for InvoicesResourceConfirmationSecret
impl Unpin for InvoicesResourceConfirmationSecret
impl UnsafeUnpin for InvoicesResourceConfirmationSecret
impl UnwindSafe for InvoicesResourceConfirmationSecret
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