plaid2.model.sandbox_processor_token_create_request module

class plaid2.model.sandbox_processor_token_create_request.SandboxProcessorTokenCreateRequest(*, institution_id: str, options: Optional[SandboxProcessorTokenCreateRequestOptions] = None)[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

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[SandboxProcessorTokenCreateRequestOptions]

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

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

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