REAPI/extend/sdk/taobao/top/domain/SubUserPermission.php
2024-09-29 15:43:18 +08:00

20 lines
338 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* 子账号被所拥有的权限
* @author auto create
*/
class SubUserPermission
{
/**
* 子账号被直接赋予的权限点列表
**/
public $permissions;
/**
* 子账号被赋予的角色信息(Role)列表。列表中的角色对象只有role_idrole_namepermissions信息
**/
public $roles;
}
?>