| OLD | NEW |
| 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.adexchangeseller.v1_1; | 3 library googleapis.adexchangeseller.v1_1; |
| 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; |
| 11 | 11 |
| 12 export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show | 12 export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show |
| 13 ApiRequestError, DetailedApiRequestError, Media, UploadOptions, | 13 ApiRequestError, DetailedApiRequestError, Media, UploadOptions, |
| 14 ResumableUploadOptions, DownloadOptions, PartialDownloadOptions, | 14 ResumableUploadOptions, DownloadOptions, PartialDownloadOptions, |
| 15 ByteRange; | 15 ByteRange; |
| 16 | 16 |
| 17 const core.String USER_AGENT = 'dart-api-client adexchangeseller/v1.1'; | 17 const core.String USER_AGENT = 'dart-api-client adexchangeseller/v1.1'; |
| 18 | 18 |
| 19 /** | 19 /** |
| 20 * Gives Ad Exchange seller users access to their inventory and the ability to | 20 * Accesses the inventory of Ad Exchange seller users and generates reports. |
| 21 * generate reports | |
| 22 */ | 21 */ |
| 23 class AdexchangesellerApi { | 22 class AdexchangesellerApi { |
| 24 /** View and manage your Ad Exchange data */ | 23 /** View and manage your Ad Exchange data */ |
| 25 static const AdexchangeSellerScope = "https://www.googleapis.com/auth/adexchan
ge.seller"; | 24 static const AdexchangeSellerScope = "https://www.googleapis.com/auth/adexchan
ge.seller"; |
| 26 | 25 |
| 27 /** View your Ad Exchange data */ | 26 /** View your Ad Exchange data */ |
| 28 static const AdexchangeSellerReadonlyScope = "https://www.googleapis.com/auth/
adexchange.seller.readonly"; | 27 static const AdexchangeSellerReadonlyScope = "https://www.googleapis.com/auth/
adexchange.seller.readonly"; |
| 29 | 28 |
| 30 | 29 |
| 31 final commons.ApiRequester _requester; | 30 final commons.ApiRequester _requester; |
| (...skipping 2058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2090 } | 2089 } |
| 2091 if (kind != null) { | 2090 if (kind != null) { |
| 2092 _json["kind"] = kind; | 2091 _json["kind"] = kind; |
| 2093 } | 2092 } |
| 2094 if (nextPageToken != null) { | 2093 if (nextPageToken != null) { |
| 2095 _json["nextPageToken"] = nextPageToken; | 2094 _json["nextPageToken"] = nextPageToken; |
| 2096 } | 2095 } |
| 2097 return _json; | 2096 return _json; |
| 2098 } | 2097 } |
| 2099 } | 2098 } |
| OLD | NEW |