pyocf.types.vesting.vestingperiodinmonths

Describes a period of time expressed in months (e.g. 3 months) for use in Vesting Terms.

pydantic model pyocf.types.vesting.vestingperiodinmonths.VestingPeriodInMonths

Describes a period of time expressed in months (e.g. 3 months) for use in Vesting Terms.

field day_of_month: Annotated[VestingDayOfMonth, FieldInfo(annotation=NoneType, required=True, description='The calendar day of a month to award vesting.')] [Required]

The calendar day of a month to award vesting.

field length: Annotated[int, FieldInfo(annotation=NoneType, required=True, description='The quantity of `type` units of time; e.g. for 3 months, this would be `3`; for30 days, this would be `30`')] [Required]

The quantity of type units of time; e.g. for 3 months, this would be 3; for30 days, this would be 30

field occurrences: Annotated[int, FieldInfo(annotation=NoneType, required=True, description='The number of times this vesting period triggers. If vesting occurs monthly for36 months, for example, this would be `36`')] [Required]

The number of times this vesting period triggers. If vesting occurs monthly for36 months, for example, this would be 36

field type: Annotated[Literal['MONTHS'], FieldInfo(annotation=NoneType, required=True, description='')] = 'MONTHS'