1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// Team undocumented
type Team struct {
// Entity is the base model of Team
Entity
// DisplayName undocumented
DisplayName *string `json:"displayName,omitempty"`
// Description undocumented
Description *string `json:"description,omitempty"`
// InternalID undocumented
InternalID *string `json:"internalId,omitempty"`
// Classification undocumented
Classification *string `json:"classification,omitempty"`
// Specialization undocumented
Specialization *TeamSpecialization `json:"specialization,omitempty"`
// Visibility undocumented
Visibility *TeamVisibilityType `json:"visibility,omitempty"`
// WebURL undocumented
WebURL *string `json:"webUrl,omitempty"`
// MemberSettings undocumented
MemberSettings *TeamMemberSettings `json:"memberSettings,omitempty"`
// GuestSettings undocumented
GuestSettings *TeamGuestSettings `json:"guestSettings,omitempty"`
// MessagingSettings undocumented
MessagingSettings *TeamMessagingSettings `json:"messagingSettings,omitempty"`
// FunSettings undocumented
FunSettings *TeamFunSettings `json:"funSettings,omitempty"`
// DiscoverySettings undocumented
DiscoverySettings *TeamDiscoverySettings `json:"discoverySettings,omitempty"`
// IsArchived undocumented
IsArchived *bool `json:"isArchived,omitempty"`
// Schedule undocumented
Schedule *Schedule `json:"schedule,omitempty"`
// Group undocumented
Group *Group `json:"group,omitempty"`
// Template undocumented
Template *TeamsTemplate `json:"template,omitempty"`
// Photo undocumented
Photo *ProfilePhoto `json:"photo,omitempty"`
// Owners undocumented
Owners []User `json:"owners,omitempty"`
// Channels undocumented
Channels []Channel `json:"channels,omitempty"`
// PrimaryChannel undocumented
PrimaryChannel *Channel `json:"primaryChannel,omitempty"`
// Apps undocumented
Apps []TeamsCatalogApp `json:"apps,omitempty"`
// InstalledApps undocumented
InstalledApps []TeamsAppInstallation `json:"installedApps,omitempty"`
// Operations undocumented
Operations []TeamsAsyncOperation `json:"operations,omitempty"`
}
|