Struct stripe::SetupIntent

source ·
pub struct SetupIntent {
Show 24 fields pub id: SetupIntentId, pub application: Option<Expandable<Application>>, pub attach_to_self: Option<bool>, pub automatic_payment_methods: Option<PaymentFlowsAutomaticPaymentMethodsSetupIntent>, pub cancellation_reason: Option<SetupIntentCancellationReason>, pub client_secret: Option<String>, pub created: Timestamp, pub customer: Option<Expandable<Customer>>, pub description: Option<String>, pub flow_directions: Option<Vec<SetupIntentFlowDirections>>, pub last_setup_error: Option<Box<ApiErrors>>, pub latest_attempt: Option<Expandable<SetupAttempt>>, pub livemode: bool, pub mandate: Option<Expandable<Mandate>>, pub metadata: Option<Metadata>, pub next_action: Option<SetupIntentNextAction>, pub on_behalf_of: Option<Expandable<Account>>, pub payment_method: Option<Expandable<PaymentMethod>>, pub payment_method_configuration_details: Option<PaymentMethodConfigBizPaymentMethodConfigurationDetails>, pub payment_method_options: Option<SetupIntentPaymentMethodOptions>, pub payment_method_types: Vec<String>, pub single_use_mandate: Option<Expandable<Mandate>>, pub status: SetupIntentStatus, pub usage: String,
}
Expand description

The resource representing a Stripe “SetupIntent”.

For more details see https://stripe.com/docs/api/setup_intents/object

Fields§

§id: SetupIntentId

Unique identifier for the object.

§application: Option<Expandable<Application>>

ID of the Connect application that created the SetupIntent.

§attach_to_self: Option<bool>

If present, the SetupIntent’s payment method will be attached to the in-context Stripe Account.

It can only be used for this Stripe Account’s own money movement flows like InboundTransfer and OutboundTransfers.

It cannot be set to true when setting up a PaymentMethod for a Customer, and defaults to false when attaching a PaymentMethod to a Customer.

§automatic_payment_methods: Option<PaymentFlowsAutomaticPaymentMethodsSetupIntent>

Settings for dynamic payment methods compatible with this Setup Intent.

§cancellation_reason: Option<SetupIntentCancellationReason>

Reason for cancellation of this SetupIntent, one of abandoned, requested_by_customer, or duplicate.

§client_secret: Option<String>

The client secret of this SetupIntent.

Used for client-side retrieval using a publishable key. The client secret can be used to complete payment setup from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.

§created: Timestamp

Time at which the object was created.

Measured in seconds since the Unix epoch.

§customer: Option<Expandable<Customer>>

ID of the Customer this SetupIntent belongs to, if one exists.

If present, the SetupIntent’s payment method will be attached to the Customer on successful setup.

Payment methods attached to other Customers cannot be used with this SetupIntent.

§description: Option<String>

An arbitrary string attached to the object.

Often useful for displaying to users.

§flow_directions: Option<Vec<SetupIntentFlowDirections>>

Indicates the directions of money movement for which this payment method is intended to be used.

Include inbound if you intend to use the payment method as the origin to pull funds from.

Include outbound if you intend to use the payment method as the destination to send funds to. You can include both if you intend to use the payment method for both purposes.

§last_setup_error: Option<Box<ApiErrors>>

The error encountered in the previous SetupIntent confirmation.

§latest_attempt: Option<Expandable<SetupAttempt>>

The most recent SetupAttempt for this SetupIntent.

§livemode: bool

Has the value true if the object exists in live mode or the value false if the object exists in test mode.

§mandate: Option<Expandable<Mandate>>

ID of the multi use Mandate generated by the SetupIntent.

§metadata: Option<Metadata>

Set of key-value pairs that you can attach to an object.

This can be useful for storing additional information about the object in a structured format.

§next_action: Option<SetupIntentNextAction>

If present, this property tells you what actions you need to take in order for your customer to continue payment setup.

§on_behalf_of: Option<Expandable<Account>>

The account (if any) for which the setup is intended.

§payment_method: Option<Expandable<PaymentMethod>>

ID of the payment method used with this SetupIntent.

§payment_method_configuration_details: Option<PaymentMethodConfigBizPaymentMethodConfigurationDetails>

Information about the payment method configuration used for this Setup Intent.

§payment_method_options: Option<SetupIntentPaymentMethodOptions>

Payment method-specific configuration for this SetupIntent.

§payment_method_types: Vec<String>

The list of payment method types (e.g.

card) that this SetupIntent is allowed to set up.

§single_use_mandate: Option<Expandable<Mandate>>

ID of the single_use Mandate generated by the SetupIntent.

§status: SetupIntentStatus

Status of this SetupIntent, one of requires_payment_method, requires_confirmation, requires_action, processing, canceled, or succeeded.

§usage: String

Indicates how the payment method is intended to be used in the future.

Use on_session if you intend to only reuse the payment method when the customer is in your checkout flow.

Use off_session if your customer may or may not be in your checkout flow. If not provided, this value defaults to off_session.

Implementations§

source§

impl SetupIntent

source

pub fn list( client: &Client, params: &ListSetupIntents<'_> ) -> Response<List<SetupIntent>>

Returns a list of SetupIntents.

source

pub fn create( client: &Client, params: CreateSetupIntent<'_> ) -> Response<SetupIntent>

Creates a SetupIntent object.

After you create the SetupIntent, attach a payment method and confirm it to collect any required permissions to charge the payment method later.

source

pub fn retrieve( client: &Client, id: &SetupIntentId, expand: &[&str] ) -> Response<SetupIntent>

Retrieves the details of a SetupIntent that has previously been created.

Client-side retrieval using a publishable key is allowed when the client_secret is provided in the query string. When retrieved with a publishable key, only a subset of properties will be returned. Please refer to the SetupIntent object reference for more details.

source

pub fn update( client: &Client, id: &SetupIntentId, params: UpdateSetupIntent<'_> ) -> Response<SetupIntent>

Updates a SetupIntent object.

source§

impl SetupIntent

source

pub fn confirm( client: &Client, setup_id: &SetupIntentId, params: ConfirmSetupIntent ) -> Response<SetupIntent>

source

pub fn verify_micro_deposits( client: &Client, setup_id: &SetupIntentId, params: VerifyMicrodeposits<'_> ) -> Response<SetupIntent>

source

pub fn cancel( client: &Client, setup_id: &SetupIntentId, params: CancelSetupIntent ) -> Response<SetupIntent>

A SetupIntent object can be canceled when it is in one of these statuses: requires_payment_method, requires_confirmation, or requires_action.

For more details see https://stripe.com/docs/api/setup_intents/cancel.

Trait Implementations§

source§

impl Clone for SetupIntent

source§

fn clone(&self) -> SetupIntent

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SetupIntent

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for SetupIntent

source§

fn default() -> SetupIntent

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for SetupIntent

source§

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 Object for SetupIntent

§

type Id = SetupIntentId

The canonical id type for this object.
source§

fn id(&self) -> Self::Id

The id of the object.
source§

fn object(&self) -> &'static str

The object’s type, typically represented in wire format as the object property.
source§

impl Serialize for SetupIntent

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,