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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // TimeConstraint undocumented
     6  type TimeConstraint struct {
     7  	// Object is the base model of TimeConstraint
     8  	Object
     9  	// ActivityDomain undocumented
    10  	ActivityDomain *ActivityDomain `json:"activityDomain,omitempty"`
    11  	// TimeSlots undocumented
    12  	TimeSlots []TimeSlot `json:"timeSlots,omitempty"`
    13  }
    14  
    15  // TimeSlot undocumented
    16  type TimeSlot struct {
    17  	// Object is the base model of TimeSlot
    18  	Object
    19  	// Start undocumented
    20  	Start *DateTimeTimeZone `json:"start,omitempty"`
    21  	// End undocumented
    22  	End *DateTimeTimeZone `json:"end,omitempty"`
    23  }
    24  
    25  // TimeZoneBase undocumented
    26  type TimeZoneBase struct {
    27  	// Object is the base model of TimeZoneBase
    28  	Object
    29  	// Name undocumented
    30  	Name *string `json:"name,omitempty"`
    31  }
    32  
    33  // TimeZoneInformation undocumented
    34  type TimeZoneInformation struct {
    35  	// Object is the base model of TimeZoneInformation
    36  	Object
    37  	// Alias undocumented
    38  	Alias *string `json:"alias,omitempty"`
    39  	// DisplayName undocumented
    40  	DisplayName *string `json:"displayName,omitempty"`
    41  }