Struct bitwarden_api_api::models::organization_update_request_model::OrganizationUpdateRequestModel
source · pub struct OrganizationUpdateRequestModel {
pub name: String,
pub business_name: Option<String>,
pub identifier: Option<String>,
pub billing_email: String,
pub permissions: Option<Box<Permissions>>,
pub keys: Option<Box<OrganizationKeysRequestModel>>,
}Fields§
§name: String§business_name: Option<String>§identifier: Option<String>§billing_email: String§permissions: Option<Box<Permissions>>§keys: Option<Box<OrganizationKeysRequestModel>>Implementations§
source§impl OrganizationUpdateRequestModel
impl OrganizationUpdateRequestModel
pub fn new(name: String, billing_email: String) -> OrganizationUpdateRequestModel
Trait Implementations§
source§impl Clone for OrganizationUpdateRequestModel
impl Clone for OrganizationUpdateRequestModel
source§fn clone(&self) -> OrganizationUpdateRequestModel
fn clone(&self) -> OrganizationUpdateRequestModel
Returns a copy 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 Default for OrganizationUpdateRequestModel
impl Default for OrganizationUpdateRequestModel
source§fn default() -> OrganizationUpdateRequestModel
fn default() -> OrganizationUpdateRequestModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for OrganizationUpdateRequestModel
impl<'de> Deserialize<'de> for OrganizationUpdateRequestModel
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<OrganizationUpdateRequestModel> for OrganizationUpdateRequestModel
impl PartialEq<OrganizationUpdateRequestModel> for OrganizationUpdateRequestModel
source§fn eq(&self, other: &OrganizationUpdateRequestModel) -> bool
fn eq(&self, other: &OrganizationUpdateRequestModel) -> bool
This method tests for
self and other values to be equal, and is used
by ==.