PermissionCheckBatchResponse(JSON)
여러 사용자에 대한 권한 값 목록의 배치 권한 확인 결과입니다.
PermissionCheckBatchResponse
PermissionCheckBatchResponse 개체 사양은 다음과 같습니다.
멤버 | 유형 | 설명 |
---|---|---|
응답 | PermissionCheckBatchUserResponse(JSON)의 배열 | 필수. 원래 요청에서 요청되었던 각 권한에 대한 PermissionCheckBatchUserResponse(JSON) 개체로, 해당 요청과 순서가 동일합니다. |
JSON 구문 예
{
"responses":
[
{
"user": {"xuid":"12345"},
"permissions":
[
{
"isAllowed":true
},
{
"isAllowed":true
}
]
},
{
"user": {"xuid":"54321"},
"permissions":
[
{
"isAllowed":false,
"reasons":
[
{"reason":"NotAllowed"}
]
},
{
"isAllowed":false,
"reasons":
[
{"reason":"PrivilegeRestrictsTarget", "restrictedSetting":"AllowProfileViewing"}
]
}
]
}
]
}