fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
26 lines (25 loc) • 786 B
TypeScript
/**
* Used to specify the day of the week in which the reset occurs for payments that reset on a weekly basis.
* - Tag: 40766
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const PaymentStreamResetWeeklyRollConvention: Readonly<{
/** Monday */
readonly Monday: "MON";
/** Tuesday */
readonly Tuesday: "TUE";
/** Wednesday */
readonly Wednesday: "WED";
/** Thursday */
readonly Thursday: "THU";
/** Friday */
readonly Friday: "FRI";
/** Saturday */
readonly Saturday: "SAT";
/** Sunday */
readonly Sunday: "SUN";
}>;
export type PaymentStreamResetWeeklyRollConvention = (typeof PaymentStreamResetWeeklyRollConvention)[keyof typeof PaymentStreamResetWeeklyRollConvention];