Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Unified Diff: generated/googleapis/lib/slides/v1.dart

Issue 2987103002: Api-Roll 52: 2017-07-31 (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « generated/googleapis/lib/sheets/v4.dart ('k') | generated/googleapis/lib/speech/v1.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: generated/googleapis/lib/slides/v1.dart
diff --git a/generated/googleapis/lib/slides/v1.dart b/generated/googleapis/lib/slides/v1.dart
index e8238a962b3af63d982f43dc34b58634011c8817..e4bd9e33b1d33bbcfedb761ceee565cde1e2872d 100644
--- a/generated/googleapis/lib/slides/v1.dart
+++ b/generated/googleapis/lib/slides/v1.dart
@@ -2925,6 +2925,31 @@ class List {
}
}
+/**
+ * The properties of Page that are only
+ * relevant for pages with page_type MASTER.
+ */
+class MasterProperties {
+ /** The human-readable name of the master. */
+ core.String displayName;
+
+ MasterProperties();
+
+ MasterProperties.fromJson(core.Map _json) {
+ if (_json.containsKey("displayName")) {
+ displayName = _json["displayName"];
+ }
+ }
+
+ core.Map<core.String, core.Object> toJson() {
+ final core.Map<core.String, core.Object> _json = new core.Map<core.String, core.Object>();
+ if (displayName != null) {
+ _json["displayName"] = displayName;
+ }
+ return _json;
+ }
+}
+
/**
* Contains properties describing the look and feel of a list bullet at a given
* level of nesting.
@@ -3184,6 +3209,8 @@ class OutlineFill {
class Page {
/** Layout specific properties. Only set if page_type = LAYOUT. */
LayoutProperties layoutProperties;
+ /** Master specific properties. Only set if page_type = MASTER. */
+ MasterProperties masterProperties;
/** Notes specific properties. Only set if page_type = NOTES. */
NotesProperties notesProperties;
/**
@@ -3230,6 +3257,9 @@ class Page {
if (_json.containsKey("layoutProperties")) {
layoutProperties = new LayoutProperties.fromJson(_json["layoutProperties"]);
}
+ if (_json.containsKey("masterProperties")) {
+ masterProperties = new MasterProperties.fromJson(_json["masterProperties"]);
+ }
if (_json.containsKey("notesProperties")) {
notesProperties = new NotesProperties.fromJson(_json["notesProperties"]);
}
@@ -3258,6 +3288,9 @@ class Page {
if (layoutProperties != null) {
_json["layoutProperties"] = (layoutProperties).toJson();
}
+ if (masterProperties != null) {
+ _json["masterProperties"] = (masterProperties).toJson();
+ }
if (notesProperties != null) {
_json["notesProperties"] = (notesProperties).toJson();
}
« no previous file with comments | « generated/googleapis/lib/sheets/v4.dart ('k') | generated/googleapis/lib/speech/v1.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698