windmill_api/models/
get_hub_app_by_id_200_response.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct GetHubAppById200Response {
16 #[serde(rename = "app")]
17 pub app: Box<models::GetHubAppById200ResponseApp>,
18}
19
20impl GetHubAppById200Response {
21 pub fn new(app: models::GetHubAppById200ResponseApp) -> GetHubAppById200Response {
22 GetHubAppById200Response {
23 app: Box::new(app),
24 }
25 }
26}
27