pub struct WebhookRegistrationResponse {
pub webhook_id: WebhookId,
pub webhook_url: String,
pub secret: String,
pub created_at: DateTime<Utc>,
}Expand description
Response after webhook registration
Fields§
§webhook_id: WebhookId§webhook_url: String§secret: String§created_at: DateTime<Utc>Trait Implementations§
Source§impl Debug for WebhookRegistrationResponse
impl Debug for WebhookRegistrationResponse
Source§impl<'de> Deserialize<'de> for WebhookRegistrationResponse
impl<'de> Deserialize<'de> for WebhookRegistrationResponse
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 WebhookRegistrationResponse
impl RefUnwindSafe for WebhookRegistrationResponse
impl Send for WebhookRegistrationResponse
impl Sync for WebhookRegistrationResponse
impl Unpin for WebhookRegistrationResponse
impl UnwindSafe for WebhookRegistrationResponse
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