Button.php 427 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * 使用独立跳转ActionCard样式时的按钮列表;必须与btn_orientation同时设置
  4. * @author auto create
  5. */
  6. class Button
  7. {
  8. /**
  9. * 消息点击链接地址,当发送消息为小程序时支持小程序跳转链接,最长500个字符
  10. **/
  11. public $action_url;
  12. /**
  13. * 使用独立跳转ActionCard样式时的按钮的标题,最长20个字符
  14. **/
  15. public $title;
  16. }
  17. ?>