pyocf.types.vesting.vestingconditionportion
Describes a fractional portion (ratio) of shares associated with a Vesting Condition
- pydantic model pyocf.types.vesting.vestingconditionportion.VestingConditionPortion
Describes a fractional portion (ratio) of shares associated with a Vesting Condition
- field denominator: Annotated[Numeric, FieldInfo(annotation=NoneType, required=True, description='Denominator of the ratio, i.e. the ratio of A to B (A:B) can be expressed as afraction (A/B), where B is the denominator')] [Required]
Denominator of the ratio, i.e. the ratio of A to B (A:B) can be expressed as afraction (A/B), where B is the denominator
- field numerator: Annotated[Numeric, FieldInfo(annotation=NoneType, required=True, description='Numerator of the ratio, i.e. the ratio of A to B (A:B) can be expressed as afraction (A/B), where A is the numerator')] [Required]
Numerator of the ratio, i.e. the ratio of A to B (A:B) can be expressed as afraction (A/B), where A is the numerator
- field remainder: Annotated[bool, FieldInfo(annotation=NoneType, required=True, description="If false, the ratio is applied to the entire quantity of the security'sissuance. If true, it is applied to the amount that has yet to vest. Forexample: A stakeholder has been granted 1000 shares, and 400 are already vested.If the portion is 1/5 and `remainder` is `false` for a VestingCondition, thenthat condition will vest 200 shares -- 1/5 of the 1000 granted.If the portion is 1/5 and `remainder` is `true`, then that condition will vest120 shares -- 1/5 of the 600 unvested.")] | None = None