fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
16 lines (15 loc) • 491 B
TypeScript
/**
* Payment side of this individual payment from the requesting firm's perspective.
* - Tag: 2819
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const PostTradePaymentDebitOrCredit: Readonly<{
/** Debit / Pay */
readonly DebitPay: 0;
/** Credit / Receive */
readonly CreditReceive: 1;
}>;
export type PostTradePaymentDebitOrCredit = (typeof PostTradePaymentDebitOrCredit)[keyof typeof PostTradePaymentDebitOrCredit];