/home/desid573/public_html/hooks/twilio-php-master/Twilio/Rest/Video/V1/Room
NameSizeModeActions
Participant/-0755rm
ParticipantContext.php50220644editdlrm
ParticipantInstance.php48910644editdlrm
ParticipantList.php55030644editdlrm
ParticipantOptions.php41120644editdlrm
ParticipantPage.php7620644editdlrm
RoomRecordingContext.php17530644editdlrm
RoomRecordingInstance.php41630644editdlrm
RoomRecordingList.php55350644editdlrm
RoomRecordingOptions.php30170644editdlrm
RoomRecordingPage.php7680644editdlrm
Edit: /home/desid573/public_html/hooks/twilio-php-master/Twilio/Rest/Video/V1/Room/ParticipantOptions.php (4112B)
options['status'] = $status; $this->options['identity'] = $identity; $this->options['dateCreatedAfter'] = $dateCreatedAfter; $this->options['dateCreatedBefore'] = $dateCreatedBefore; } /** * The status * * @param string $status The status * @return $this Fluent Builder */ public function setStatus($status) { $this->options['status'] = $status; return $this; } /** * The identity * * @param string $identity The identity * @return $this Fluent Builder */ public function setIdentity($identity) { $this->options['identity'] = $identity; return $this; } /** * The date_created_after * * @param \DateTime $dateCreatedAfter The date_created_after * @return $this Fluent Builder */ public function setDateCreatedAfter($dateCreatedAfter) { $this->options['dateCreatedAfter'] = $dateCreatedAfter; return $this; } /** * The date_created_before * * @param \DateTime $dateCreatedBefore The date_created_before * @return $this Fluent Builder */ public function setDateCreatedBefore($dateCreatedBefore) { $this->options['dateCreatedBefore'] = $dateCreatedBefore; return $this; } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { $options = array(); foreach ($this->options as $key => $value) { if ($value != Values::NONE) { $options[] = "$key=$value"; } } return '[Twilio.Video.V1.ReadParticipantOptions ' . implode(' ', $options) . ']'; } } class UpdateParticipantOptions extends Options { /** * @param string $status The status */ public function __construct($status = Values::NONE) { $this->options['status'] = $status; } /** * The status * * @param string $status The status * @return $this Fluent Builder */ public function setStatus($status) { $this->options['status'] = $status; return $this; } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString() { $options = array(); foreach ($this->options as $key => $value) { if ($value != Values::NONE) { $options[] = "$key=$value"; } } return '[Twilio.Video.V1.UpdateParticipantOptions ' . implode(' ', $options) . ']'; } }