fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
21 lines (20 loc) • 578 B
TypeScript
/**
* Identifies status of the request being responded to.
* - Tag: 2813
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PayRequestStatus: Readonly<{
/** Received, not yet processed */
readonly Received: 0;
/** Accepted */
readonly Accepted: 1;
/** Rejected */
readonly Rejected: 2;
/** Disputed
Used when there is some type of mismatch that can be resolved. */
readonly Disputed: 3;
}>;
export type PayRequestStatus = (typeof PayRequestStatus)[keyof typeof PayRequestStatus];