Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 973 Bytes

File metadata and controls

30 lines (21 loc) · 973 Bytes

HrefObjectHints

Describes allowed HTTP verbs for the href

Properties

Name Type Description Notes
allow List[HttpMethod] [optional]

Example

from okta.models.href_object_hints import HrefObjectHints

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

# convert the object into a dict
href_object_hints_dict = href_object_hints_instance.to_dict()
# create an instance of HrefObjectHints from a dict
href_object_hints_from_dict = HrefObjectHints.from_dict(href_object_hints_dict)

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