pub struct KrakenEmbedUserVerifiedWebhookPayload {
pub type_: KrakenEmbedUserVerifiedWebhookPayloadType,
pub user_id: String,
pub verified_at: String,
}Expand description
Payload for the kraken_embed.user.verified webhook event.
JSON schema
{
"title": "KrakenEmbedUserVerifiedWebhookPayload",
"description": "Payload for the kraken_embed.user.verified webhook
event.",
"type": "object",
"required": [
"type",
"user_id",
"verified_at"
],
"properties": {
"type": {
"description": "The type of webhook event.",
"type": "string",
"enum": [
"kraken_embed.user.verified"
]
},
"user_id": {
"description": "The ID of the user.",
"type": "string"
},
"verified_at": {
"description": "ISO 8601 timestamp of when the user was verified.",
"type": "string"
}
},
"x-stainless-model":
"webhooks.kraken_embed_user_verified_webhook_payload"
}Fields§
§type_: KrakenEmbedUserVerifiedWebhookPayloadTypeThe type of webhook event.
user_id: StringThe ID of the user.
verified_at: StringISO 8601 timestamp of when the user was verified.
Trait Implementations§
Source§impl Clone for KrakenEmbedUserVerifiedWebhookPayload
impl Clone for KrakenEmbedUserVerifiedWebhookPayload
Source§fn clone(&self) -> KrakenEmbedUserVerifiedWebhookPayload
fn clone(&self) -> KrakenEmbedUserVerifiedWebhookPayload
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 KrakenEmbedUserVerifiedWebhookPayload
impl<'de> Deserialize<'de> for KrakenEmbedUserVerifiedWebhookPayload
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<&KrakenEmbedUserVerifiedWebhookPayload> for KrakenEmbedUserVerifiedWebhookPayload
impl From<&KrakenEmbedUserVerifiedWebhookPayload> for KrakenEmbedUserVerifiedWebhookPayload
Source§fn from(value: &KrakenEmbedUserVerifiedWebhookPayload) -> Self
fn from(value: &KrakenEmbedUserVerifiedWebhookPayload) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for KrakenEmbedUserVerifiedWebhookPayload
impl RefUnwindSafe for KrakenEmbedUserVerifiedWebhookPayload
impl Send for KrakenEmbedUserVerifiedWebhookPayload
impl Sync for KrakenEmbedUserVerifiedWebhookPayload
impl Unpin for KrakenEmbedUserVerifiedWebhookPayload
impl UnsafeUnpin for KrakenEmbedUserVerifiedWebhookPayload
impl UnwindSafe for KrakenEmbedUserVerifiedWebhookPayload
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