fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
25 lines (24 loc) • 631 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';
}>;