windmill_api/models/
get_instance_hash_200_response.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct GetInstanceHash200Response {
16 #[serde(rename = "instance_hash", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
17 pub instance_hash: Option<Option<String>>,
18}
19
20impl GetInstanceHash200Response {
21 pub fn new() -> GetInstanceHash200Response {
22 GetInstanceHash200Response {
23 instance_hash: None,
24 }
25 }
26}
27