mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-02-18 16:09:14 +00:00
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"`
|
|
}
|