| OLD | NEW |
| 1 library googleapis.urlshortener.v1; | 1 library googleapis.urlshortener.v1; |
| 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; |
| 11 import '../common/common.dart' as common; | 11 import '../common/common.dart' as common; |
| 12 | 12 |
| 13 export '../common/common.dart' show ApiRequestError; | 13 export '../common/common.dart' show ApiRequestError; |
| 14 export '../common/common.dart' show DetailedApiRequestError; | 14 export '../common/common.dart' show DetailedApiRequestError; |
| 15 | 15 |
| 16 /** Lets you create, inspect, and manage goo.gl short URLs */ | 16 /** Lets you create, inspect, and manage goo.gl short URLs */ |
| 17 class UrlshortenerApi { | 17 class UrlshortenerApi { |
| 18 /** Manage your goo.gl short URLs */ | 18 /** Manage your goo.gl short URLs */ |
| 19 static const UrlshortenerScope = "https://www.googleapis.com/auth/urlshortener
"; | 19 static const UrlshortenerScope = "https://www.googleapis.com/auth/urlshortener
"; |
| 20 | 20 |
| 21 | 21 |
| 22 final common_internal.ApiRequester _requester; | 22 final common_internal.ApiRequester _requester; |
| 23 | 23 |
| 24 UrlResourceApi get url => new UrlResourceApi(_requester); | 24 UrlResourceApi get url => new UrlResourceApi(_requester); |
| 25 | 25 |
| 26 UrlshortenerApi(http.Client client) : | 26 UrlshortenerApi(http.Client client, {core.String rootUrl: "https://www.googlea
pis.com/", core.String servicePath: "urlshortener/v1/"}) : |
| 27 _requester = new common_internal.ApiRequester(client, "https://www.googlea
pis.com/", "urlshortener/v1/"); | 27 _requester = new common_internal.ApiRequester(client, rootUrl, servicePath
); |
| 28 } | 28 } |
| 29 | 29 |
| 30 | 30 |
| 31 /** Not documented yet. */ | 31 /** Not documented yet. */ |
| 32 class UrlResourceApi { | 32 class UrlResourceApi { |
| 33 final common_internal.ApiRequester _requester; | 33 final common_internal.ApiRequester _requester; |
| 34 | 34 |
| 35 UrlResourceApi(common_internal.ApiRequester client) : | 35 UrlResourceApi(common_internal.ApiRequester client) : |
| 36 _requester = client; | 36 _requester = client; |
| 37 | 37 |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 _json["nextPageToken"] = nextPageToken; | 494 _json["nextPageToken"] = nextPageToken; |
| 495 } | 495 } |
| 496 if (totalItems != null) { | 496 if (totalItems != null) { |
| 497 _json["totalItems"] = totalItems; | 497 _json["totalItems"] = totalItems; |
| 498 } | 498 } |
| 499 return _json; | 499 return _json; |
| 500 } | 500 } |
| 501 } | 501 } |
| 502 | 502 |
| 503 | 503 |
| OLD | NEW |