TokenInfo.php 445 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * token信息
  4. * @author auto create
  5. */
  6. class TokenInfo
  7. {
  8. /**
  9. * token info扩展信息
  10. **/
  11. public $ext;
  12. /**
  13. * isv自己账号的唯一id
  14. **/
  15. public $isv_account_id;
  16. /**
  17. * ISV APP的登录态时长
  18. **/
  19. public $login_state_expire_in;
  20. /**
  21. * open account id
  22. **/
  23. public $open_account_id;
  24. /**
  25. * 时间戳
  26. **/
  27. public $timestamp;
  28. /**
  29. * 用于防重放的唯一id
  30. **/
  31. public $uuid;
  32. }
  33. ?>