akeyless_api/models/
gateway_create_producer_github_output.rs1use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct GatewayCreateProducerGithubOutput {
16 #[serde(rename = "producer_details", skip_serializing_if = "Option::is_none")]
17 pub producer_details: Option<Box<models::DsProducerDetails>>,
18}
19
20impl GatewayCreateProducerGithubOutput {
21 pub fn new() -> GatewayCreateProducerGithubOutput {
22 GatewayCreateProducerGithubOutput {
23 producer_details: None,
24 }
25 }
26}
27