fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
28 lines (27 loc) • 742 B
TypeScript
/**
* The day of the week on which pricing takes place.
* - Tag: 41228
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PaymentStreamPricingDayOfWeek: Readonly<{
/** Every day (the default if not specified) */
readonly EveryDay: 0;
/** Monday */
readonly Monday: 1;
/** Tuesday */
readonly Tuesday: 2;
/** Wednesday */
readonly Wednesday: 3;
/** Thursday */
readonly Thursday: 4;
/** Friday */
readonly Friday: 5;
/** Saturday */
readonly Saturday: 6;
/** Sunday */
readonly Sunday: 7;
}>;
export type PaymentStreamPricingDayOfWeek = (typeof PaymentStreamPricingDayOfWeek)[keyof typeof PaymentStreamPricingDayOfWeek];