plaid2.model.link_token_get_metadata_response module
- class plaid2.model.link_token_get_metadata_response.LinkTokenGetMetadataResponse(*, country_codes: List[str], language: Optional[str] = None, client_name: Optional[str] = None, redirect_uri: Optional[str] = None, initial_products: List[str], institution_data: Optional[str] = None, webhook: Optional[str] = None, account_filters: Optional[AccountFiltersResponse] = None)[source]
Bases:
BaseModel
- account_filters: Optional[AccountFiltersResponse]
The account_filters specified in the original call to /link/token/create.
- client_name: Optional[str]
The client_name specified in the /link/token/create call.
- country_codes: List[str]
The country_codes specified in the /link/token/create call.
- dict(**kwargs: Any) Dict[str, Any] [source]
Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict
- initial_products: List[str]
The products specified in the /link/token/create call.
- institution_data: Optional[str]
A map containing data used to highlight institutions in Link.
- json(**kwargs: Any) str [source]
Return a json string representation of the object. Takes same keyword arguments as pydantic.BaseModel.json
- language: Optional[str]
The language specified in the /link/token/create call.
- classmethod parse_obj(data: Any) LinkTokenGetMetadataResponse [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) LinkTokenGetMetadataResponse [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw
- redirect_uri: Optional[str]
The redirect_uri specified in the /link/token/create call.
- webhook: Optional[str]
The webhook specified in the /link/token/create call.