plaid2.model.student_loan_repayment_model module

class plaid2.model.student_loan_repayment_model.StudentLoanRepaymentModel(*, non_repayment_months: float, type: str, repayment_months: float)[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

non_repayment_months: float

Configures the number of months before repayment starts.

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

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

repayment_months: float

Configures the number of months of repayments before the loan is paid off.

type: str

The only currently supported value for this field is standard.