github.com/yaegashi/msgraph.go@v0.1.4/beta/ModelRecurrence.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // RecurrencePattern undocumented
     6  type RecurrencePattern struct {
     7  	// Object is the base model of RecurrencePattern
     8  	Object
     9  	// Type undocumented
    10  	Type *RecurrencePatternType `json:"type,omitempty"`
    11  	// Interval undocumented
    12  	Interval *int `json:"interval,omitempty"`
    13  	// Month undocumented
    14  	Month *int `json:"month,omitempty"`
    15  	// DayOfMonth undocumented
    16  	DayOfMonth *int `json:"dayOfMonth,omitempty"`
    17  	// DaysOfWeek undocumented
    18  	DaysOfWeek []DayOfWeek `json:"daysOfWeek,omitempty"`
    19  	// FirstDayOfWeek undocumented
    20  	FirstDayOfWeek *DayOfWeek `json:"firstDayOfWeek,omitempty"`
    21  	// Index undocumented
    22  	Index *WeekIndex `json:"index,omitempty"`
    23  }
    24  
    25  // RecurrenceRange undocumented
    26  type RecurrenceRange struct {
    27  	// Object is the base model of RecurrenceRange
    28  	Object
    29  	// Type undocumented
    30  	Type *RecurrenceRangeType `json:"type,omitempty"`
    31  	// StartDate undocumented
    32  	StartDate *Date `json:"startDate,omitempty"`
    33  	// EndDate undocumented
    34  	EndDate *Date `json:"endDate,omitempty"`
    35  	// RecurrenceTimeZone undocumented
    36  	RecurrenceTimeZone *string `json:"recurrenceTimeZone,omitempty"`
    37  	// NumberOfOccurrences undocumented
    38  	NumberOfOccurrences *int `json:"numberOfOccurrences,omitempty"`
    39  }