plaid2.model.partner_customers_create_request module
- class plaid2.model.partner_customers_create_request.PartnerCustomersCreateRequest(*, create_link_customization: Optional[bool] = None, is_diligence_attested: bool, company_name: str, products: List[str])[source]
Bases:
BaseModel
- company_name: str
The company name of the end customer being created.
- create_link_customization: Optional[bool]
If true, sets end customer’s link customization to match partner’s link customization.
- dict(**kwargs: Any) Dict[str, Any] [source]
Return a dict representation of the object. Takes same keyword arguments as pydantic.BaseModel.dict
- is_diligence_attested: bool
Denotes whether or not the partner has completed attestation of diligence for the end customer to be created.
- 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) PartnerCustomersCreateRequest [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) PartnerCustomersCreateRequest [source]
Parse a json string into the object. Takes same keyword arguments as pydantic.BaseModel.parse_raw
- products: List[str]
The products to be enabled on for the end customer.