pub struct RefreshStripeQuoteResponse {
pub quote: StripeQuote,
}Expand description
Refreshed quote with new expiry.
JSON schema
{
"title": "RefreshStripeQuoteResponse",
"description": "Refreshed quote with new expiry.",
"type": "object",
"required": [
"quote"
],
"properties": {
"quote": {
"$ref": "#/components/schemas/StripeQuote"
}
},
"x-stainless-model": "onramps.refresh_stripe_quote_response"
}Fields§
§quote: StripeQuoteTrait Implementations§
Source§impl Clone for RefreshStripeQuoteResponse
impl Clone for RefreshStripeQuoteResponse
Source§fn clone(&self) -> RefreshStripeQuoteResponse
fn clone(&self) -> RefreshStripeQuoteResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RefreshStripeQuoteResponse
impl Debug for RefreshStripeQuoteResponse
Source§impl<'de> Deserialize<'de> for RefreshStripeQuoteResponse
impl<'de> Deserialize<'de> for RefreshStripeQuoteResponse
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
Source§impl From<&RefreshStripeQuoteResponse> for RefreshStripeQuoteResponse
impl From<&RefreshStripeQuoteResponse> for RefreshStripeQuoteResponse
Source§fn from(value: &RefreshStripeQuoteResponse) -> Self
fn from(value: &RefreshStripeQuoteResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RefreshStripeQuoteResponse
impl RefUnwindSafe for RefreshStripeQuoteResponse
impl Send for RefreshStripeQuoteResponse
impl Sync for RefreshStripeQuoteResponse
impl Unpin for RefreshStripeQuoteResponse
impl UnsafeUnpin for RefreshStripeQuoteResponse
impl UnwindSafe for RefreshStripeQuoteResponse
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