plaid2.model.asset_report_relay_create_request module

class plaid2.model.asset_report_relay_create_request.AssetReportRelayCreateRequest(*, asset_report_token: str, secondary_client_id: str, webhook: Optional[str] = None)[source]

Bases: BaseModel

asset_report_token: str

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.

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

classmethod parse_obj(data: Any) AssetReportRelayCreateRequest[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) AssetReportRelayCreateRequest[source]

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

secondary_client_id: str

The secondary_client_id is the client id of the third party with whom you would like to share the Asset Report.

webhook: Optional[str]

URL to which Plaid will send webhooks when the Secondary Client successfully retrieves an Asset Report by calling asset_report/relay/get.