/proto · contentitem/images/smartart.proto

contentitem/images/smartart.proto

Messages
3
Enums
0
Fields
11
Source
431 B
Imports
0
SmartArtNode message · 5 fields
# label type name notes
1 single uint32 node_id
2 single uint32 parent_id
3 single string text
4 single string category
5 repeated uint32 children_ids
SmartArt message · 5 fields
# label type name notes
1 single uint32 slide_index
2 single uint32 smartart_index
3 single string layout_preset
4 single string color_variant
5 repeated SmartArtNode nodes
SmartArtCollection message · 1 field
# label type name notes
1 repeated SmartArt diagrams

§Raw schema

syntax = "proto3";
package eddocu.smartart.v3;

message SmartArtNode {
  uint32 node_id = 1;
  uint32 parent_id = 2;
  string text = 3;
  string category = 4;
  repeated uint32 children_ids = 5;
}

message SmartArt {
  uint32 slide_index = 1;
  uint32 smartart_index = 2;
  string layout_preset = 3;
  string color_variant = 4;
  repeated SmartArtNode nodes = 5;
}

message SmartArtCollection {
  repeated SmartArt diagrams = 1;
}