You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The requestId of the API call which led to the change.
trace_id
str
The traceId of the API call which led to the change.
instance_id
int
The identifier of the instancesActions
changes
object
List of actual changes.
[optional]
Example
frompfruck_contabo.models.instances_actions_audit_responseimportInstancesActionsAuditResponse# TODO update the JSON string belowjson="{}"# create an instance of InstancesActionsAuditResponse from a JSON stringinstances_actions_audit_response_instance=InstancesActionsAuditResponse.from_json(json)
# print the JSON string representation of the objectprint(InstancesActionsAuditResponse.to_json())
# convert the object into a dictinstances_actions_audit_response_dict=instances_actions_audit_response_instance.to_dict()
# create an instance of InstancesActionsAuditResponse from a dictinstances_actions_audit_response_from_dict=InstancesActionsAuditResponse.from_dict(instances_actions_audit_response_dict)