export interface LimoInstructionEntity {
    id: bigint;
    initial_in_amount: string;
    remaining_in_amount: string;
    expected_out_amount: string;
    cumulative_filled_out_amount: string;
    last_filled_out_amount: string;
    last_filled_in_amount: string;
    volume_usd: string;
    fill_ratio: string;
    number_of_fills: string;
    order_price_in_out: string;
    order_price_out_in: string;
    execution_price_in_out: string;
    execution_price_out_in: string;
    surplus: string;
    last_surplus: string;
    tip_amount: string;
    last_tip_amount: string;
    network_fee: string;
    sol_price: string;
    in_token_price: string;
    out_token_price: string;
    updated_on: Date;
    limo_order_id: string;
    in_token_mint_id: number;
    out_token_mint_id: number;
    owner_id: number;
    taker_owner_id: number | null;
    limo_order_status_id: number;
    limo_order_type_id: number;
    raw_instruction_id: string;
}
