fixparser
Version:
FIX.Latest / 5.0 SP2 Parser / AI Agent Trading
18 lines (17 loc) • 647 B
TypeScript
/**
* Identifies how the response to the request should be transmitted.
* - Tag: 725
* - FIX Specification type: int
* - Mapped type: number
* @readonly
* @public
*/
export declare const ResponseTransportType: Readonly<{
/** In-band (default)
Transport of the request was sent over in-band. */
readonly Inband: 0;
/** Out of band
Pre-arranged out-of-band delivery mechanism (e.g. FTP, HTTP, NDM, etc.) between counterparties. Details specified via ResponseDestination(726). */
readonly OutOfBand: 1;
}>;
export type ResponseTransportType = (typeof ResponseTransportType)[keyof typeof ResponseTransportType];