fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 534 B
TypeScript
/**
* A reference to the party able to choose whether the gas is delivered for a particular period as found in a swing or interruptible contract.
* - Tag: 41080
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const DeliveryStreamElectingPartySide: Readonly<{
/** Buyer */
readonly Buyer: 0;
/** Seller */
readonly Seller: 1;
}>;
export type DeliveryStreamElectingPartySide = (typeof DeliveryStreamElectingPartySide)[keyof typeof DeliveryStreamElectingPartySide];