@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
13 lines (12 loc) • 376 B
TypeScript
import type { ISpecSections } from '../../spec/SpecSections';
export declare class SectionType {
sectionID: string | null;
name: string | null;
displayOrder: number | null;
volume: string | null;
notReqXML: boolean | null;
fixmlFileName: string | null;
description: string | null;
setSection(section: ISpecSections): void;
reset(): void;
}