Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1003 Bytes

File metadata and controls

30 lines (21 loc) · 1003 Bytes

VariationToolPost

Properties

Name Type Description Notes
key str The key of the tool to use.
version int The version of the tool.

Example

from launchdarkly_api.models.variation_tool_post import VariationToolPost

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

# convert the object into a dict
variation_tool_post_dict = variation_tool_post_instance.to_dict()
# create an instance of VariationToolPost from a dict
variation_tool_post_from_dict = VariationToolPost.from_dict(variation_tool_post_dict)

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