OLD | NEW |
1 // This is a generated file (see the discoveryapis_generator project). | 1 // This is a generated file (see the discoveryapis_generator project). |
2 | 2 |
3 library googleapis.adsense.v1_4; | 3 library googleapis.adsense.v1_4; |
4 | 4 |
5 import 'dart:core' as core; | 5 import 'dart:core' as core; |
6 import 'dart:async' as async; | 6 import 'dart:async' as async; |
7 import 'dart:convert' as convert; | 7 import 'dart:convert' as convert; |
8 | 8 |
9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; | 9 import 'package:_discoveryapis_commons/_discoveryapis_commons.dart' as commons; |
10 import 'package:http/http.dart' as http; | 10 import 'package:http/http.dart' as http; |
(...skipping 2688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2699 } | 2699 } |
2700 } | 2700 } |
2701 | 2701 |
2702 class AdStyle { | 2702 class AdStyle { |
2703 /** | 2703 /** |
2704 * The colors which are included in the style. These are represented as six | 2704 * The colors which are included in the style. These are represented as six |
2705 * hexadecimal characters, similar to HTML color codes, but without the | 2705 * hexadecimal characters, similar to HTML color codes, but without the |
2706 * leading hash. | 2706 * leading hash. |
2707 */ | 2707 */ |
2708 AdStyleColors colors; | 2708 AdStyleColors colors; |
2709 /** The style of the corners in the ad. */ | 2709 /** |
| 2710 * The style of the corners in the ad (deprecated: never populated, ignored). |
| 2711 */ |
2710 core.String corners; | 2712 core.String corners; |
2711 /** The font which is included in the style. */ | 2713 /** The font which is included in the style. */ |
2712 AdStyleFont font; | 2714 AdStyleFont font; |
2713 /** Kind this is, in this case adsense#adStyle. */ | 2715 /** Kind this is, in this case adsense#adStyle. */ |
2714 core.String kind; | 2716 core.String kind; |
2715 | 2717 |
2716 AdStyle(); | 2718 AdStyle(); |
2717 | 2719 |
2718 AdStyle.fromJson(core.Map _json) { | 2720 AdStyle.fromJson(core.Map _json) { |
2719 if (_json.containsKey("colors")) { | 2721 if (_json.containsKey("colors")) { |
(...skipping 1235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3955 } | 3957 } |
3956 if (kind != null) { | 3958 if (kind != null) { |
3957 _json["kind"] = kind; | 3959 _json["kind"] = kind; |
3958 } | 3960 } |
3959 if (nextPageToken != null) { | 3961 if (nextPageToken != null) { |
3960 _json["nextPageToken"] = nextPageToken; | 3962 _json["nextPageToken"] = nextPageToken; |
3961 } | 3963 } |
3962 return _json; | 3964 return _json; |
3963 } | 3965 } |
3964 } | 3966 } |
OLD | NEW |