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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
import "context"
// ParticipantCollectionInviteRequestParameter undocumented
type ParticipantCollectionInviteRequestParameter struct {
// Participants undocumented
Participants []InvitationParticipantInfo `json:"participants,omitempty"`
// ClientContext undocumented
ClientContext *string `json:"clientContext,omitempty"`
}
// ParticipantCollectionMuteAllRequestParameter undocumented
type ParticipantCollectionMuteAllRequestParameter struct {
// Participants undocumented
Participants []string `json:"participants,omitempty"`
// ClientContext undocumented
ClientContext *string `json:"clientContext,omitempty"`
}
// ParticipantMuteRequestParameter undocumented
type ParticipantMuteRequestParameter struct {
// ClientContext undocumented
ClientContext *string `json:"clientContext,omitempty"`
}
//
type ParticipantCollectionInviteRequestBuilder struct{ BaseRequestBuilder }
// Invite action undocumented
func (b *CallParticipantsCollectionRequestBuilder) Invite(reqObj *ParticipantCollectionInviteRequestParameter) *ParticipantCollectionInviteRequestBuilder {
bb := &ParticipantCollectionInviteRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
bb.BaseRequestBuilder.baseURL += "/invite"
bb.BaseRequestBuilder.requestObject = reqObj
return bb
}
//
type ParticipantCollectionInviteRequest struct{ BaseRequest }
//
func (b *ParticipantCollectionInviteRequestBuilder) Request() *ParticipantCollectionInviteRequest {
return &ParticipantCollectionInviteRequest{
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
}
}
//
func (r *ParticipantCollectionInviteRequest) Post(ctx context.Context) (resObj *InviteParticipantsOperation, err error) {
err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
return
}
//
type ParticipantCollectionMuteAllRequestBuilder struct{ BaseRequestBuilder }
// MuteAll action undocumented
func (b *CallParticipantsCollectionRequestBuilder) MuteAll(reqObj *ParticipantCollectionMuteAllRequestParameter) *ParticipantCollectionMuteAllRequestBuilder {
bb := &ParticipantCollectionMuteAllRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
bb.BaseRequestBuilder.baseURL += "/muteAll"
bb.BaseRequestBuilder.requestObject = reqObj
return bb
}
//
type ParticipantCollectionMuteAllRequest struct{ BaseRequest }
//
func (b *ParticipantCollectionMuteAllRequestBuilder) Request() *ParticipantCollectionMuteAllRequest {
return &ParticipantCollectionMuteAllRequest{
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
}
}
//
func (r *ParticipantCollectionMuteAllRequest) Post(ctx context.Context) (resObj *MuteParticipantsOperation, err error) {
err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
return
}
//
type ParticipantMuteRequestBuilder struct{ BaseRequestBuilder }
// Mute action undocumented
func (b *ParticipantRequestBuilder) Mute(reqObj *ParticipantMuteRequestParameter) *ParticipantMuteRequestBuilder {
bb := &ParticipantMuteRequestBuilder{BaseRequestBuilder: b.BaseRequestBuilder}
bb.BaseRequestBuilder.baseURL += "/mute"
bb.BaseRequestBuilder.requestObject = reqObj
return bb
}
//
type ParticipantMuteRequest struct{ BaseRequest }
//
func (b *ParticipantMuteRequestBuilder) Request() *ParticipantMuteRequest {
return &ParticipantMuteRequest{
BaseRequest: BaseRequest{baseURL: b.baseURL, client: b.client, requestObject: b.requestObject},
}
}
//
func (r *ParticipantMuteRequest) Post(ctx context.Context) (resObj *MuteParticipantOperation, err error) {
err = r.JSONRequest(ctx, "POST", "", r.requestObject, &resObj)
return
}
|