Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

ParameterDefault

Properties

Name Type Description Notes
value object The default value for the given parameter [optional]
boolean_variation_value bool Variation value for boolean flags. Not applicable for non-boolean flags. [optional]
rule_clause RuleClause [optional]

Example

from launchdarkly_api.models.parameter_default import ParameterDefault

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

# convert the object into a dict
parameter_default_dict = parameter_default_instance.to_dict()
# create an instance of ParameterDefault from a dict
parameter_default_from_dict = ParameterDefault.from_dict(parameter_default_dict)

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