From cd2bbd850d30e581273aae5d0524bce785639042 Mon Sep 17 00:00:00 2001 From: fragosti Date: Mon, 20 Aug 2018 17:23:38 -0700 Subject: Update more names in docs --- packages/connect/src/http_client.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'packages/connect') diff --git a/packages/connect/src/http_client.ts b/packages/connect/src/http_client.ts index 1b30bebf3..b90c2c35f 100644 --- a/packages/connect/src/http_client.ts +++ b/packages/connect/src/http_client.ts @@ -57,7 +57,7 @@ export class HttpClient implements Client { /** * Retrieve assetData pair info from the API * @param requestOpts Options specifying assetData information to retrieve, page information, and network id. - * @return The resulting AssetPairsItems that match the request + * @return The resulting AssetPairsResponse that match the request */ public async getAssetPairsAsync( requestOpts?: RequestOpts & AssetPairsRequestOpts & PagedRequestOpts, @@ -77,7 +77,7 @@ export class HttpClient implements Client { /** * Retrieve orders from the API * @param requestOpts Options specifying orders to retrieve and page information, page information, and network id. - * @return The resulting SignedOrders that match the request + * @return The resulting OrdersResponse that match the request */ public async getOrdersAsync( requestOpts?: RequestOpts & OrdersRequestOpts & PagedRequestOpts, @@ -97,7 +97,7 @@ export class HttpClient implements Client { /** * Retrieve a specific order from the API * @param orderHash An orderHash generated from the desired order - * @return The SignedOrder that matches the supplied orderHash + * @return The APIOrder that matches the supplied orderHash */ public async getOrderAsync(orderHash: string, requestOpts?: RequestOpts): Promise { if (!_.isUndefined(requestOpts)) { @@ -158,6 +158,7 @@ export class HttpClient implements Client { /** * Retrieve the list of fee recipient addresses used by the relayer. * @param requestOpts Options specifying page information, and network id. + * @return The resulting FeeRecipientsResponse */ public async getFeeRecipientsAsync(requestOpts?: RequestOpts & PagedRequestOpts): Promise { if (!_.isUndefined(requestOpts)) { -- cgit v1.2.3