@sotatech/node-fixjs
Version:
FIX Protocol Parser for Node.js
23 lines (22 loc) • 514 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
* @readonly
* @enum {string} (String)
*/
export declare enum PaymentStreamResetWeeklyRollConvention {
/** Monday */
Monday = "MON",
/** Tuesday */
Tuesday = "TUE",
/** Wednesday */
Wednesday = "WED",
/** Thursday */
Thursday = "THU",
/** Friday */
Friday = "FRI",
/** Saturday */
Saturday = "SAT",
/** Sunday */
Sunday = "SUN"
}