forked from jshiffer/matterbridge
795a8705c3
Documentation on https://github.com/42wim/matterbridge/wiki/MS-Teams-setup
22 lines
634 B
Go
22 lines
634 B
Go
// Code generated by msgraph-generate.go DO NOT EDIT.
|
|
|
|
package msgraph
|
|
|
|
import "time"
|
|
|
|
// RecurrenceRange undocumented
|
|
type RecurrenceRange struct {
|
|
// Object is the base model of RecurrenceRange
|
|
Object
|
|
// Type undocumented
|
|
Type *RecurrenceRangeType `json:"type,omitempty"`
|
|
// StartDate undocumented
|
|
StartDate *time.Time `json:"startDate,omitempty"`
|
|
// EndDate undocumented
|
|
EndDate *time.Time `json:"endDate,omitempty"`
|
|
// RecurrenceTimeZone undocumented
|
|
RecurrenceTimeZone *string `json:"recurrenceTimeZone,omitempty"`
|
|
// NumberOfOccurrences undocumented
|
|
NumberOfOccurrences *int `json:"numberOfOccurrences,omitempty"`
|
|
}
|