blob: 69a35a0c9aee8d7d2980091e95f387105f3e807f (
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// MeetingTimeSuggestion undocumented
type MeetingTimeSuggestion struct {
// Object is the base model of MeetingTimeSuggestion
Object
// Confidence undocumented
Confidence *float64 `json:"confidence,omitempty"`
// Order undocumented
Order *int `json:"order,omitempty"`
// OrganizerAvailability undocumented
OrganizerAvailability *FreeBusyStatus `json:"organizerAvailability,omitempty"`
// AttendeeAvailability undocumented
AttendeeAvailability []AttendeeAvailability `json:"attendeeAvailability,omitempty"`
// Locations undocumented
Locations []Location `json:"locations,omitempty"`
// SuggestionReason undocumented
SuggestionReason *string `json:"suggestionReason,omitempty"`
// MeetingTimeSlot undocumented
MeetingTimeSlot *TimeSlot `json:"meetingTimeSlot,omitempty"`
}
|