Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 867 Bytes

File metadata and controls

29 lines (20 loc) · 867 Bytes

GrantRequest

Properties

Name Type Description Notes
roles List[str] [optional]

Example

from halo_client.models.grant_request import GrantRequest

# TODO update the JSON string below
json = "{}"
# create an instance of GrantRequest from a JSON string
grant_request_instance = GrantRequest.from_json(json)
# print the JSON string representation of the object
print(GrantRequest.to_json())

# convert the object into a dict
grant_request_dict = grant_request_instance.to_dict()
# create an instance of GrantRequest from a dict
grant_request_from_dict = GrantRequest.from_dict(grant_request_dict)

[Back to Model list] [Back to API list] [Back to README]