Name | Type | Description | Notes |
---|---|---|---|
data | List[AuditLogData] | [optional] | |
cursor | str | The next id to start fetch audit logs from | [optional] |
total | float | The total number of audit logs | [optional] |
from fireblocks.models.get_audit_logs_response import GetAuditLogsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetAuditLogsResponse from a JSON string
get_audit_logs_response_instance = GetAuditLogsResponse.from_json(json)
# print the JSON string representation of the object
print(GetAuditLogsResponse.to_json())
# convert the object into a dict
get_audit_logs_response_dict = get_audit_logs_response_instance.to_dict()
# create an instance of GetAuditLogsResponse from a dict
get_audit_logs_response_from_dict = GetAuditLogsResponse.from_dict(get_audit_logs_response_dict)