OLD | NEW |
1 library googleapis.tasks.v1; | 1 library googleapis.tasks.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 manage your tasks and task lists. */ | 16 /** Lets you manage your tasks and task lists. */ |
17 class TasksApi { | 17 class TasksApi { |
18 /** Manage your tasks */ | 18 /** Manage your tasks */ |
19 static const TasksScope = "https://www.googleapis.com/auth/tasks"; | 19 static const TasksScope = "https://www.googleapis.com/auth/tasks"; |
20 | 20 |
21 /** View your tasks */ | 21 /** View your tasks */ |
22 static const TasksReadonlyScope = "https://www.googleapis.com/auth/tasks.reado
nly"; | 22 static const TasksReadonlyScope = "https://www.googleapis.com/auth/tasks.reado
nly"; |
23 | 23 |
24 | 24 |
25 final common_internal.ApiRequester _requester; | 25 final common_internal.ApiRequester _requester; |
26 | 26 |
27 TasklistsResourceApi get tasklists => new TasklistsResourceApi(_requester); | 27 TasklistsResourceApi get tasklists => new TasklistsResourceApi(_requester); |
28 TasksResourceApi get tasks => new TasksResourceApi(_requester); | 28 TasksResourceApi get tasks => new TasksResourceApi(_requester); |
29 | 29 |
30 TasksApi(http.Client client) : | 30 TasksApi(http.Client client, {core.String rootUrl: "https://www.googleapis.com
/", core.String servicePath: "tasks/v1/"}) : |
31 _requester = new common_internal.ApiRequester(client, "https://www.googlea
pis.com/", "tasks/v1/"); | 31 _requester = new common_internal.ApiRequester(client, rootUrl, servicePath
); |
32 } | 32 } |
33 | 33 |
34 | 34 |
35 /** Not documented yet. */ | 35 /** Not documented yet. */ |
36 class TasklistsResourceApi { | 36 class TasklistsResourceApi { |
37 final common_internal.ApiRequester _requester; | 37 final common_internal.ApiRequester _requester; |
38 | 38 |
39 TasklistsResourceApi(common_internal.ApiRequester client) : | 39 TasklistsResourceApi(common_internal.ApiRequester client) : |
40 _requester = client; | 40 _requester = client; |
41 | 41 |
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1138 _json["kind"] = kind; | 1138 _json["kind"] = kind; |
1139 } | 1139 } |
1140 if (nextPageToken != null) { | 1140 if (nextPageToken != null) { |
1141 _json["nextPageToken"] = nextPageToken; | 1141 _json["nextPageToken"] = nextPageToken; |
1142 } | 1142 } |
1143 return _json; | 1143 return _json; |
1144 } | 1144 } |
1145 } | 1145 } |
1146 | 1146 |
1147 | 1147 |
OLD | NEW |