plaid2.model.sandbox_public_token_create_request module

class plaid2.model.sandbox_public_token_create_request.SandboxPublicTokenCreateRequest(*, options: Optional[SandboxPublicTokenCreateRequestOptions] = None, user_token: Optional[str] = None, institution_id: str, initial_products: List[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

initial_products: List[str]

The products to initially pull for the Item. May be any products that the specified institution_id supports. This array may not be empty.

institution_id: str

The ID of the institution the Item will be associated with

json(**kwargs: Any) str[source]

Return a json string representation of the object. Takes same keyword arguments as pydantic.BaseModel.json

options: Optional[SandboxPublicTokenCreateRequestOptions]

An optional set of options to be used when configuring the Item. If specified, must not be null.

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

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

user_token: Optional[str]

The user token associated with the User data is being requested for.