/
home
/
techb158
/
dev.balacoffee.com
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Video
/
V1
/
/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Video/V1
mkdir
upload
Name
Size
Mode
Actions
Room/
-
0755
rm
CompositionContext.php
1810
0644
edit
dl
rm
CompositionHookContext.php
3285
0644
edit
dl
rm
CompositionHookInstance.php
5056
0644
edit
dl
rm
CompositionHookList.php
6865
0644
edit
dl
rm
CompositionHookOptions.php
26510
0644
edit
dl
rm
CompositionHookPage.php
1190
0644
edit
dl
rm
CompositionInstance.php
5112
0644
edit
dl
rm
CompositionList.php
6702
0644
edit
dl
rm
CompositionOptions.php
14291
0644
edit
dl
rm
CompositionPage.php
1166
0644
edit
dl
rm
CompositionSettingsContext.php
2647
0644
edit
dl
rm
CompositionSettingsInstance.php
4034
0644
edit
dl
rm
CompositionSettingsList.php
961
0644
edit
dl
rm
CompositionSettingsOptions.php
5389
0644
edit
dl
rm
CompositionSettingsPage.php
1214
0644
edit
dl
rm
RecordingContext.php
1790
0644
edit
dl
rm
RecordingInstance.php
4692
0644
edit
dl
rm
RecordingList.php
5450
0644
edit
dl
rm
RecordingOptions.php
6117
0644
edit
dl
rm
RecordingPage.php
1154
0644
edit
dl
rm
RecordingSettingsContext.php
2556
0644
edit
dl
rm
RecordingSettingsInstance.php
3899
0644
edit
dl
rm
RecordingSettingsList.php
949
0644
edit
dl
rm
RecordingSettingsOptions.php
5345
0644
edit
dl
rm
RecordingSettingsPage.php
1202
0644
edit
dl
rm
RoomContext.php
4551
0644
edit
dl
rm
RoomInstance.php
6279
0644
edit
dl
rm
RoomList.php
6826
0644
edit
dl
rm
RoomOptions.php
17904
0644
edit
dl
rm
RoomPage.php
1124
0644
edit
dl
rm
Edit:
/home/techb158/dev.balacoffee.com/vendor/twilio/sdk/src/Twilio/Rest/Video/V1/RecordingOptions.php
(6117B)
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Video\V1; use Twilio\Options; use Twilio\Values; abstract class RecordingOptions { /** * @param string $status Read only the recordings that have this status * @param string $sourceSid Read only the recordings that have this source_sid * @param string[] $groupingSid Read only recordings that have this grouping_sid * @param \DateTime $dateCreatedAfter Read only recordings that started on or * after this [ISO * 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone * @param \DateTime $dateCreatedBefore Read only recordings that started before * this [ISO * 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone * @param string $mediaType Read only recordings that have this media type * @return ReadRecordingOptions Options builder */ public static function read(string $status = Values::NONE, string $sourceSid = Values::NONE, array $groupingSid = Values::ARRAY_NONE, \DateTime $dateCreatedAfter = Values::NONE, \DateTime $dateCreatedBefore = Values::NONE, string $mediaType = Values::NONE): ReadRecordingOptions { return new ReadRecordingOptions($status, $sourceSid, $groupingSid, $dateCreatedAfter, $dateCreatedBefore, $mediaType); } } class ReadRecordingOptions extends Options { /** * @param string $status Read only the recordings that have this status * @param string $sourceSid Read only the recordings that have this source_sid * @param string[] $groupingSid Read only recordings that have this grouping_sid * @param \DateTime $dateCreatedAfter Read only recordings that started on or * after this [ISO * 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone * @param \DateTime $dateCreatedBefore Read only recordings that started before * this [ISO * 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone * @param string $mediaType Read only recordings that have this media type */ public function __construct(string $status = Values::NONE, string $sourceSid = Values::NONE, array $groupingSid = Values::ARRAY_NONE, \DateTime $dateCreatedAfter = Values::NONE, \DateTime $dateCreatedBefore = Values::NONE, string $mediaType = Values::NONE) { $this->options['status'] = $status; $this->options['sourceSid'] = $sourceSid; $this->options['groupingSid'] = $groupingSid; $this->options['dateCreatedAfter'] = $dateCreatedAfter; $this->options['dateCreatedBefore'] = $dateCreatedBefore; $this->options['mediaType'] = $mediaType; } /** * Read only the recordings that have this status. Can be: `processing`, `completed`, or `deleted`. * * @param string $status Read only the recordings that have this status * @return $this Fluent Builder */ public function setStatus(string $status): self { $this->options['status'] = $status; return $this; } /** * Read only the recordings that have this `source_sid`. * * @param string $sourceSid Read only the recordings that have this source_sid * @return $this Fluent Builder */ public function setSourceSid(string $sourceSid): self { $this->options['sourceSid'] = $sourceSid; return $this; } /** * Read only recordings with this `grouping_sid`, which may include a `participant_sid` and/or a `room_sid`. * * @param string[] $groupingSid Read only recordings that have this grouping_sid * @return $this Fluent Builder */ public function setGroupingSid(array $groupingSid): self { $this->options['groupingSid'] = $groupingSid; return $this; } /** * Read only recordings that started on or after this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone. * * @param \DateTime $dateCreatedAfter Read only recordings that started on or * after this [ISO * 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone * @return $this Fluent Builder */ public function setDateCreatedAfter(\DateTime $dateCreatedAfter): self { $this->options['dateCreatedAfter'] = $dateCreatedAfter; return $this; } /** * Read only recordings that started before this [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone, given as `YYYY-MM-DDThh:mm:ss+|-hh:mm` or `YYYY-MM-DDThh:mm:ssZ`. * * @param \DateTime $dateCreatedBefore Read only recordings that started before * this [ISO * 8601](https://en.wikipedia.org/wiki/ISO_8601) date-time with time zone * @return $this Fluent Builder */ public function setDateCreatedBefore(\DateTime $dateCreatedBefore): self { $this->options['dateCreatedBefore'] = $dateCreatedBefore; return $this; } /** * Read only recordings that have this media type. Can be either `audio` or `video`. * * @param string $mediaType Read only recordings that have this media type * @return $this Fluent Builder */ public function setMediaType(string $mediaType): self { $this->options['mediaType'] = $mediaType; 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.ReadRecordingOptions ' . $options . ']'; } }
Save
cmd:
run