Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.17 KB

File metadata and controls

30 lines (21 loc) · 1.17 KB

ContextKindsCollectionRep

Properties

Name Type Description Notes
items List[ContextKindRep] An array of context kinds
links Dict[str, Link] The location and content type of related resources

Example

from launchdarkly_api.models.context_kinds_collection_rep import ContextKindsCollectionRep

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

# convert the object into a dict
context_kinds_collection_rep_dict = context_kinds_collection_rep_instance.to_dict()
# create an instance of ContextKindsCollectionRep from a dict
context_kinds_collection_rep_from_dict = ContextKindsCollectionRep.from_dict(context_kinds_collection_rep_dict)

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