Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 913 Bytes

File metadata and controls

30 lines (21 loc) · 913 Bytes

ParameterRep

Properties

Name Type Description Notes
variation_id str [optional]
flag_key str [optional]

Example

from launchdarkly_api.models.parameter_rep import ParameterRep

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

# convert the object into a dict
parameter_rep_dict = parameter_rep_instance.to_dict()
# create an instance of ParameterRep from a dict
parameter_rep_from_dict = ParameterRep.from_dict(parameter_rep_dict)

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