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