OLD | NEW |
(Empty) | |
| 1 // This is a generated file (see the discoveryapis_generator project). |
| 2 |
| 3 library googleapis.playmoviespartner.v1; |
| 4 |
| 5 import 'dart:core' as core; |
| 6 import 'dart:async' as async; |
| 7 import 'dart:convert' as convert; |
| 8 |
| 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
| 10 import 'package:http/http.dart' as http; |
| 11 |
| 12 export 'package:_discoveryapis_commons/_discoveryapis_commons.dart' show |
| 13 ApiRequestError, DetailedApiRequestError; |
| 14 |
| 15 const core.String USER_AGENT = 'dart-api-client playmoviespartner/v1'; |
| 16 |
| 17 /** |
| 18 * An API providing Google Play Movies Partners a way to get the delivery status |
| 19 * of their titles. |
| 20 */ |
| 21 class PlaymoviespartnerApi { |
| 22 |
| 23 final commons.ApiRequester _requester; |
| 24 |
| 25 PlaymoviespartnerApi(http.Client client, {core.String rootUrl: "https://playmo
viespartner.googleapis.com/", core.String servicePath: ""}) : |
| 26 _requester = new commons.ApiRequester(client, rootUrl, servicePath, USER_A
GENT); |
| 27 } |
OLD | NEW |