home-school-contact-app/源码/php/AiYaSchoolPush/xmpush/Message.php

49 lines
1.5 KiB
PHP
Raw Normal View History

2021-10-19 00:18:35 +00:00
<?php
/**
* 消息体.
* @author wangkuiwei
* @name Message
* @desc 构建要发送的消息内容。
*
*/
namespace xmpush;
class Message {
const EXTRA_PREFIX = 'extra.';
protected $payload; //消息内容
protected $restricted_package_name; //支持多包名
protected $pass_through; //是否透传给app(1 透传 0 通知栏信息)
protected $notify_type; //通知类型 可组合 (-1 Default_all,1 Default_sound,2 Default_vibrate(震动),4 Default_lights)
protected $notify_id; //0-4同一个notifyId在通知栏只会保留一条
protected $extra; //可选项额外定义一些key value字符不能超过1024key不能超过10个
protected $description; //在通知栏的描述长度小于128
protected $title; //在通知栏的标题长度小于16
protected $time_to_live; //可选项当用户离线是消息保留时间默认两周单位ms
protected $time_to_send; //可选项定时发送消息用自1970年1月1日以来00:00:00.0 UTC时间表示以毫秒为单位的时间
protected $fields; //含有本条消息所有属性的数组
protected $json_infos;
/* IOS 使用 */
protected $sound_url; //可选,消息铃声
protected $badge; //可选,自定义通知数字角标
public function __construct(){
$this->extra = array();
$this->fields = array();
}
public function getFields(){
return $this->fields;
}
public function getJSONInfos(){
return $this->json_infos;
}
}
?>