| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | Type for the context entry | |
| value | str | Value for the context entry |
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)