fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
15 lines (14 loc) • 325 B
TypeScript
/**
* A one character code identifying whether the Fund based renewal commission is to be waived.
* - Tag: 497
* - FIX Specification type: char
* - Mapped type: string
* @readonly
* @public
*/
export declare const FundRenewWaiv: Readonly<{
/** No */
readonly No: 'N';
/** Yes */
readonly Yes: 'Y';
}>;