Skip to content

Commit

Permalink
VT-8456:RecordParticipantTrackXML
Browse files Browse the repository at this point in the history
  • Loading branch information
ajay-plivo committed Nov 14, 2024
1 parent 69acb24 commit e278c7a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions xml/plivoxml.go
Original file line number Diff line number Diff line change
Expand Up @@ -1197,6 +1197,12 @@ type MultiPartyCallElement struct {
StartRecordingAudioMethod *string `xml:"StartRecordingAudioMethod,attr"`
StopRecordingAudio *string `xml:"StopRecordingAudio,attr"`
StopRecordingAudioMethod *string `xml:"StopRecordingAudioMethod,attr"`
RecordParticipantTrack *bool `xml:"record_participant_track,attr"`
}

func (e MultiPartyCallElement) SetRecordParticipantTrack(value bool) MultiPartyCallElement {
e.RecordParticipantTrack = &value
return e
}

func (e MultiPartyCallElement) SetRole(value string) MultiPartyCallElement {
Expand Down

0 comments on commit e278c7a

Please sign in to comment.