# Plaid::AssetReportFilterResponse ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **asset_report_token** | **String** | A token that can be provided to endpoints such as `/asset_report/get` or `/asset_report/pdf/get` to fetch or update an Asset Report. | | | **asset_report_id** | **String** | A unique ID identifying an Asset Report. Like all Plaid identifiers, this ID is case sensitive. | | | **request_id** | **String** | A unique identifier for the request, which can be used for troubleshooting. This identifier, like all Plaid identifiers, is case sensitive. | | ## Example ```ruby require 'plaid' instance = Plaid::AssetReportFilterResponse.new( asset_report_token: null, asset_report_id: null, request_id: null ) ```