Describes allowed HTTP verbs for the href
| Name | Type | Description | Notes |
|---|---|---|---|
| allow | List[HttpMethod] | [optional] |
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)