#[derive(
Debug,
Clone,
conjure_object::serde::Serialize,
conjure_object::serde::Deserialize,
PartialEq,
Eq,
PartialOrd,
Ord,
Hash
)]
#[serde(crate = "conjure_object::serde")]
#[conjure_object::private::staged_builder::staged_builder]
#[builder(crate = conjure_object::private::staged_builder, update, inline)]
pub struct SetUserOrgRequest {
#[serde(rename = "orgRid")]
org_rid: super::super::authentication::api::OrgRid,
}
impl SetUserOrgRequest {
#[inline]
pub fn new(org_rid: super::super::authentication::api::OrgRid) -> Self {
Self::builder().org_rid(org_rid).build()
}
#[inline]
pub fn org_rid(&self) -> &super::super::authentication::api::OrgRid {
&self.org_rid
}
}