PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
messagebird
/
php-rest-api
/
src
/
MessageBird
/
Objects
<?php namespace MessageBird\Objects; /** * Class Contact * * @package MessageBird\Objects */ class Contact extends Base { /** * An unique random ID which is created on the MessageBird * platform and is returned upon creation of the object. * * @var string */ protected $id; /** * The URL of the created object. * * @var string */ protected $href; /** * The phone number of contact. * * @var int */ public $msisdn; /** * The first name of the contact. * * @var string */ public $firstName; /** * The last name of the contact. * * @var string */ public $lastName; /** * Custom fields of the contact. * * @var array */ protected $customDetails = []; /** * @var string */ public $custom1; /** * @var string */ public $custom2; /** * @var string */ public $custom3; /** * @var string */ public $custom4; /** * The hash of the group this contact belongs to. * * @var array */ protected $groups = []; /** * The hash with messages sent to contact. * * @var array */ protected $messages = []; /** * The date and time of the creation of the contact in RFC3339 format (Y-m-d\TH:i:sP) * * @var string */ protected $createdDatetime; /** * The date and time of the updated of the contact in RFC3339 format (Y-m-d\TH:i:sP) * * @var string */ protected $updatedDatetime; /** * @return string */ public function getId() { return $this->id; } /** * @return string */ public function getHref() { return $this->href; } /** * @return string */ public function getGroups() { return $this->groups; } /** * @return string */ public function getMessages() { return $this->messages; } /** * @return string */ public function getCreatedDatetime() { return $this->createdDatetime; } /** * @return string */ public function getUpdatedDatetime() { return $this->updatedDatetime; } /** * @return array */ public function getCustomDetails() { return $this->customDetails; } /** * @param mixed $object * * @return $this */ public function loadFromArray($object) { unset($this->custom1, $this->custom2, $this->custom3, $this->custom4); return parent::loadFromArray($object); } /** * @param mixed $object * * @return $this ->object */ public function loadFromArrayForGroups($object) { parent::loadFromArray($object); if (!empty($object->items)) { foreach($object->items AS &$item) { $group = new Group(); $group->loadFromArray($item); $item = $group; } } return $object; } }
[-] Message.php
[edit]
[-] Hlr.php
[edit]
[-] BaseList.php
[edit]
[+]
..
[-] Balance.php
[edit]
[-] NumberPurchaseRequest.php
[edit]
[+]
PartnerAccount
[+]
Conversation
[-] SignedRequest.php
[edit]
[-] Verify.php
[edit]
[-] Contact.php
[edit]
[-] Recipient.php
[edit]
[-] Number.php
[edit]
[-] Base.php
[edit]
[+]
Voice
[-] Lookup.php
[edit]
[-] MmsMessage.php
[edit]
[-] VoiceMessage.php
[edit]
[+]
Chat
[-] Group.php
[edit]