Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

ContextAttributeNames

Properties

Name Type Description Notes
kind str The kind associated with this collection of context attribute names.
names List[ContextAttributeName] A collection of context attribute names.

Example

from launchdarkly_api.models.context_attribute_names import ContextAttributeNames

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

# convert the object into a dict
context_attribute_names_dict = context_attribute_names_instance.to_dict()
# create an instance of ContextAttributeNames from a dict
context_attribute_names_from_dict = ContextAttributeNames.from_dict(context_attribute_names_dict)

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