[][src]Struct graph_rs_types::entitytypes::Group

pub struct Group {
    pub assigned_licenses: Vec<AssignedLicense>,
    pub classification: String,
    pub created_date_time: String,
    pub description: String,
    pub display_name: String,
    pub has_members_with_license_errors: bool,
    pub group_types: Vec<String>,
    pub license_processing_state: LicenseProcessingState,
    pub mail: String,
    pub mail_enabled: bool,
    pub mail_nickname: String,
    pub on_premises_last_sync_date_time: String,
    pub on_premises_provisioning_errors: Vec<OnPremisesProvisioningError>,
    pub on_premises_security_identifier: String,
    pub on_premises_sync_enabled: bool,
    pub preferred_data_location: String,
    pub proxy_addresses: Vec<String>,
    pub renewed_date_time: String,
    pub security_enabled: bool,
    pub visibility: String,
    pub allow_external_senders: bool,
    pub auto_subscribe_new_members: bool,
    pub is_subscribed_by_mail: bool,
    pub unseen_count: i32,
    pub is_archived: bool,
    pub members: Vec<DirectoryObject>,
    pub member_of: Vec<DirectoryObject>,
    pub members_with_license_errors: Vec<DirectoryObject>,
    pub transitive_members: Vec<DirectoryObject>,
    pub transitive_member_of: Vec<DirectoryObject>,
    pub created_on_behalf_of: DirectoryObject,
    pub owners: Vec<DirectoryObject>,
    pub settings: Vec<GroupSetting>,
    pub extensions: Vec<Extension>,
    pub threads: Vec<ConversationThread>,
    pub calendar: Calendar,
    pub calendar_view: Vec<Event>,
    pub events: Vec<Event>,
    pub conversations: Vec<Conversation>,
    pub photo: ProfilePhoto,
    pub photos: Vec<ProfilePhoto>,
    pub accepted_senders: Vec<DirectoryObject>,
    pub rejected_senders: Vec<DirectoryObject>,
    pub drive: Drive,
    pub drives: Vec<Drive>,
    pub sites: Vec<Site>,
    pub planner: PlannerGroup,
    pub onenote: Onenote,
    pub group_lifecycle_policies: Vec<GroupLifecyclePolicy>,
    pub team: Team,
}

Fields

assigned_licenses: Vec<AssignedLicense>classification: Stringcreated_date_time: Stringdescription: Stringdisplay_name: Stringhas_members_with_license_errors: boolgroup_types: Vec<String>license_processing_state: LicenseProcessingStatemail: Stringmail_enabled: boolmail_nickname: Stringon_premises_last_sync_date_time: Stringon_premises_provisioning_errors: Vec<OnPremisesProvisioningError>on_premises_security_identifier: Stringon_premises_sync_enabled: boolpreferred_data_location: Stringproxy_addresses: Vec<String>renewed_date_time: Stringsecurity_enabled: boolvisibility: Stringallow_external_senders: boolauto_subscribe_new_members: boolis_subscribed_by_mail: boolunseen_count: i32is_archived: boolmembers: Vec<DirectoryObject>member_of: Vec<DirectoryObject>members_with_license_errors: Vec<DirectoryObject>transitive_members: Vec<DirectoryObject>transitive_member_of: Vec<DirectoryObject>created_on_behalf_of: DirectoryObjectowners: Vec<DirectoryObject>settings: Vec<GroupSetting>extensions: Vec<Extension>threads: Vec<ConversationThread>calendar: Calendarcalendar_view: Vec<Event>events: Vec<Event>conversations: Vec<Conversation>photo: ProfilePhotophotos: Vec<ProfilePhoto>accepted_senders: Vec<DirectoryObject>rejected_senders: Vec<DirectoryObject>drive: Drivedrives: Vec<Drive>sites: Vec<Site>planner: PlannerGrouponenote: Onenotegroup_lifecycle_policies: Vec<GroupLifecyclePolicy>team: Team

Trait Implementations

impl Eq for Group[src]

impl Clone for Group[src]

impl PartialEq<Group> for Group[src]

impl Debug for Group[src]

impl Serialize for Group[src]

impl<'de> Deserialize<'de> for Group[src]

Auto Trait Implementations

impl Send for Group

impl Unpin for Group

impl Sync for Group

impl RefUnwindSafe for Group

impl UnwindSafe for Group

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]