pyocf.types.interestrate

Type representation of an interest rate, including accrual start and end dates

pydantic model pyocf.types.interestrate.InterestRate

Type representation of an interest rate, including accrual start and end dates

field accrual_end_date: Annotated[Date, FieldInfo(annotation=NoneType, required=True, description='Optional end date (inclusive) for interest accruing at the specified rate. Ifnone specified, interest will accrue indefinitely or until accrual of nextinterest rate commences')] | None = None
field accrual_start_date: Annotated[Date, FieldInfo(annotation=NoneType, required=True, description='Commencement date for interest accruing at the specified rate')] [Required]

Commencement date for interest accruing at the specified rate

field rate: Annotated[Percentage, FieldInfo(annotation=NoneType, required=True, description='Interest rate for the convertible (decimal representation - e.g. 0.125 for12.5%)')] [Required]

Interest rate for the convertible (decimal representation - e.g. 0.125 for12.5%)