PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
messagebird
/
php-rest-api
/
src
/
MessageBird
/
Objects
/
Conversation
<?php namespace MessageBird\Objects\Conversation; use MessageBird\Objects\Base; /** * Represents a counterparty with who messages can be exchanged. */ class Contact extends Base { /** * A unique ID generated by the MessageBird platform that identifies the * contact. * * @var string */ public $id; /** * The URL of this contact object. * * @var string */ public $href; /** * The MSISDN/phone number of this contact. * * @var string */ public $msisdn; /** * @var string */ public $firstName; /** * @var string */ public $lastName; /** * An associative array containing additional details about this contact. * * @var array */ public $customDetails; /** * The date and time when this contact was first created in RFC3339 * format. * * @var string */ public $createdDatetime; /** * The date and time when this contact was most recently updated in * RFC3339 format. * * @var string */ public $updatedDatetime; /** * @param mixed $object * * @return self */ public function loadFromArray($object) { parent::loadFromArray($object); if (!empty($this->customDetails)) { $this->customDetails = (array) $this->customDetails; } return $this; } }
[-] Message.php
[edit]
[-] SendMessage.php
[edit]
[+]
..
[+]
HSM
[-] Content.php
[edit]
[-] SendMessageResult.php
[edit]
[-] Channel.php
[edit]
[-] MessageReference.php
[edit]
[-] Contact.php
[edit]
[-] Fallback.php
[edit]
[-] Conversation.php
[edit]
[-] Webhook.php
[edit]