Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.48 KB

File metadata and controls

39 lines (30 loc) · 1.48 KB

ContextKindRep

Properties

Name Type Description Notes
key str The context kind key
name str The context kind name
description str The context kind description
version int The context kind version
creation_date int
last_modified int
last_seen int [optional]
created_from str
hide_in_targeting bool Alias for archived. [optional]
archived bool Whether the context kind is archived. Archived context kinds are unavailable for targeting. [optional]
links Dict[str, Link] The location and content type of related resources [optional]

Example

from launchdarkly_api.models.context_kind_rep import ContextKindRep

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

# convert the object into a dict
context_kind_rep_dict = context_kind_rep_instance.to_dict()
# create an instance of ContextKindRep from a dict
context_kind_rep_from_dict = ContextKindRep.from_dict(context_kind_rep_dict)

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