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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
// 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"`
}
// TeamClassSettings undocumented
type TeamClassSettings struct {
// Object is the base model of TeamClassSettings
Object
// NotifyGuardiansAboutAssignments undocumented
NotifyGuardiansAboutAssignments *bool `json:"notifyGuardiansAboutAssignments,omitempty"`
}
// TeamDiscoverySettings undocumented
type TeamDiscoverySettings struct {
// Object is the base model of TeamDiscoverySettings
Object
// ShowInTeamsSearchAndSuggestions undocumented
ShowInTeamsSearchAndSuggestions *bool `json:"showInTeamsSearchAndSuggestions,omitempty"`
}
// TeamFunSettings undocumented
type TeamFunSettings struct {
// Object is the base model of TeamFunSettings
Object
// AllowGiphy undocumented
AllowGiphy *bool `json:"allowGiphy,omitempty"`
// GiphyContentRating undocumented
GiphyContentRating *GiphyRatingType `json:"giphyContentRating,omitempty"`
// AllowStickersAndMemes undocumented
AllowStickersAndMemes *bool `json:"allowStickersAndMemes,omitempty"`
// AllowCustomMemes undocumented
AllowCustomMemes *bool `json:"allowCustomMemes,omitempty"`
}
// TeamGuestSettings undocumented
type TeamGuestSettings struct {
// Object is the base model of TeamGuestSettings
Object
// AllowCreateUpdateChannels undocumented
AllowCreateUpdateChannels *bool `json:"allowCreateUpdateChannels,omitempty"`
// AllowDeleteChannels undocumented
AllowDeleteChannels *bool `json:"allowDeleteChannels,omitempty"`
}
// TeamMemberSettings undocumented
type TeamMemberSettings struct {
// Object is the base model of TeamMemberSettings
Object
// AllowCreateUpdateChannels undocumented
AllowCreateUpdateChannels *bool `json:"allowCreateUpdateChannels,omitempty"`
// AllowCreatePrivateChannels undocumented
AllowCreatePrivateChannels *bool `json:"allowCreatePrivateChannels,omitempty"`
// AllowDeleteChannels undocumented
AllowDeleteChannels *bool `json:"allowDeleteChannels,omitempty"`
// AllowAddRemoveApps undocumented
AllowAddRemoveApps *bool `json:"allowAddRemoveApps,omitempty"`
// AllowCreateUpdateRemoveTabs undocumented
AllowCreateUpdateRemoveTabs *bool `json:"allowCreateUpdateRemoveTabs,omitempty"`
// AllowCreateUpdateRemoveConnectors undocumented
AllowCreateUpdateRemoveConnectors *bool `json:"allowCreateUpdateRemoveConnectors,omitempty"`
}
// TeamMessagingSettings undocumented
type TeamMessagingSettings struct {
// Object is the base model of TeamMessagingSettings
Object
// AllowUserEditMessages undocumented
AllowUserEditMessages *bool `json:"allowUserEditMessages,omitempty"`
// AllowUserDeleteMessages undocumented
AllowUserDeleteMessages *bool `json:"allowUserDeleteMessages,omitempty"`
// AllowOwnerDeleteMessages undocumented
AllowOwnerDeleteMessages *bool `json:"allowOwnerDeleteMessages,omitempty"`
// AllowTeamMentions undocumented
AllowTeamMentions *bool `json:"allowTeamMentions,omitempty"`
// AllowChannelMentions undocumented
AllowChannelMentions *bool `json:"allowChannelMentions,omitempty"`
}
|