fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
13 lines (12 loc) • 411 B
TypeScript
import type { ISpecSections } from '../../spec/SpecSections';
export declare class SectionType {
sectionID: string | undefined;
name: string | undefined;
displayOrder: number | undefined;
volume: string | undefined;
notReqXML: boolean | undefined;
fixmlFileName: string | undefined;
description: string | undefined;
setSection(section: ISpecSections): void;
reset(): void;
}