pub struct KrakenEmbedGetEarnSummaryResponse {
pub data: KrakenEmbedGetEarnSummaryKrakenResponse,
}Expand description
Earn summary for a user including Auto-Earn status, total rewards, and upcoming payouts.
JSON schema
{
"title": "KrakenEmbedGetEarnSummaryResponse",
"description": "Earn summary for a user including Auto-Earn status,
total rewards, and upcoming payouts.",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"$ref":
"#/components/schemas/KrakenEmbedGetEarnSummaryKrakenResponse"
}
},
"x-stainless-model":
"kraken_embed.kraken_embed_get_earn_summary_response"
}Fields§
§data: KrakenEmbedGetEarnSummaryKrakenResponseTrait Implementations§
Source§impl Clone for KrakenEmbedGetEarnSummaryResponse
impl Clone for KrakenEmbedGetEarnSummaryResponse
Source§fn clone(&self) -> KrakenEmbedGetEarnSummaryResponse
fn clone(&self) -> KrakenEmbedGetEarnSummaryResponse
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<'de> Deserialize<'de> for KrakenEmbedGetEarnSummaryResponse
impl<'de> Deserialize<'de> for KrakenEmbedGetEarnSummaryResponse
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<&KrakenEmbedGetEarnSummaryResponse> for KrakenEmbedGetEarnSummaryResponse
impl From<&KrakenEmbedGetEarnSummaryResponse> for KrakenEmbedGetEarnSummaryResponse
Source§fn from(value: &KrakenEmbedGetEarnSummaryResponse) -> Self
fn from(value: &KrakenEmbedGetEarnSummaryResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedGetEarnSummaryResponse
impl RefUnwindSafe for KrakenEmbedGetEarnSummaryResponse
impl Send for KrakenEmbedGetEarnSummaryResponse
impl Sync for KrakenEmbedGetEarnSummaryResponse
impl Unpin for KrakenEmbedGetEarnSummaryResponse
impl UnsafeUnpin for KrakenEmbedGetEarnSummaryResponse
impl UnwindSafe for KrakenEmbedGetEarnSummaryResponse
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