github.com/yaegashi/msgraph.go@v0.1.4/v1.0/ModelCalendar.go (about)

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Calendar undocumented
     6  type Calendar struct {
     7  	// Entity is the base model of Calendar
     8  	Entity
     9  	// Name undocumented
    10  	Name *string `json:"name,omitempty"`
    11  	// Color undocumented
    12  	Color *CalendarColor `json:"color,omitempty"`
    13  	// ChangeKey undocumented
    14  	ChangeKey *string `json:"changeKey,omitempty"`
    15  	// CanShare undocumented
    16  	CanShare *bool `json:"canShare,omitempty"`
    17  	// CanViewPrivateItems undocumented
    18  	CanViewPrivateItems *bool `json:"canViewPrivateItems,omitempty"`
    19  	// CanEdit undocumented
    20  	CanEdit *bool `json:"canEdit,omitempty"`
    21  	// Owner undocumented
    22  	Owner *EmailAddress `json:"owner,omitempty"`
    23  	// SingleValueExtendedProperties undocumented
    24  	SingleValueExtendedProperties []SingleValueLegacyExtendedProperty `json:"singleValueExtendedProperties,omitempty"`
    25  	// MultiValueExtendedProperties undocumented
    26  	MultiValueExtendedProperties []MultiValueLegacyExtendedProperty `json:"multiValueExtendedProperties,omitempty"`
    27  	// Events undocumented
    28  	Events []Event `json:"events,omitempty"`
    29  	// CalendarView undocumented
    30  	CalendarView []Event `json:"calendarView,omitempty"`
    31  }
    32  
    33  // CalendarGroup undocumented
    34  type CalendarGroup struct {
    35  	// Entity is the base model of CalendarGroup
    36  	Entity
    37  	// Name undocumented
    38  	Name *string `json:"name,omitempty"`
    39  	// ClassID undocumented
    40  	ClassID *UUID `json:"classId,omitempty"`
    41  	// ChangeKey undocumented
    42  	ChangeKey *string `json:"changeKey,omitempty"`
    43  	// Calendars undocumented
    44  	Calendars []Calendar `json:"calendars,omitempty"`
    45  }