Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 994 Bytes

File metadata and controls

31 lines (22 loc) · 994 Bytes

RolePolicyFields

Properties

Name Type Description Notes
description str [optional]
id int [optional]
name str [optional]

Example

from hyperstack.models.role_policy_fields import RolePolicyFields

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

# convert the object into a dict
role_policy_fields_dict = role_policy_fields_instance.to_dict()
# create an instance of RolePolicyFields from a dict
role_policy_fields_from_dict = RolePolicyFields.from_dict(role_policy_fields_dict)

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