fixparser
Version:
FIX.Latest / 5.0 SP2 Parser
19 lines (18 loc) • 413 B
TypeScript
/**
* Time unit multiplier for the relative initial fixing date offset.
* - Tag: 40760
* - FIX Specification type: String
* - Mapped type: string
* @readonly
* @public
*/
export declare const PaymentStreamPaymentDateOffsetUnit: Readonly<{
/** Day */
readonly Day: 'D';
/** Week */
readonly Week: 'Wk';
/** Month */
readonly Month: 'Mo';
/** Year */
readonly Year: 'Yr';
}>;