SetRolePriorityRequest
Properties
Name |
Type |
Description |
Notes |
---|---|---|---|
priority |
int |
The priority to be set for the role. |
Example
from h2ogpte.rest_sync.models.set_role_priority_request import SetRolePriorityRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SetRolePriorityRequest from a JSON string
set_role_priority_request_instance = SetRolePriorityRequest.from_json(json)
# print the JSON string representation of the object
print(SetRolePriorityRequest.to_json())
# convert the object into a dict
set_role_priority_request_dict = set_role_priority_request_instance.to_dict()
# create an instance of SetRolePriorityRequest from a dict
set_role_priority_request_from_dict = SetRolePriorityRequest.from_dict(set_role_priority_request_dict)