/**
 * Identifies the origin of the order.
 * - Tag: 1724
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const OrderOrigination: Readonly<{
    /** Order received from a customer */
    readonly OrderReceivedFromCustomer: 1;
    /** Order received from within the firm */
    readonly OrderReceivedFromWithinFirm: 2;
    /** Order received from another broker-dealer */
    readonly OrderReceivedFromAnotherBrokerDealer: 3;
    /** Order received from a customer or originated from within the firm */
    readonly OrderReceivedFromCustomerOrWithFirm: 4;
    /** Order received from a direct access or sponsored access customer */
    readonly OrderReceivedFromDirectAccessCustomer: 5;
    /** Order received from a foreign dealer equivalent
        A foreign dealer equivalent is a person in the business of trading securities in a foreign jurisdiction in a manner analogous to an investment dealer and that is subject to the regulatory jurisdiction of a signatory to the International Organization of Securities Commissions’ (IOSCO) Multilateral Memorandum of Understanding in that foreign jurisdiction. */
    readonly OrderReceivedFromForeignDealerEquivalent: 6;
    /** Order received from an execution-only service
        The acceptance and execution of orders from customers for trades that the broker-dealer has not recommended and for which the broker-dealer takes no responsibility as to the appropriateness or suitability of orders accepted or account positions held. */
    readonly OrderReceivedFromExecutionOnlyService: 7;
}>;
export type OrderOrigination = (typeof OrderOrigination)[keyof typeof OrderOrigination];
