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.
changes
object
List of actual changes.
[optional]
Example
frompfruck_contabo.models.private_network_audit_responseimportPrivateNetworkAuditResponse# TODO update the JSON string belowjson="{}"# create an instance of PrivateNetworkAuditResponse from a JSON stringprivate_network_audit_response_instance=PrivateNetworkAuditResponse.from_json(json)
# print the JSON string representation of the objectprint(PrivateNetworkAuditResponse.to_json())
# convert the object into a dictprivate_network_audit_response_dict=private_network_audit_response_instance.to_dict()
# create an instance of PrivateNetworkAuditResponse from a dictprivate_network_audit_response_from_dict=PrivateNetworkAuditResponse.from_dict(private_network_audit_response_dict)