/libraries/fabrik/vendor/twilio/sdk/src/Twilio/Rest/Numbers/V2/RegulatoryCompliance/Bundle/ItemAssignmentInstance.php
https://github.com/trob/fabrik · PHP · 124 lines · 54 code · 14 blank · 56 comment · 3 complexity · 25e7207aeea692843fc59841bce97041 MD5 · raw file
- <?php
- /**
- * This code was generated by
- * \ / _ _ _| _ _
- * | (_)\/(_)(_|\/| |(/_ v1.0.0
- * / /
- */
- namespace Twilio\Rest\Numbers\V2\RegulatoryCompliance\Bundle;
- use Twilio\Deserialize;
- use Twilio\Exceptions\TwilioException;
- use Twilio\InstanceResource;
- use Twilio\Values;
- use Twilio\Version;
- /**
- * @property string $sid
- * @property string $bundleSid
- * @property string $accountSid
- * @property string $objectSid
- * @property \DateTime $dateCreated
- * @property string $url
- */
- class ItemAssignmentInstance extends InstanceResource {
- /**
- * Initialize the ItemAssignmentInstance
- *
- * @param \Twilio\Version $version Version that contains the resource
- * @param mixed[] $payload The response payload
- * @param string $bundleSid The unique string that identifies the Bundle
- * resource.
- * @param string $sid The unique string that identifies the resource
- * @return \Twilio\Rest\Numbers\V2\RegulatoryCompliance\Bundle\ItemAssignmentInstance
- */
- public function __construct(Version $version, array $payload, $bundleSid, $sid = null) {
- parent::__construct($version);
- // Marshaled Properties
- $this->properties = array(
- 'sid' => Values::array_get($payload, 'sid'),
- 'bundleSid' => Values::array_get($payload, 'bundle_sid'),
- 'accountSid' => Values::array_get($payload, 'account_sid'),
- 'objectSid' => Values::array_get($payload, 'object_sid'),
- 'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')),
- 'url' => Values::array_get($payload, 'url'),
- );
- $this->solution = array('bundleSid' => $bundleSid, '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 \Twilio\Rest\Numbers\V2\RegulatoryCompliance\Bundle\ItemAssignmentContext Context for this
- * ItemAssignmentInstance
- */
- protected function proxy() {
- if (!$this->context) {
- $this->context = new ItemAssignmentContext(
- $this->version,
- $this->solution['bundleSid'],
- $this->solution['sid']
- );
- }
- return $this->context;
- }
- /**
- * Fetch a ItemAssignmentInstance
- *
- * @return ItemAssignmentInstance Fetched ItemAssignmentInstance
- * @throws TwilioException When an HTTP error occurs.
- */
- public function fetch() {
- return $this->proxy()->fetch();
- }
- /**
- * Deletes the ItemAssignmentInstance
- *
- * @return boolean True if delete succeeds, false otherwise
- * @throws TwilioException When an HTTP error occurs.
- */
- public function delete() {
- return $this->proxy()->delete();
- }
- /**
- * Magic getter to access properties
- *
- * @param string $name Property to access
- * @return mixed The requested property
- * @throws TwilioException For unknown properties
- */
- public function __get($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() {
- $context = array();
- foreach ($this->solution as $key => $value) {
- $context[] = "$key=$value";
- }
- return '[Twilio.Numbers.V2.ItemAssignmentInstance ' . \implode(' ', $context) . ']';
- }
- }