diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/ActionParticipant.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/ActionParticipant.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/ActionParticipant.go b/vendor/github.com/yaegashi/msgraph.go/beta/ActionParticipant.go new file mode 100644 index 00000000..5f654253 --- /dev/null +++ b/vendor/github.com/yaegashi/msgraph.go/beta/ActionParticipant.go @@ -0,0 +1,25 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +// 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"` +} |