-
Notifications
You must be signed in to change notification settings - Fork 13
/
mediaparticipantrequest.go
45 lines (29 loc) · 1.22 KB
/
mediaparticipantrequest.go
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
package platformclientv2
import (
"encoding/json"
"strconv"
"strings"
)
// Mediaparticipantrequest
type Mediaparticipantrequest struct {
// Wrapup - Wrap-up to assign to this participant.
Wrapup *Wrapup `json:"wrapup,omitempty"`
// State - The state to update to set for this participant's communications. Possible values are: 'connected' and 'disconnected'.
State *string `json:"state,omitempty"`
// Recording - True to enable recording of this participant, otherwise false to disable recording.
Recording *bool `json:"recording,omitempty"`
// Muted - True to mute this conversation participant.
Muted *bool `json:"muted,omitempty"`
// Confined - True to confine this conversation participant. Should only be used for ad-hoc conferences
Confined *bool `json:"confined,omitempty"`
// Held - True to hold this conversation participant.
Held *bool `json:"held,omitempty"`
// WrapupSkipped - True to skip wrap-up for this participant.
WrapupSkipped *bool `json:"wrapupSkipped,omitempty"`
}
// String returns a JSON representation of the model
func (o *Mediaparticipantrequest) String() string {
j, _ := json.Marshal(o)
str, _ := strconv.Unquote(strings.Replace(strconv.Quote(string(j)), `\\u`, `\u`, -1))
return str
}