webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Video
/
V1
/
Room
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
Participant
--
ren
ParticipantContext.php
5.941KB
edt
ren
ParticipantInstance.php
5.345KB
edt
ren
ParticipantList.php
5.385KB
edt
ren
ParticipantOptions.php
5.551KB
edt
ren
ParticipantPage.php
1.176KB
edt
ren
RecordingRulesInstance.php
2.091KB
edt
ren
RecordingRulesList.php
2.046KB
edt
ren
RecordingRulesOptions.php
1.381KB
edt
ren
RecordingRulesPage.php
1.193KB
edt
ren
RoomRecordingContext.php
2.056KB
edt
ren
RoomRecordingInstance.php
4.728KB
edt
ren
RoomRecordingList.php
5.479KB
edt
ren
RoomRecordingOptions.php
4.196KB
edt
ren
RoomRecordingPage.php
1.188KB
edt
ren
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Video\V1\Room; use Twilio\Deserialize; use Twilio\Exceptions\TwilioException; use Twilio\InstanceResource; use Twilio\Values; use Twilio\Version; /** * @property string $roomSid * @property string[] $rules * @property \DateTime $dateCreated * @property \DateTime $dateUpdated */ class RecordingRulesInstance extends InstanceResource { /** * Initialize the RecordingRulesInstance * * @param Version $version Version that contains the resource * @param mixed[] $payload The response payload * @param string $roomSid The SID of the Room resource for the Recording Rules */ public function __construct(Version $version, array $payload, string $roomSid) { parent::__construct($version); // Marshaled Properties $this->properties = [ 'roomSid' => Values::array_get($payload, 'room_sid'), 'rules' => Values::array_get($payload, 'rules'), 'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')), 'dateUpdated' => Deserialize::dateTime(Values::array_get($payload, 'date_updated')), ]; $this->solution = ['roomSid' => $roomSid, ]; } /** * Magic getter to access properties * * @param string $name Property to access * @return mixed The requested property * @throws TwilioException For unknown properties */ public function __get(string $name) { if (\array_key_exists($name, $this->properties)) { return $this->properties[$name]; } if (\property_exists($this, '_' . $name)) { $method = 'get' . \ucfirst($name); return $this->$method(); } throw new TwilioException('Unknown property: ' . $name); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { return '[Twilio.Video.V1.RecordingRulesInstance]'; } }
<=Back
Liking