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

     1  // Code generated by msgraph.go/gen DO NOT EDIT.
     2  
     3  package msgraph
     4  
     5  import "time"
     6  
     7  // OnlineMeeting undocumented
     8  type OnlineMeeting struct {
     9  	// Entity is the base model of OnlineMeeting
    10  	Entity
    11  	// CreationDateTime undocumented
    12  	CreationDateTime *time.Time `json:"creationDateTime,omitempty"`
    13  	// StartDateTime undocumented
    14  	StartDateTime *time.Time `json:"startDateTime,omitempty"`
    15  	// EndDateTime undocumented
    16  	EndDateTime *time.Time `json:"endDateTime,omitempty"`
    17  	// JoinWebURL undocumented
    18  	JoinWebURL *string `json:"joinWebUrl,omitempty"`
    19  	// Subject undocumented
    20  	Subject *string `json:"subject,omitempty"`
    21  	// Participants undocumented
    22  	Participants *MeetingParticipants `json:"participants,omitempty"`
    23  	// AudioConferencing undocumented
    24  	AudioConferencing *AudioConferencing `json:"audioConferencing,omitempty"`
    25  	// ChatInfo undocumented
    26  	ChatInfo *ChatInfo `json:"chatInfo,omitempty"`
    27  	// VideoTeleconferenceID undocumented
    28  	VideoTeleconferenceID *string `json:"videoTeleconferenceId,omitempty"`
    29  }