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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  // Attendee undocumented
     6  type Attendee struct {
     7  	// AttendeeBase is the base model of Attendee
     8  	AttendeeBase
     9  	// Status undocumented
    10  	Status *ResponseStatus `json:"status,omitempty"`
    11  	// ProposedNewTime undocumented
    12  	ProposedNewTime *TimeSlot `json:"proposedNewTime,omitempty"`
    13  }
    14  
    15  // AttendeeAvailability undocumented
    16  type AttendeeAvailability struct {
    17  	// Object is the base model of AttendeeAvailability
    18  	Object
    19  	// Attendee undocumented
    20  	Attendee *AttendeeBase `json:"attendee,omitempty"`
    21  	// Availability undocumented
    22  	Availability *FreeBusyStatus `json:"availability,omitempty"`
    23  }
    24  
    25  // AttendeeBase undocumented
    26  type AttendeeBase struct {
    27  	// Recipient is the base model of AttendeeBase
    28  	Recipient
    29  	// Type undocumented
    30  	Type *AttendeeType `json:"type,omitempty"`
    31  }