PATH:
home
/
lab2454c
/
sothebry.softkinesis.com
/
backups
/
core
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
/
Trusthub
/
V1
<?php /** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */ namespace Twilio\Rest\Trusthub\V1; use Twilio\Deserialize; use Twilio\Exceptions\TwilioException; use Twilio\InstanceResource; use Twilio\Options; use Twilio\Rest\Trusthub\V1\CustomerProfiles\CustomerProfilesChannelEndpointAssignmentList; use Twilio\Rest\Trusthub\V1\CustomerProfiles\CustomerProfilesEntityAssignmentsList; use Twilio\Rest\Trusthub\V1\CustomerProfiles\CustomerProfilesEvaluationsList; use Twilio\Values; use Twilio\Version; /** * @property string $sid * @property string $accountSid * @property string $policySid * @property string $friendlyName * @property string $status * @property \DateTime $validUntil * @property string $email * @property string $statusCallback * @property \DateTime $dateCreated * @property \DateTime $dateUpdated * @property string $url * @property array $links */ class CustomerProfilesInstance extends InstanceResource { protected $_customerProfilesEntityAssignments; protected $_customerProfilesEvaluations; protected $_customerProfilesChannelEndpointAssignment; /** * Initialize the CustomerProfilesInstance * * @param Version $version Version that contains the resource * @param mixed[] $payload The response payload * @param string $sid The unique string that identifies the resource. */ public function __construct(Version $version, array $payload, string $sid = null) { parent::__construct($version); // Marshaled Properties $this->properties = [ 'sid' => Values::array_get($payload, 'sid'), 'accountSid' => Values::array_get($payload, 'account_sid'), 'policySid' => Values::array_get($payload, 'policy_sid'), 'friendlyName' => Values::array_get($payload, 'friendly_name'), 'status' => Values::array_get($payload, 'status'), 'validUntil' => Deserialize::dateTime(Values::array_get($payload, 'valid_until')), 'email' => Values::array_get($payload, 'email'), 'statusCallback' => Values::array_get($payload, 'status_callback'), 'dateCreated' => Deserialize::dateTime(Values::array_get($payload, 'date_created')), 'dateUpdated' => Deserialize::dateTime(Values::array_get($payload, 'date_updated')), 'url' => Values::array_get($payload, 'url'), 'links' => Values::array_get($payload, 'links'), ]; $this->solution = ['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 CustomerProfilesContext Context for this CustomerProfilesInstance */ protected function proxy(): CustomerProfilesContext { if (!$this->context) { $this->context = new CustomerProfilesContext($this->version, $this->solution['sid']); } return $this->context; } /** * Fetch the CustomerProfilesInstance * * @return CustomerProfilesInstance Fetched CustomerProfilesInstance * @throws TwilioException When an HTTP error occurs. */ public function fetch(): CustomerProfilesInstance { return $this->proxy()->fetch(); } /** * Update the CustomerProfilesInstance * * @param array|Options $options Optional Arguments * @return CustomerProfilesInstance Updated CustomerProfilesInstance * @throws TwilioException When an HTTP error occurs. */ public function update(array $options = []): CustomerProfilesInstance { return $this->proxy()->update($options); } /** * Delete the CustomerProfilesInstance * * @return bool True if delete succeeds, false otherwise * @throws TwilioException When an HTTP error occurs. */ public function delete(): bool { return $this->proxy()->delete(); } /** * Access the customerProfilesEntityAssignments */ protected function getCustomerProfilesEntityAssignments(): CustomerProfilesEntityAssignmentsList { return $this->proxy()->customerProfilesEntityAssignments; } /** * Access the customerProfilesEvaluations */ protected function getCustomerProfilesEvaluations(): CustomerProfilesEvaluationsList { return $this->proxy()->customerProfilesEvaluations; } /** * Access the customerProfilesChannelEndpointAssignment */ protected function getCustomerProfilesChannelEndpointAssignment(): CustomerProfilesChannelEndpointAssignmentList { return $this->proxy()->customerProfilesChannelEndpointAssignment; } /** * 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.Trusthub.V1.CustomerProfilesInstance ' . \implode(' ', $context) . ']'; } }
[-] SupportingDocumentTypeList.php
[edit]
[-] EndUserTypeInstance.php
[edit]
[-] SupportingDocumentTypeContext.php
[edit]
[+]
..
[-] EndUserInstance.php
[edit]
[-] SupportingDocumentPage.php
[edit]
[-] PoliciesInstance.php
[edit]
[-] TrustProductsOptions.php
[edit]
[-] EndUserOptions.php
[edit]
[-] CustomerProfilesInstance.php
[edit]
[-] SupportingDocumentInstance.php
[edit]
[+]
CustomerProfiles
[-] TrustProductsContext.php
[edit]
[-] SupportingDocumentOptions.php
[edit]
[-] PoliciesList.php
[edit]
[-] SupportingDocumentContext.php
[edit]
[-] EndUserList.php
[edit]
[-] CustomerProfilesContext.php
[edit]
[-] SupportingDocumentTypeInstance.php
[edit]
[+]
TrustProducts
[-] PoliciesPage.php
[edit]
[-] SupportingDocumentTypePage.php
[edit]
[-] PoliciesContext.php
[edit]
[-] SupportingDocumentList.php
[edit]
[-] CustomerProfilesOptions.php
[edit]
[-] EndUserPage.php
[edit]
[-] EndUserTypePage.php
[edit]
[-] EndUserTypeList.php
[edit]
[-] EndUserTypeContext.php
[edit]
[-] EndUserContext.php
[edit]
[-] TrustProductsList.php
[edit]
[-] CustomerProfilesPage.php
[edit]
[-] TrustProductsInstance.php
[edit]
[-] CustomerProfilesList.php
[edit]
[-] TrustProductsPage.php
[edit]