plaid2.model.employers_search_request module

class plaid2.model.employers_search_request.EmployersSearchRequest(*, products: List[str], query: str)[source]

Bases: BaseModel

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) EmployersSearchRequest[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) EmployersSearchRequest[source]

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

products: List[str]

The Plaid products the returned employers should support. Currently, this field must be set to “deposit_switch”.

query: str

The employer name to be searched for.