Open Cap Table Protocol Canton SDK - v0.2.302
    Preparing search index...

    Interface StockClassConversionRight

    Stock Class Conversion Right (shared) OCF: https://raw.githubusercontent.com/Open-Cap-Table-Coalition/Open-Cap-Format-OCF/main/schema/types/conversion_rights/StockClassConversionRight.schema.json

    OCF-compliant fields: type, conversion_mechanism, converts_to_future_round, converts_to_stock_class_id. The OCF schema has additionalProperties: false — no other fields are allowed in OCF output.

    The remaining fields below are DAML-internal passthrough fields. The DAML contract OcfStockClassConversionRight stores conversion details flat (ratio, conversion_price, etc.) rather than nested inside the conversion_mechanism object. These fields are accepted on write for backwards compatibility but are NOT included in OCF-compliant reader output.

    interface StockClassConversionRight {
        conversion_mechanism: ConversionMechanism | ConversionMechanismObject;
        converts_to_future_round?: boolean;
        converts_to_stock_class_id: string;
        type: string;
    }
    Index

    Properties

    Mechanism by which conversion occurs (OCF: RatioConversionMechanism only)

    converts_to_future_round?: boolean

    Is this potentially convertible into a future, as-yet undetermined stock class?

    converts_to_stock_class_id: string

    Identifier of stock class to which this converts

    type: string

    Type descriptor — must be 'STOCK_CLASS_CONVERSION_RIGHT' per OCF schema