fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 405 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";
}>;
export type FundRenewWaiv = (typeof FundRenewWaiv)[keyof typeof FundRenewWaiv];