svix_webhook_with_clone/models/
environment_out.rs1#[allow(unused_imports)]
12use crate::models;
13#[allow(unused_imports)]
14use serde::{Deserialize, Serialize};
15
16 #[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
17 pub struct EnvironmentOut {
18 #[serde(rename = "createdAt")]
19 pub created_at: String,
20 #[serde(rename = "eventTypes")]
21 pub event_types: Vec<models::EventTypeOut>,
22 #[serde(rename = "settings", deserialize_with = "Option::deserialize")]
23 pub settings: Option<serde_json::Value>,
24 #[serde(rename = "transformationTemplates")]
25 pub transformation_templates: Vec<models::TemplateOut>,
26 #[serde(rename = "version", skip_serializing_if = "Option::is_none")]
27 pub version: Option<i32>,
28 }
29
30 impl EnvironmentOut {
31 pub fn new(created_at: String, event_types: Vec<models::EventTypeOut>, settings: Option<serde_json::Value>, transformation_templates: Vec<models::TemplateOut>) -> EnvironmentOut {
32 EnvironmentOut {
33 created_at,
34 event_types,
35 settings,
36 transformation_templates,
37 version: None,
38 }
39 }
40 }
41