plaid2.model.transfer_authorization_device module

class plaid2.model.transfer_authorization_device.TransferAuthorizationDevice(*, ip_address: Optional[str] = None, user_agent: Optional[str] = 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

ip_address: Optional[str]

The IP address of the device being used to initiate the authorization. Required for guaranteed ACH customers.

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

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

user_agent: Optional[str]

The user agent of the device being used to initiate the authorization. Required for guaranteed ACH customers.