PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
messagebird
/
php-rest-api
/
src
/
MessageBird
/
Objects
<?php namespace MessageBird\Objects; /** * Class Hlr * * @package MessageBird\Objects */ class Hlr extends Base { const STATUS_SENT = 'sent'; const STATUS_ABSENT = 'absent'; const STATUS_ACTIVE = 'active'; const STATUS_UNKNOWN = 'unknown'; const STATUS_FAILED = 'failed'; /** * 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 msisdns you want to do a network query on * * @var int */ public $msisdn; /** * The MCCMNC code of the network provider. (http://en.wikipedia.org/wiki/Mobile_country_code) * * @var int */ public $network; /** * A array with extra HLR information. Do note that the attributes in the array can change over time and * can be null (not all information is availble for all countries and providers). * * @var array */ public $details = []; /** * A client reference. Here you can put your own reference, * like your internal reference. * * @var string */ public $reference; /** * The status of the msisdns. Possible values: sent, absent, active, unknown, and failed * * @var string */ public $status; /** * The date and time of the creation of the hlr in RFC3339 format (Y-m-d\TH:i:sP) * * @var string */ protected $createdDatetime; /** * The datum time of the last status in RFC3339 format (Y-m-d\TH:i:sP) * * @var string */ protected $statusDatetime; /** * Get the created id * * @return mixed */ public function getId() { return $this->id; } /** * Get the created href * * @return string */ public function getHref() { return $this->href; } /** * Get the date and time the resource was created * * @return string */ public function getCreatedDatetime() { return $this->createdDatetime; } /** * Get the date and time the resource was created * * @return string */ public function getStatusDatetime() { return $this->statusDatetime; } }
[-] 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]