pub struct OrdersV2ResourcePaymentSettings {
    pub application_fee_amount: Option<i64>,
    pub payment_method_options: Option<OrdersV2ResourcePaymentMethodOptions>,
    pub payment_method_types: Option<Vec<OrdersV2ResourcePaymentSettingsPaymentMethodTypes>>,
    pub return_url: Option<String>,
    pub statement_descriptor: Option<String>,
    pub statement_descriptor_suffix: Option<String>,
    pub transfer_data: Option<OrdersV2ResourceTransferData>,
}

Fields

application_fee_amount: Option<i64>

The amount of the application fee (if any) that will be requested to be applied to the payment and transferred to the application owner’s Stripe account.

payment_method_options: Option<OrdersV2ResourcePaymentMethodOptions>

PaymentMethod-specific configuration to provide to the order’s PaymentIntent.

payment_method_types: Option<Vec<OrdersV2ResourcePaymentSettingsPaymentMethodTypes>>

The list of payment method types (e.g., card) to provide to the order’s PaymentIntent.

return_url: Option<String>

The URL to redirect the customer to after they authenticate their payment.

statement_descriptor: Option<String>

For non-card charges, you can use this value as the complete description that appears on your customers’ statements.

Must contain at least one letter, maximum 22 characters.

statement_descriptor_suffix: Option<String>

Provides information about a card payment that customers see on their statements.

Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.

transfer_data: Option<OrdersV2ResourceTransferData>

Provides configuration for completing a transfer for the order after it is paid.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

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

Calls U::from(self).

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

Should always be Self

The resulting type after obtaining ownership.

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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

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