# The GetSharePermissionsResponse object

## Attributes

- `next_page_token` (string)
  Opaque token to retrieve the next page of results. Absent if there are no more pages.
   __page_token__ should be set to this value for the next request (for the next page of results).
- `privilege_assignments` (array of object)
  The privileges assigned to each principal
  - `principal` (string)
    The principal (user email address or group name).
     For deleted principals, `principal` is empty while `principal_id` is populated.
  - `privileges` (array of string)
    The privileges assigned to the principal.
    Example: `SELECT`

## Example

```json
{
  "next_page_token": "string",
  "privilege_assignments": [
    {
      "principal": "string",
      "privileges": "SELECT"
    }
  ]
}
```


