审查视图

vendor/overtrue/wechat/src/Message/Transfer.php 831 字节
王智 authored
1 2 3 4 5 6 7 8 9 10 11 12
<?php

/*
 * This file is part of the overtrue/wechat.
 *
 * (c) overtrue <i@overtrue.me>
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the file LICENSE.
 */

/**
王智 authored
13
 * Transfer.php.
王智 authored
14 15 16 17 18 19 20 21
 *
 * @author    overtrue <i@overtrue.me>
 * @copyright 2015 overtrue <i@overtrue.me>
 *
 * @see      https://github.com/overtrue
 * @see      http://overtrue.me
 */
王智 authored
22
namespace EasyWeChat\Message;
王智 authored
23 24

/**
王智 authored
25 26 27 28
 * Class Transfer.
 *
 * @property string $to
 * @property string $account
王智 authored
29
 */
王智 authored
30
class Transfer extends AbstractMessage
王智 authored
31 32 33 34 35 36
{
    /**
     * Message type.
     *
     * @var string
     */
王智 authored
37
    protected $type = 'transfer_customer_service';
王智 authored
38 39 40 41 42 43

    /**
     * Properties.
     *
     * @var array
     */
王智 authored
44 45 46
    protected $properties = [
                             'account',
                            ];
王智 authored
47
}