@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
15 lines (14 loc) • 349 B
TypeScript
/**
* Subscription Request Type
* tag: 263
* @readonly
* @enum {string} (char)
*/
export declare enum SubscriptionRequestType {
/** Snapshot */
Snapshot = "0",
/** Snapshot + Updates (Subscribe) */
SnapshotAndUpdates = "1",
/** Disable previous Snapshot + Update Request (Unsubscribe) */
DisablePreviousSnapshot = "2"
}