pub struct InvoicesResourceConfirmationSecret {
pub client_secret: String,
pub type_: String,
}
Fields§
§client_secret: String
The client_secret of the payment that Stripe creates for the invoice after finalization.
type_: String
The 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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for InvoicesResourceConfirmationSecret
impl RefUnwindSafe for InvoicesResourceConfirmationSecret
impl Send for InvoicesResourceConfirmationSecret
impl Sync for InvoicesResourceConfirmationSecret
impl Unpin 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