/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Insights/V1
NameSizeModeActions
Call/-0755rm
Conference/-0755rm
Room/-0755rm
CallContext.php42290644editdlrm
CallInstance.php35890644editdlrm
CallList.php9350644editdlrm
CallPage.php11330644editdlrm
CallSummariesInstance.php37960644editdlrm
CallSummariesList.php58600644editdlrm
CallSummariesOptions.php97370644editdlrm
CallSummariesPage.php11870644editdlrm
ConferenceContext.php34240644editdlrm
ConferenceInstance.php55210644editdlrm
ConferenceList.php55530644editdlrm
ConferenceOptions.php70760644editdlrm
ConferencePage.php11690644editdlrm
RoomContext.php32680644editdlrm
RoomInstance.php59210644editdlrm
RoomList.php54400644editdlrm
RoomOptions.php42660644editdlrm
RoomPage.php12460644editdlrm
SettingContext.php23560644editdlrm
SettingInstance.php32490644editdlrm
SettingList.php8950644editdlrm
SettingOptions.php36110644editdlrm
SettingPage.php11510644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Insights/V1/RoomOptions.php (4266B)
options['roomType'] = $roomType; $this->options['codec'] = $codec; $this->options['roomName'] = $roomName; $this->options['createdAfter'] = $createdAfter; $this->options['createdBefore'] = $createdBefore; } /** * Type of room. Can be `go`, `peer_to_peer`, `group`, or `group_small`. * * @param string[] $roomType Type of room. * @return $this Fluent Builder */ public function setRoomType(array $roomType): self { $this->options['roomType'] = $roomType; return $this; } /** * Codecs used by participants in the room. Can be `VP8`, `H264`, or `VP9`. * * @param string[] $codec Codecs used by participants in the room. * @return $this Fluent Builder */ public function setCodec(array $codec): self { $this->options['codec'] = $codec; return $this; } /** * Room friendly name. * * @param string $roomName Room friendly name. * @return $this Fluent Builder */ public function setRoomName(string $roomName): self { $this->options['roomName'] = $roomName; return $this; } /** * Only read rooms that started on or after this ISO 8601 timestamp. * * @param \DateTime $createdAfter Only read rooms that started on or after this * ISO 8601 timestamp. * @return $this Fluent Builder */ public function setCreatedAfter(\DateTime $createdAfter): self { $this->options['createdAfter'] = $createdAfter; return $this; } /** * Only read rooms that started before this ISO 8601 timestamp. * * @param \DateTime $createdBefore Only read rooms that started before this ISO * 8601 timestamp. * @return $this Fluent Builder */ public function setCreatedBefore(\DateTime $createdBefore): self { $this->options['createdBefore'] = $createdBefore; return $this; } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { $options = \http_build_query(Values::of($this->options), '', ' '); return '[Twilio.Insights.V1.ReadRoomOptions ' . $options . ']'; } }