mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-29 06:02:01 -08: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"`
|
||
|
}
|