UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

17 lines (16 loc) 781 B
/** * Identifies the class or source of DeliveryStreamDeliveryPoint(41062). * - Tag: 42192 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const DeliveryStreamDeliveryPointSource: Readonly<{ /** Proprietary */ readonly Proprietary: 0; /** Energy Identification Code (EIC) Energy Identification Code specifies the location or connection point codes of energy delivery. See http://www.entsog.eu/eic-codes/eic-location-codes-v or http://www.eiccodes.eu for more information and allocated values to use in DeliveryStreamDeliveryPoint(41062). */ readonly EIC: 1; }>; export type DeliveryStreamDeliveryPointSource = (typeof DeliveryStreamDeliveryPointSource)[keyof typeof DeliveryStreamDeliveryPointSource];