summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/yaegashi/msgraph.go/beta/ModelOnline.go
blob: 7d7dae004e884c9e8179c79c2e4ebb1e2566c8d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Code generated by msgraph.go/gen DO NOT EDIT.

package msgraph

import "time"

// OnlineMeeting undocumented
type OnlineMeeting struct {
	// Entity is the base model of OnlineMeeting
	Entity
	// CreationDateTime undocumented
	CreationDateTime *time.Time `json:"creationDateTime,omitempty"`
	// StartDateTime undocumented
	StartDateTime *time.Time `json:"startDateTime,omitempty"`
	// EndDateTime undocumented
	EndDateTime *time.Time `json:"endDateTime,omitempty"`
	// CanceledDateTime undocumented
	CanceledDateTime *time.Time `json:"canceledDateTime,omitempty"`
	// ExpirationDateTime undocumented
	ExpirationDateTime *time.Time `json:"expirationDateTime,omitempty"`
	// EntryExitAnnouncement undocumented
	EntryExitAnnouncement *bool `json:"entryExitAnnouncement,omitempty"`
	// JoinURL undocumented
	JoinURL *string `json:"joinUrl,omitempty"`
	// Subject undocumented
	Subject *string `json:"subject,omitempty"`
	// IsCancelled undocumented
	IsCancelled *bool `json:"isCancelled,omitempty"`
	// Participants undocumented
	Participants *MeetingParticipants `json:"participants,omitempty"`
	// IsBroadcast undocumented
	IsBroadcast *bool `json:"isBroadcast,omitempty"`
	// AccessLevel undocumented
	AccessLevel *AccessLevel `json:"accessLevel,omitempty"`
	// Capabilities undocumented
	Capabilities []MeetingCapabilities `json:"capabilities,omitempty"`
	// AudioConferencing undocumented
	AudioConferencing *AudioConferencing `json:"audioConferencing,omitempty"`
	// ChatInfo undocumented
	ChatInfo *ChatInfo `json:"chatInfo,omitempty"`
	// VideoTeleconferenceID undocumented
	VideoTeleconferenceID *string `json:"videoTeleconferenceId,omitempty"`
}

// OnlineMeetingInfo undocumented
type OnlineMeetingInfo struct {
	// Object is the base model of OnlineMeetingInfo
	Object
	// JoinURL undocumented
	JoinURL *string `json:"joinUrl,omitempty"`
	// ConferenceID undocumented
	ConferenceID *string `json:"conferenceId,omitempty"`
	// TollNumber undocumented
	TollNumber *string `json:"tollNumber,omitempty"`
	// TollFreeNumbers undocumented
	TollFreeNumbers []string `json:"tollFreeNumbers,omitempty"`
	// QuickDial undocumented
	QuickDial *string `json:"quickDial,omitempty"`
	// Phones undocumented
	Phones []Phone `json:"phones,omitempty"`
}