blob: 448b24cbdb38e67f6ead7586dd9f7ba2ed0bfadf (
plain) (
blame)
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// MailTips undocumented
type MailTips struct {
// Object is the base model of MailTips
Object
// EmailAddress undocumented
EmailAddress *EmailAddress `json:"emailAddress,omitempty"`
// AutomaticReplies undocumented
AutomaticReplies *AutomaticRepliesMailTips `json:"automaticReplies,omitempty"`
// MailboxFull undocumented
MailboxFull *bool `json:"mailboxFull,omitempty"`
// CustomMailTip undocumented
CustomMailTip *string `json:"customMailTip,omitempty"`
// ExternalMemberCount undocumented
ExternalMemberCount *int `json:"externalMemberCount,omitempty"`
// TotalMemberCount undocumented
TotalMemberCount *int `json:"totalMemberCount,omitempty"`
// DeliveryRestricted undocumented
DeliveryRestricted *bool `json:"deliveryRestricted,omitempty"`
// IsModerated undocumented
IsModerated *bool `json:"isModerated,omitempty"`
// RecipientScope undocumented
RecipientScope *RecipientScopeType `json:"recipientScope,omitempty"`
// RecipientSuggestions undocumented
RecipientSuggestions []Recipient `json:"recipientSuggestions,omitempty"`
// MaxMessageSize undocumented
MaxMessageSize *int `json:"maxMessageSize,omitempty"`
// Error undocumented
Error *MailTipsError `json:"error,omitempty"`
}
|