Files
huangjingfen/pro_v3.5.1/crmeb/services/wechat/message/Voice.php

28 lines
507 B
PHP
Raw Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace crmeb\services\wechat\message;
class Voice extends Media
{
/**
* Messages type.
*
* @var string
*/
protected string $type = 'voice';
/**
* Properties.
*
* @var array
*/
protected array $properties = [
'media_id',
'recognition',
];
}