Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(331)

Side by Side Diff: generated/googleapis/lib/gamesmanagement/v1management.dart

Issue 1268013003: Api-roll 21: 2015-08-04 (Closed) Base URL: git@github.com:dart-lang/googleapis.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // This is a generated file (see the discoveryapis_generator project). 1 // This is a generated file (see the discoveryapis_generator project).
2 2
3 library googleapis.gamesManagement.v1management; 3 library googleapis.gamesManagement.v1management;
4 4
5 import 'dart:core' as core; 5 import 'dart:core' as core;
6 import 'dart:async' as async; 6 import 'dart:async' as async;
7 import 'dart:convert' as convert; 7 import 'dart:convert' as convert;
8 8
9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons;
10 import 'package:http/http.dart' as http; 10 import 'package:http/http.dart' as http;
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 * only available to user accounts for your developer console. 256 * only available to user accounts for your developer console.
257 * 257 *
258 * Request parameters: 258 * Request parameters:
259 * 259 *
260 * [applicationId] - The application ID from the Google Play developer 260 * [applicationId] - The application ID from the Google Play developer
261 * console. 261 * console.
262 * 262 *
263 * [maxResults] - The maximum number of player resources to return in the 263 * [maxResults] - The maximum number of player resources to return in the
264 * response, used for paging. For any response, the actual number of player 264 * response, used for paging. For any response, the actual number of player
265 * resources returned may be less than the specified maxResults. 265 * resources returned may be less than the specified maxResults.
266 * Value must be between "1" and "15". 266 * Value must be between "1" and "50".
267 * 267 *
268 * [pageToken] - The token returned by the previous request. 268 * [pageToken] - The token returned by the previous request.
269 * 269 *
270 * Completes with a [HiddenPlayerList]. 270 * Completes with a [HiddenPlayerList].
271 * 271 *
272 * Completes with a [commons.ApiRequestError] if the API endpoint returned an 272 * Completes with a [commons.ApiRequestError] if the API endpoint returned an
273 * error. 273 * error.
274 * 274 *
275 * If the used [http.Client] completes with an error when making a REST call, 275 * If the used [http.Client] completes with an error when making a REST call,
276 * this method will complete with the same error. 276 * this method will complete with the same error.
(...skipping 1541 matching lines...) Expand 10 before | Expand all | Expand 10 after
1818 var _json = new core.Map(); 1818 var _json = new core.Map();
1819 if (kind != null) { 1819 if (kind != null) {
1820 _json["kind"] = kind; 1820 _json["kind"] = kind;
1821 } 1821 }
1822 if (leaderboardIds != null) { 1822 if (leaderboardIds != null) {
1823 _json["leaderboard_ids"] = leaderboardIds; 1823 _json["leaderboard_ids"] = leaderboardIds;
1824 } 1824 }
1825 return _json; 1825 return _json;
1826 } 1826 }
1827 } 1827 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698