diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/MeetingTimeSuggestionModel.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/MeetingTimeSuggestionModel.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/MeetingTimeSuggestionModel.go b/vendor/github.com/yaegashi/msgraph.go/beta/MeetingTimeSuggestionModel.go new file mode 100644 index 00000000..69a35a0c --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/MeetingTimeSuggestionModel.go @@ -0,0 +1,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"` +} |