pub struct ImGroupCreateRequest {
pub name: String,
pub search_by_account: Option<bool>,
pub search_by_domain: Option<bool>,
pub search_by_ma_account: Option<bool>,
pub type_: Option<ImGroupCreateRequestType>,
}
Fields§
§name: String
User’s first name.
search_by_account: Option<bool>
Enable/disable the option for a sub account to use shared Virtual Room Connector(s) that are set up by the master account. Virtual Room Connectors can only be used by On-prem users.
search_by_domain: Option<bool>
Enable/disable the option for a sub account to use shared Virtual Room Connector(s) that are set up by the master account. Virtual Room Connectors can only be used by On-prem users.
search_by_ma_account: Option<bool>
Enable/disable the option for a sub account to use shared Virtual Room Connector(s) that are set up by the master account. Virtual Room Connectors can only be used by On-prem users.
type_: Option<ImGroupCreateRequestType>
IM Group types:normal
- Only members can see automatically see the other members of this group. Other people can search for members within this group. shared
- Everyone under an account can see the group members automatically.restricted
- Nobody can see the group or search for members except the members in the group.
Trait Implementations§
Source§impl Clone for ImGroupCreateRequest
impl Clone for ImGroupCreateRequest
Source§fn clone(&self) -> ImGroupCreateRequest
fn clone(&self) -> ImGroupCreateRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ImGroupCreateRequest
impl Debug for ImGroupCreateRequest
Source§impl<'de> Deserialize<'de> for ImGroupCreateRequest
impl<'de> Deserialize<'de> for ImGroupCreateRequest
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>,
Source§impl JsonSchema for ImGroupCreateRequest
impl JsonSchema for ImGroupCreateRequest
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read more