PATH:
home
/
lab2454c
/
.trash
/
core
/
vendor
/
messagebird
/
php-rest-api
/
src
/
MessageBird
/
Objects
/
Conversation
<?php namespace MessageBird\Objects\Conversation; use JsonSerializable; use MessageBird\Objects\Base; class SendMessageResult extends Base implements JsonSerializable { /** * @var string */ public $id; /** * @var string */ public $status; /** * Serialize only non empty fields. */ public function jsonSerialize() { $json = []; foreach (get_object_vars($this) as $key => $value) { if (!empty($value)) { $json[$key] = $value; } } return $json; } }
[-] 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]