2017-11-09 13:04:10 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BusinessLogic\ServiceMessages;
|
|
|
|
|
|
|
|
|
|
|
|
class ServiceMessage extends \BaseClass {
|
|
|
|
/* @var $id int */
|
|
|
|
public $id;
|
|
|
|
|
|
|
|
/* @var $dateCreated string */
|
|
|
|
public $dateCreated;
|
|
|
|
|
|
|
|
/* @var $createdBy int */
|
|
|
|
public $createdBy;
|
|
|
|
|
|
|
|
/* @var $title string */
|
|
|
|
public $title;
|
|
|
|
|
|
|
|
/* @var $message string */
|
|
|
|
public $message;
|
|
|
|
|
|
|
|
/* @var $style string */
|
|
|
|
public $style;
|
|
|
|
|
|
|
|
/* @var $published bool */
|
|
|
|
public $published;
|
|
|
|
|
|
|
|
/* @var $order int */
|
|
|
|
public $order;
|
|
|
|
|
|
|
|
/* @var $icon string */
|
|
|
|
public $icon;
|
2017-11-15 22:02:55 -05:00
|
|
|
|
|
|
|
/* @var $locations string[] */
|
|
|
|
public $locations;
|
2017-11-19 22:16:45 -05:00
|
|
|
|
|
|
|
/* @var $language string */
|
|
|
|
public $language;
|
2017-11-09 13:04:10 -05:00
|
|
|
}
|