Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 987 Bytes

DeprecatePreviousPolicy.md

File metadata and controls

28 lines (19 loc) · 987 Bytes

DeprecatePreviousPolicy

Properties

Name Type Description Notes

Example

from waylay.services.registry.models.deprecate_previous_policy import DeprecatePreviousPolicy

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

# convert the object into a dict
deprecate_previous_policy_dict = deprecate_previous_policy_instance.to_dict()
# create an instance of DeprecatePreviousPolicy from a dict
deprecate_previous_policy_form_dict = deprecate_previous_policy.from_dict(deprecate_previous_policy_dict)

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