UNPKG

fixparser

Version:

FIX.Latest / 5.0 SP2 Parser / AI Agent Trading

21 lines (20 loc) 1.33 kB
/** * Type of attribute(s) or characteristic(s) associated with the transaction. * - Tag: 2872 * - FIX Specification type: int * - Mapped type: number * @readonly * @public */ export declare const TransactionAttributeType: Readonly<{ /** Exclusive arrangement In the context of securities borrowing and lending transaction, an indication of whether the borrower has exclusive access to borrow from the lender's securities portfolio. Not applicable to commodities. TransactionAttributeValue(2873) takes Y or N value. */ readonly ExclusiveArrangement: 0; /** Collateral reuse Indication of whether the collateral taker can reuse the securities provided as collateral for the transaction. TransactionAttributeValue(tbd2873) takes Y or N value. */ readonly CollateralReuse: 1; /** Collateral arrangement type In the context of securities financing transactions, indicates the type of collateral arrangement. For EU SFTR reporting, TransactionAttributeValue(2873) may take ESMA assigned values "TTCA" (title transfer), "SICA" (securities financial interest), or "SIUR" (securities financial interest with right of use). */ readonly CollateralArrangementType: 2; }>; export type TransactionAttributeType = (typeof TransactionAttributeType)[keyof typeof TransactionAttributeType];