Struct stripe::CreateRefund
source · pub struct CreateRefund<'a> {
pub amount: Option<i64>,
pub charge: Option<ChargeId>,
pub currency: Option<Currency>,
pub customer: Option<CustomerId>,
pub expand: &'a [&'a str],
pub instructions_email: Option<&'a str>,
pub metadata: Option<Metadata>,
pub origin: Option<RefundOrigin>,
pub payment_intent: Option<PaymentIntentId>,
pub reason: Option<RefundReasonFilter>,
pub refund_application_fee: Option<bool>,
pub reverse_transfer: Option<bool>,
}
Expand description
The parameters for Refund::create
.
Fields§
§amount: Option<i64>
A positive integer representing how much to refund.
charge: Option<ChargeId>
§currency: Option<Currency>
Three-letter ISO currency code, in lowercase.
Must be a supported currency.
customer: Option<CustomerId>
Customer whose customer balance to refund from.
expand: &'a [&'a str]
Specifies which fields in the response should be expanded.
instructions_email: Option<&'a str>
For payment methods without native refund support (e.g., Konbini, PromptPay), use this email from the customer to receive refund instructions.
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.
Individual keys can be unset by posting an empty value to them.
All keys can be unset by posting an empty value to metadata
.
origin: Option<RefundOrigin>
Origin of the refund.
payment_intent: Option<PaymentIntentId>
§reason: Option<RefundReasonFilter>
§refund_application_fee: Option<bool>
§reverse_transfer: Option<bool>
Implementations§
source§impl<'a> CreateRefund<'a>
impl<'a> CreateRefund<'a>
Trait Implementations§
source§impl<'a> Clone for CreateRefund<'a>
impl<'a> Clone for CreateRefund<'a>
source§fn clone(&self) -> CreateRefund<'a>
fn clone(&self) -> CreateRefund<'a>
Returns a copy 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<'a> Debug for CreateRefund<'a>
impl<'a> Debug for CreateRefund<'a>
source§impl<'a> Default for CreateRefund<'a>
impl<'a> Default for CreateRefund<'a>
source§fn default() -> CreateRefund<'a>
fn default() -> CreateRefund<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> RefUnwindSafe for CreateRefund<'a>
impl<'a> Send for CreateRefund<'a>
impl<'a> Sync for CreateRefund<'a>
impl<'a> Unpin for CreateRefund<'a>
impl<'a> UnwindSafe for CreateRefund<'a>
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