pub struct GetSetupIntentsRequest {
pub attach_to_self: Option<bool>,
pub created: Option<Value>,
pub customer: Option<String>,
pub ending_before: Option<String>,
pub expand: Option<Vec<String>>,
pub limit: Option<i64>,
pub payment_method: Option<String>,
pub starting_after: Option<String>,
}
Expand description
You should use this struct via StripeClient::get_setup_intents
.
On request success, this will return a GetSetupIntentsResponse
.
Fields§
§attach_to_self: Option<bool>
§created: Option<Value>
§customer: Option<String>
§ending_before: Option<String>
§expand: Option<Vec<String>>
§limit: Option<i64>
§payment_method: Option<String>
§starting_after: Option<String>
Trait Implementations§
Source§impl Clone for GetSetupIntentsRequest
impl Clone for GetSetupIntentsRequest
Source§fn clone(&self) -> GetSetupIntentsRequest
fn clone(&self) -> GetSetupIntentsRequest
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 moreSource§impl Debug for GetSetupIntentsRequest
impl Debug for GetSetupIntentsRequest
Source§impl<'de> Deserialize<'de> for GetSetupIntentsRequest
impl<'de> Deserialize<'de> for GetSetupIntentsRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetSetupIntentsRequest
impl RefUnwindSafe for GetSetupIntentsRequest
impl Send for GetSetupIntentsRequest
impl Sync for GetSetupIntentsRequest
impl Unpin for GetSetupIntentsRequest
impl UnwindSafe for GetSetupIntentsRequest
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