asana/model/
create_webhook_response.rs

1use serde::{Serialize, Deserialize};
2use super::WebhookResponse;
3#[derive(Debug, Clone, Serialize, Deserialize, Default)]
4pub struct CreateWebhookResponse {
5    pub data: WebhookResponse,
6}
7impl std::fmt::Display for CreateWebhookResponse {
8    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
9        write!(f, "{}", serde_json::to_string(self).unwrap())
10    }
11}