Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.01 KB

File metadata and controls

30 lines (21 loc) · 1.01 KB

CustomProperty

Properties

Name Type Description Notes
name str The name of the custom property of this type.
value List[str] An array of values for the custom property data to associate with this flag.

Example

from launchdarkly_api.models.custom_property import CustomProperty

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

# convert the object into a dict
custom_property_dict = custom_property_instance.to_dict()
# create an instance of CustomProperty from a dict
custom_property_from_dict = CustomProperty.from_dict(custom_property_dict)

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