plaid2.model.apr module

class plaid2.model.apr.Apr(*, apr_percentage: float, interest_charge_amount: Optional[float] = None, balance_subject_to_apr: Optional[float] = None, apr_type: str)[source]

Bases: BaseModel

apr_percentage: float

Annual Percentage Rate applied.

apr_type: str

The type of balance to which the APR applies.

balance_subject_to_apr: Optional[float]

Amount of money that is subjected to the APR if a balance was carried beyond payment due date. How it is calculated can vary by card issuer. It is often calculated as an average daily balance.

dict(**kwargs: Any) Dict[str, Any][source]

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

interest_charge_amount: Optional[float]

Amount of money charged due to interest from last statement.

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

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