File "RecordInstance.php"
Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/twilio/sdk/src/Twilio/Rest/Api/V2010/Account/Usage/RecordInstance.php
File size: 3.65 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Api
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace Twilio\Rest\Api\V2010\Account\Usage;
use Twilio\Exceptions\TwilioException;
use Twilio\InstanceResource;
use Twilio\Values;
use Twilio\Version;
use Twilio\Deserialize;
/**
* @property string|null $accountSid
* @property string|null $apiVersion
* @property string|null $asOf
* @property string $category
* @property string|null $count
* @property string|null $countUnit
* @property string|null $description
* @property \DateTime|null $endDate
* @property string|null $price
* @property string|null $priceUnit
* @property \DateTime|null $startDate
* @property array|null $subresourceUris
* @property string|null $uri
* @property string|null $usage
* @property string|null $usageUnit
*/
class RecordInstance extends InstanceResource
{
/**
* Initialize the RecordInstance
*
* @param Version $version Version that contains the resource
* @param mixed[] $payload The response payload
* @param string $accountSid The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the UsageRecord resources to read.
*/
public function __construct(Version $version, array $payload, string $accountSid)
{
parent::__construct($version);
// Marshaled Properties
$this->properties = [
'accountSid' => Values::array_get($payload, 'account_sid'),
'apiVersion' => Values::array_get($payload, 'api_version'),
'asOf' => Values::array_get($payload, 'as_of'),
'category' => Values::array_get($payload, 'category'),
'count' => Values::array_get($payload, 'count'),
'countUnit' => Values::array_get($payload, 'count_unit'),
'description' => Values::array_get($payload, 'description'),
'endDate' => Deserialize::dateTime(Values::array_get($payload, 'end_date')),
'price' => Values::array_get($payload, 'price'),
'priceUnit' => Values::array_get($payload, 'price_unit'),
'startDate' => Deserialize::dateTime(Values::array_get($payload, 'start_date')),
'subresourceUris' => Values::array_get($payload, 'subresource_uris'),
'uri' => Values::array_get($payload, 'uri'),
'usage' => Values::array_get($payload, 'usage'),
'usageUnit' => Values::array_get($payload, 'usage_unit'),
];
$this->solution = ['accountSid' => $accountSid, ];
}
/**
* 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.Api.V2010.RecordInstance]';
}
}