| Name | Type | Description | Notes |
|---|---|---|---|
| state | str | [optional] | |
| date_timestamp | int | [optional] |
from quantcdn.models.v1_transition import V1Transition
# TODO update the JSON string below
json = "{}"
# create an instance of V1Transition from a JSON string
v1_transition_instance = V1Transition.from_json(json)
# print the JSON string representation of the object
print(V1Transition.to_json())
# convert the object into a dict
v1_transition_dict = v1_transition_instance.to_dict()
# create an instance of V1Transition from a dict
v1_transition_from_dict = V1Transition.from_dict(v1_transition_dict)