plaid2.model.asset_report_refresh_request module

class plaid2.model.asset_report_refresh_request.AssetReportRefreshRequest(*, options: Optional[AssetReportRefreshRequestOptions] = None, days_requested: Optional[int] = None, asset_report_token: str)[source]

Bases: BaseModel

asset_report_token: str

The asset_report_token returned by the original call to /asset_report/create

days_requested: Optional[int]

The maximum number of days of history to include in the Asset Report. Must be an integer. If not specified, the value from the original call to /asset_report/create will be used.

dict(**kwargs: Any) Dict[str, Any][source]

Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict

json(**kwargs: Any) str[source]

Return a json string representation of the object. Takes same keyword arguments as pydantic.BaseModel.json

options: Optional[AssetReportRefreshRequestOptions]

An optional object to filter /asset_report/refresh results. If provided, cannot be null. If not specified, the options from the original call to /asset_report/create will be used.

classmethod parse_obj(data: Any) AssetReportRefreshRequest[source]

Parse a dict into the object. Takes same keyword arguments as pydantic.BaseModel.parse_obj

classmethod parse_raw(b: Union[bytes, str], **kwargs: Any) AssetReportRefreshRequest[source]

Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw