/**
 * The argument object for {@link AssetApi.getAssetTrades}
 *
*
* @category args
*/
export interface GetAssetTradesArgs {
    assetId?: string;
    accountId?: string;
    firstIndex?: number;
    lastIndex?: number;
    includeAssetInfo?: boolean;
}
