Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 857 Bytes

File metadata and controls

30 lines (21 loc) · 857 Bytes

Context

Properties

Name Type Description Notes
type str Type for the context entry
value str Value for the context entry

Example

from sysdig_client.models.context import Context

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

# convert the object into a dict
context_dict = context_instance.to_dict()
# create an instance of Context from a dict
context_from_dict = Context.from_dict(context_dict)

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