Transfer.php 831 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /*
  3. * This file is part of the overtrue/wechat.
  4. *
  5. * (c) overtrue <i@overtrue.me>
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this source code in the file LICENSE.
  9. */
  10. /**
  11. * Transfer.php.
  12. *
  13. * @author overtrue <i@overtrue.me>
  14. * @copyright 2015 overtrue <i@overtrue.me>
  15. *
  16. * @see https://github.com/overtrue
  17. * @see http://overtrue.me
  18. */
  19. namespace EasyWeChat\Message;
  20. /**
  21. * Class Transfer.
  22. *
  23. * @property string $to
  24. * @property string $account
  25. */
  26. class Transfer extends AbstractMessage
  27. {
  28. /**
  29. * Message type.
  30. *
  31. * @var string
  32. */
  33. protected $type = 'transfer_customer_service';
  34. /**
  35. * Properties.
  36. *
  37. * @var array
  38. */
  39. protected $properties = [
  40. 'account',
  41. ];
  42. }