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.
object_storage_id
str
Object Storage Id
changes
object
List of actual changes.
[optional]
Example
frompfruck_contabo.models.object_storage_audit_responseimportObjectStorageAuditResponse# TODO update the JSON string belowjson="{}"# create an instance of ObjectStorageAuditResponse from a JSON stringobject_storage_audit_response_instance=ObjectStorageAuditResponse.from_json(json)
# print the JSON string representation of the objectprint(ObjectStorageAuditResponse.to_json())
# convert the object into a dictobject_storage_audit_response_dict=object_storage_audit_response_instance.to_dict()
# create an instance of ObjectStorageAuditResponse from a dictobject_storage_audit_response_from_dict=ObjectStorageAuditResponse.from_dict(object_storage_audit_response_dict)