pyocf.types.conversion_triggers.automaticconversiononconditiontrigger

Type representation of automatic trigger on a tive or condition.

pydantic model pyocf.types.conversion_triggers.automaticconversiononconditiontrigger.AutomaticConversionOnConditionTrigger

Type representation of automatic trigger on a tive or condition.

field conversion_right: Annotated[ConvertibleConversionRight | WarrantConversionRight | StockClassConversionRight, FieldInfo(annotation=NoneType, required=True, description='When the conditions of the trigger are met, how does the convertible convert?', discriminator='type')] [Required]

When the conditions of the trigger are met, how does the convertible convert?

field nickname: Annotated[str, FieldInfo(annotation=NoneType, required=True, description='Human-friendly nickname to describe the conversion right')] | None = None
field trigger_condition: Annotated[str, FieldInfo(annotation=NoneType, required=True, description='Legal language describing what conditions must be satisfied for the conversionto take place (ideally, this should be excerpted from the instrument wherepossible)')] [Required]

Legal language describing what conditions must be satisfied for the conversionto take place (ideally, this should be excerpted from the instrument wherepossible)

field trigger_description: Annotated[str, FieldInfo(annotation=NoneType, required=True, description='Long-form description of the trigger')] | None = None
field trigger_id: Annotated[str, FieldInfo(annotation=NoneType, required=True, description="Id for this conversion trigger, unique within list of ConversionTriggers inparent convertible issuance's `conversion_triggers` field.")] [Required]

Id for this conversion trigger, unique within list of ConversionTriggers inparent convertible issuance’s conversion_triggers field.

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