pub struct OrganizationBody {
pub domains: Option<Vec<String>>,
pub label: Option<String>,
}Expand description
OrganizationBody : Create B2B SSO Organization Request Body
Fields§
§domains: Option<Vec<String>>Domains contains the list of organization’s domains.
label: Option<String>Label contains the organization’s label.
Implementations§
Source§impl OrganizationBody
impl OrganizationBody
Sourcepub fn new() -> OrganizationBody
pub fn new() -> OrganizationBody
Create B2B SSO Organization Request Body
Trait Implementations§
Source§impl Clone for OrganizationBody
impl Clone for OrganizationBody
Source§fn clone(&self) -> OrganizationBody
fn clone(&self) -> OrganizationBody
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OrganizationBody
impl Debug for OrganizationBody
Source§impl Default for OrganizationBody
impl Default for OrganizationBody
Source§fn default() -> OrganizationBody
fn default() -> OrganizationBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationBody
impl<'de> Deserialize<'de> for OrganizationBody
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OrganizationBody
impl PartialEq for OrganizationBody
Source§impl Serialize for OrganizationBody
impl Serialize for OrganizationBody
impl StructuralPartialEq for OrganizationBody
Auto Trait Implementations§
impl Freeze for OrganizationBody
impl RefUnwindSafe for OrganizationBody
impl Send for OrganizationBody
impl Sync for OrganizationBody
impl Unpin for OrganizationBody
impl UnwindSafe for OrganizationBody
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more