Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

GetAuditLogsResponse.md

File metadata and controls

31 lines (22 loc) · 1.13 KB

GetAuditLogsResponse

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]