fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
20 lines (19 loc) • 554 B
TypeScript
/**
* Status of party details definition request.
* - Tag: 1878
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PartyDetailRequestStatus: Readonly<{
/** Accepted */
readonly Accepted: 0;
/** Accepted with changes */
readonly AcceptedWithChanges: 1;
/** Rejected */
readonly Rejected: 2;
/** Acceptance pending */
readonly AcceptancePending: 3;
}>;
export type PartyDetailRequestStatus = (typeof PartyDetailRequestStatus)[keyof typeof PartyDetailRequestStatus];