use serde::{Deserialize, Serialize};
#[allow(unused_imports)]
use super::*;
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateVersionedCustomSoftwareSourceDetails {
pub software_source_type: String,
}
pub struct UpdateVersionedCustomSoftwareSourceDetailsRequired {
pub software_source_type: String,
}
impl UpdateVersionedCustomSoftwareSourceDetails {
pub fn new(required: UpdateVersionedCustomSoftwareSourceDetailsRequired) -> Self {
Self {
software_source_type: required.software_source_type,
}
}
pub fn set_software_source_type(mut self, value: String) -> Self {
self.software_source_type = value;
self
}
}