pub struct GetSubscriptionItemsRequest {
pub ending_before: Option<String>,
pub expand: Option<Vec<String>>,
pub limit: Option<i64>,
pub starting_after: Option<String>,
pub subscription: String,
}Expand description
You should use this struct via StripeClient::get_subscription_items.
On request success, this will return a GetSubscriptionItemsResponse.
Fields§
§ending_before: Option<String>§expand: Option<Vec<String>>§limit: Option<i64>§starting_after: Option<String>§subscription: StringTrait Implementations§
Source§impl Clone for GetSubscriptionItemsRequest
impl Clone for GetSubscriptionItemsRequest
Source§fn clone(&self) -> GetSubscriptionItemsRequest
fn clone(&self) -> GetSubscriptionItemsRequest
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 GetSubscriptionItemsRequest
impl Debug for GetSubscriptionItemsRequest
Source§impl<'de> Deserialize<'de> for GetSubscriptionItemsRequest
impl<'de> Deserialize<'de> for GetSubscriptionItemsRequest
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 GetSubscriptionItemsRequest
impl RefUnwindSafe for GetSubscriptionItemsRequest
impl Send for GetSubscriptionItemsRequest
impl Sync for GetSubscriptionItemsRequest
impl Unpin for GetSubscriptionItemsRequest
impl UnwindSafe for GetSubscriptionItemsRequest
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