fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
17 lines (16 loc) • 434 B
TypeScript
/**
* Subscription Request Type
* - Tag: 263
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const SubscriptionRequestType: Readonly<{
/** Snapshot */
readonly Snapshot: '0';
/** Snapshot + Updates (Subscribe) */
readonly SnapshotAndUpdates: '1';
/** Disable previous Snapshot + Update Request (Unsubscribe) */
readonly DisablePreviousSnapshot: '2';
}>;