github.com/yaegashi/msgraph.go@v0.1.4/beta/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  	// CanceledDateTime undocumented
    18  	CanceledDateTime *time.Time `json:"canceledDateTime,omitempty"`
    19  	// ExpirationDateTime undocumented
    20  	ExpirationDateTime *time.Time `json:"expirationDateTime,omitempty"`
    21  	// EntryExitAnnouncement undocumented
    22  	EntryExitAnnouncement *bool `json:"entryExitAnnouncement,omitempty"`
    23  	// JoinURL undocumented
    24  	JoinURL *string `json:"joinUrl,omitempty"`
    25  	// Subject undocumented
    26  	Subject *string `json:"subject,omitempty"`
    27  	// IsCancelled undocumented
    28  	IsCancelled *bool `json:"isCancelled,omitempty"`
    29  	// Participants undocumented
    30  	Participants *MeetingParticipants `json:"participants,omitempty"`
    31  	// IsBroadcast undocumented
    32  	IsBroadcast *bool `json:"isBroadcast,omitempty"`
    33  	// AccessLevel undocumented
    34  	AccessLevel *AccessLevel `json:"accessLevel,omitempty"`
    35  	// Capabilities undocumented
    36  	Capabilities []MeetingCapabilities `json:"capabilities,omitempty"`
    37  	// AudioConferencing undocumented
    38  	AudioConferencing *AudioConferencing `json:"audioConferencing,omitempty"`
    39  	// ChatInfo undocumented
    40  	ChatInfo *ChatInfo `json:"chatInfo,omitempty"`
    41  	// VideoTeleconferenceID undocumented
    42  	VideoTeleconferenceID *string `json:"videoTeleconferenceId,omitempty"`
    43  }
    44  
    45  // OnlineMeetingInfo undocumented
    46  type OnlineMeetingInfo struct {
    47  	// Object is the base model of OnlineMeetingInfo
    48  	Object
    49  	// JoinURL undocumented
    50  	JoinURL *string `json:"joinUrl,omitempty"`
    51  	// ConferenceID undocumented
    52  	ConferenceID *string `json:"conferenceId,omitempty"`
    53  	// TollNumber undocumented
    54  	TollNumber *string `json:"tollNumber,omitempty"`
    55  	// TollFreeNumbers undocumented
    56  	TollFreeNumbers []string `json:"tollFreeNumbers,omitempty"`
    57  	// QuickDial undocumented
    58  	QuickDial *string `json:"quickDial,omitempty"`
    59  	// Phones undocumented
    60  	Phones []Phone `json:"phones,omitempty"`
    61  }