plaid2.model.processor_balance_get_request_options module

class plaid2.model.processor_balance_get_request_options.ProcessorBalanceGetRequestOptions(*, min_last_updated_datetime: 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

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

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

min_last_updated_datetime: Optional[str]

mm:ssZ`) indicating the oldest acceptable balance when making a request to /accounts/balance/get.

If the balance that is pulled for ins_128026 (Capital One) is older than the given timestamp, an INVALID_REQUEST error with the code of LAST_UPDATED_DATETIME_OUT_OF_RANGE will be returned with the most recent timestamp for the requested account contained in the response.

This field is only used when the institution is ins_128026 (Capital One), in which case a value must be provided or an INVALID_REQUEST error with the code of INVALID_FIELD will be returned. For all other institutions, this field is ignored.

Type

Timestamp in [ISO 8601](https

Type

//wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH

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

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