PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Video
/
V1
/
Room
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Video\V1\Room; use Twilio\Options; use Twilio\Values; abstract class RecordingRulesOptions { /** * @param array $rules A JSON-encoded array of recording rules * @return UpdateRecordingRulesOptions Options builder */ public static function update(array $rules = Values::ARRAY_NONE): UpdateRecordingRulesOptions { return new UpdateRecordingRulesOptions($rules); } } class UpdateRecordingRulesOptions extends Options { /** * @param array $rules A JSON-encoded array of recording rules */ public function __construct(array $rules = Values::ARRAY_NONE) { $this->options['rules'] = $rules; } /** * A JSON-encoded array of recording rules. * * @param array $rules A JSON-encoded array of recording rules * @return $this Fluent Builder */ public function setRules(array $rules): self { $this->options['rules'] = $rules; 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.Video.V1.UpdateRecordingRulesOptions ' . $options . ']'; } }
[-] RoomRecordingContext.php
[edit]
[+]
..
[-] RecordingRulesInstance.php
[edit]
[+]
Participant
[-] ParticipantList.php
[edit]
[-] RecordingRulesList.php
[edit]
[-] ParticipantContext.php
[edit]
[-] RecordingRulesOptions.php
[edit]
[-] RoomRecordingOptions.php
[edit]
[-] RoomRecordingInstance.php
[edit]
[-] ParticipantPage.php
[edit]
[-] RoomRecordingPage.php
[edit]
[-] ParticipantInstance.php
[edit]
[-] RoomRecordingList.php
[edit]
[-] RecordingRulesPage.php
[edit]
[-] ParticipantOptions.php
[edit]