The request parameters for managing user security and access permissions.
| Name | Type | Description | Notes |
|---|---|---|---|
| product_id | UUID | The product ID for which permissions are being set. | |
| user_id | UUID | The ID of the user whose permissions are being configured. | |
| administrator | bool | Specifies whether the user has administrative privileges. | [optional] |
from docspace_api_sdk.models.security_requests_dto import SecurityRequestsDto
# TODO update the JSON string below
json = "{}"
# create an instance of SecurityRequestsDto from a JSON string
security_requests_dto_instance = SecurityRequestsDto.from_json(json)
# print the JSON string representation of the object
print(SecurityRequestsDto.to_json())
# convert the object into a dict
security_requests_dto_dict = security_requests_dto_instance.to_dict()
# create an instance of SecurityRequestsDto from a dict
security_requests_dto_from_dict = SecurityRequestsDto.from_dict(security_requests_dto_dict)