| OLD | NEW |
| 1 library googleapis.siteVerification.v1; | 1 library googleapis.siteVerification.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; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 static const SiteverificationScope = "https://www.googleapis.com/auth/siteveri
fication"; | 21 static const SiteverificationScope = "https://www.googleapis.com/auth/siteveri
fication"; |
| 22 | 22 |
| 23 /** Manage your new site verifications with Google */ | 23 /** Manage your new site verifications with Google */ |
| 24 static const SiteverificationVerifyOnlyScope = "https://www.googleapis.com/aut
h/siteverification.verify_only"; | 24 static const SiteverificationVerifyOnlyScope = "https://www.googleapis.com/aut
h/siteverification.verify_only"; |
| 25 | 25 |
| 26 | 26 |
| 27 final common_internal.ApiRequester _requester; | 27 final common_internal.ApiRequester _requester; |
| 28 | 28 |
| 29 WebResourceResourceApi get webResource => new WebResourceResourceApi(_requeste
r); | 29 WebResourceResourceApi get webResource => new WebResourceResourceApi(_requeste
r); |
| 30 | 30 |
| 31 SiteVerificationApi(http.Client client) : | 31 SiteVerificationApi(http.Client client, {core.String rootUrl: "https://www.goo
gleapis.com/", core.String servicePath: "siteVerification/v1/"}) : |
| 32 _requester = new common_internal.ApiRequester(client, "https://www.googlea
pis.com/", "siteVerification/v1/"); | 32 _requester = new common_internal.ApiRequester(client, rootUrl, servicePath
); |
| 33 } | 33 } |
| 34 | 34 |
| 35 | 35 |
| 36 /** Not documented yet. */ | 36 /** Not documented yet. */ |
| 37 class WebResourceResourceApi { | 37 class WebResourceResourceApi { |
| 38 final common_internal.ApiRequester _requester; | 38 final common_internal.ApiRequester _requester; |
| 39 | 39 |
| 40 WebResourceResourceApi(common_internal.ApiRequester client) : | 40 WebResourceResourceApi(common_internal.ApiRequester client) : |
| 41 _requester = client; | 41 _requester = client; |
| 42 | 42 |
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 _json["owners"] = owners; | 550 _json["owners"] = owners; |
| 551 } | 551 } |
| 552 if (site != null) { | 552 if (site != null) { |
| 553 _json["site"] = (site).toJson(); | 553 _json["site"] = (site).toJson(); |
| 554 } | 554 } |
| 555 return _json; | 555 return _json; |
| 556 } | 556 } |
| 557 } | 557 } |
| 558 | 558 |
| 559 | 559 |
| OLD | NEW |