plaid2.model.connected_application module
- class plaid2.model.connected_application.ConnectedApplication(*, application_url: Optional[str] = None, reason_for_access: Optional[str] = None, display_name: Optional[str] = None, created_at: str, scopes: Optional[Scopes] = None, logo_url: Optional[str] = None, application_id: str, name: str)[source]
Bases:
BaseModel
- application_id: str
This field will map to the application ID that is returned from /item/applications/list, or provided to the institution in an oauth redirect.
- application_url: Optional[str]
The URL for the application’s website
- created_at: str
//wikipedia.org/wiki/ISO_8601) (YYYY-MM-DD) format in UTC.
- Type
The date this application was linked in [ISO 8601](https
- dict(**kwargs: Any) Dict[str, Any] [source]
Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict
- display_name: Optional[str]
A human-readable name of the application for display purposes
- json(**kwargs: Any) str [source]
Return a json string representation of the object. Takes same keyword arguments as pydantic.BaseModel.json
- logo_url: Optional[str]
A URL that links to the application logo image.
- name_: str
The name of the application
- classmethod parse_obj(data: Any) ConnectedApplication [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) ConnectedApplication [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw
- reason_for_access: Optional[str]
A string provided by the connected app stating why they use their respective enabled products.