Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.27 KB

File metadata and controls

32 lines (23 loc) · 1.27 KB

ResourceSetBindingMember

Properties

Name Type Description Notes
created datetime Timestamp when the role was created [optional] [readonly]
id str Unique key for the role [optional] [readonly]
last_updated datetime Timestamp when the role was last updated [optional] [readonly]
links LinksSelf [optional]

Example

from okta.models.resource_set_binding_member import ResourceSetBindingMember

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

# convert the object into a dict
resource_set_binding_member_dict = resource_set_binding_member_instance.to_dict()
# create an instance of ResourceSetBindingMember from a dict
resource_set_binding_member_from_dict = ResourceSetBindingMember.from_dict(resource_set_binding_member_dict)

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