Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 877 Bytes

File metadata and controls

30 lines (21 loc) · 877 Bytes

Prerequisite

Properties

Name Type Description Notes
key str
variation int

Example

from launchdarkly_api.models.prerequisite import Prerequisite

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

# convert the object into a dict
prerequisite_dict = prerequisite_instance.to_dict()
# create an instance of Prerequisite from a dict
prerequisite_from_dict = Prerequisite.from_dict(prerequisite_dict)

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