OLD | NEW |
1 library googleapis.adexchangeseller.v2_0; | 1 library googleapis.adexchangeseller.v2_0; |
2 | 2 |
3 import "dart:core" as core; | 3 import "dart:core" as core; |
4 import "dart:collection" as collection; | 4 import "dart:collection" as collection; |
5 import "dart:async" as async; | 5 import "dart:async" as async; |
6 import "dart:convert" as convert; | 6 import "dart:convert" as convert; |
7 | 7 |
8 import "package:crypto/crypto.dart" as crypto; | 8 import "package:crypto/crypto.dart" as crypto; |
9 import 'package:http/http.dart' as http; | 9 import 'package:http/http.dart' as http; |
10 import '../src/common_internal.dart' as common_internal; | 10 import '../src/common_internal.dart' as common_internal; |
(...skipping 11 matching lines...) Expand all Loading... |
22 static const AdexchangeSellerScope = "https://www.googleapis.com/auth/adexchan
ge.seller"; | 22 static const AdexchangeSellerScope = "https://www.googleapis.com/auth/adexchan
ge.seller"; |
23 | 23 |
24 /** View your Ad Exchange data */ | 24 /** View your Ad Exchange data */ |
25 static const AdexchangeSellerReadonlyScope = "https://www.googleapis.com/auth/
adexchange.seller.readonly"; | 25 static const AdexchangeSellerReadonlyScope = "https://www.googleapis.com/auth/
adexchange.seller.readonly"; |
26 | 26 |
27 | 27 |
28 final common_internal.ApiRequester _requester; | 28 final common_internal.ApiRequester _requester; |
29 | 29 |
30 AccountsResourceApi get accounts => new AccountsResourceApi(_requester); | 30 AccountsResourceApi get accounts => new AccountsResourceApi(_requester); |
31 | 31 |
32 AdexchangesellerApi(http.Client client) : | 32 AdexchangesellerApi(http.Client client, {core.String rootUrl: "https://www.goo
gleapis.com/", core.String servicePath: "adexchangeseller/v2.0/"}) : |
33 _requester = new common_internal.ApiRequester(client, "https://www.googlea
pis.com/", "adexchangeseller/v2.0/"); | 33 _requester = new common_internal.ApiRequester(client, rootUrl, servicePath
); |
34 } | 34 } |
35 | 35 |
36 | 36 |
37 /** Not documented yet. */ | 37 /** Not documented yet. */ |
38 class AccountsResourceApi { | 38 class AccountsResourceApi { |
39 final common_internal.ApiRequester _requester; | 39 final common_internal.ApiRequester _requester; |
40 | 40 |
41 AccountsAdclientsResourceApi get adclients => new AccountsAdclientsResourceApi
(_requester); | 41 AccountsAdclientsResourceApi get adclients => new AccountsAdclientsResourceApi
(_requester); |
42 AccountsAlertsResourceApi get alerts => new AccountsAlertsResourceApi(_request
er); | 42 AccountsAlertsResourceApi get alerts => new AccountsAlertsResourceApi(_request
er); |
43 AccountsCustomchannelsResourceApi get customchannels => new AccountsCustomchan
nelsResourceApi(_requester); | 43 AccountsCustomchannelsResourceApi get customchannels => new AccountsCustomchan
nelsResourceApi(_requester); |
(...skipping 1971 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2015 _json["kind"] = kind; | 2015 _json["kind"] = kind; |
2016 } | 2016 } |
2017 if (nextPageToken != null) { | 2017 if (nextPageToken != null) { |
2018 _json["nextPageToken"] = nextPageToken; | 2018 _json["nextPageToken"] = nextPageToken; |
2019 } | 2019 } |
2020 return _json; | 2020 return _json; |
2021 } | 2021 } |
2022 } | 2022 } |
2023 | 2023 |
2024 | 2024 |
OLD | NEW |