You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tests/generated/v2.0/uber.ts
+10-10Lines changed: 10 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -196,63 +196,63 @@ export class Api<SecurityDataType> {
196
196
197
197
/**
198
198
* @tags Products
199
-
* @nameget
199
+
* @nameproductsList
200
200
* @summary Product Types
201
201
* @request GET:/products
202
202
* @secure
203
203
* @description The Products endpoint returns information about the Uber products offered at a given location. The response includes the display name and other details about each product, and lists the products in the proper display order.
* @description The Price Estimates endpoint returns an estimated price range for each product offered at a given location. The price estimate is provided as a formatted string with the full price range and the localized currency symbol.<br><br>The response also includes low and high estimates, and the [ISO 4217](http://en.wikipedia.org/wiki/ISO_4217) currency code for situations requiring currency conversion. When surge is active for a particular product, its surge_multiplier will be greater than 1, but the price estimate already factors in this multiplier.
* @description The Time Estimates endpoint returns ETAs for all products offered at a given location, with the responses expressed as integers in seconds. We recommend that this endpoint be called every minute to provide the most accurate, up-to-date ETAs.
* @description The User Profile endpoint returns information about the Uber user that has authorized with the application.
241
241
*/
242
-
get: (params?: RequestParams)=>
242
+
getMe: (params?: RequestParams)=>
243
243
this.request<Profile>(`/me`,"GET",params,null),
244
244
}
245
245
history={
246
246
247
247
248
248
/**
249
249
* @tags User
250
-
* @nameget
250
+
* @namehistoryList
251
251
* @summary User Activity
252
252
* @request GET:/history
253
253
* @description The User Activity endpoint returns data about a user's lifetime activity with Uber. The response will include pickup locations and times, dropoff locations and times, the distance of past requests, and information about which products were requested.<br><br>The history array in the response will have a maximum length based on the limit parameter. The response value count may exceed limit, therefore subsequent API requests may be necessary.
0 commit comments