Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 903 Bytes

File metadata and controls

30 lines (21 loc) · 903 Bytes

OptionsArray

Properties

Name Type Description Notes
label str [optional]
value str [optional]

Example

from launchdarkly_api.models.options_array import OptionsArray

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

# convert the object into a dict
options_array_dict = options_array_instance.to_dict()
# create an instance of OptionsArray from a dict
options_array_from_dict = OptionsArray.from_dict(options_array_dict)

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