Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.26 KB

File metadata and controls

33 lines (24 loc) · 1.26 KB

CreateReportRequest

Request body for creating a new asynchronous report job

Properties

Name Type Description Notes
report_type str The type of report to generate.
output_format ReportOutputFormat
compress bool Gzip the output file. Defaults to true. [optional] [default to False]
filters AddressesFilters [optional]

Example

from fireblocks.models.create_report_request import CreateReportRequest

# TODO update the JSON string below
json = "{}"
# create an instance of CreateReportRequest from a JSON string
create_report_request_instance = CreateReportRequest.from_json(json)
# print the JSON string representation of the object
print(CreateReportRequest.to_json())

# convert the object into a dict
create_report_request_dict = create_report_request_instance.to_dict()
# create an instance of CreateReportRequest from a dict
create_report_request_from_dict = CreateReportRequest.from_dict(create_report_request_dict)

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