fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
26 lines (25 loc) • 843 B
TypeScript
/**
* Type of collateral assignment response.
* - Tag: 905
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const CollAsgnRespType: Readonly<{
/** Received */
readonly Received: 0;
/** Accepted */
readonly Accepted: 1;
/** Declined */
readonly Declined: 2;
/** Rejected */
readonly Rejected: 3;
/** Transaction pending
The collateral assignment transaction is pending at the recipient. */
readonly TransactionPending: 4;
/** Transaction completed with warning - see Text(58) for further information.
The collateral assignment transaction was accepted and completed but with warnings. */
readonly TransactionCompletedWithWarning: 5;
}>;
export type CollAsgnRespType = (typeof CollAsgnRespType)[keyof typeof CollAsgnRespType];