|
@@ -860,207 +860,6 @@ impl ::protobuf::reflect::ProtobufValue for FieldIdentifierPayload {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-#[derive(PartialEq,Clone,Default)]
|
|
|
|
-pub struct FieldIdentifierParams {
|
|
|
|
- // message fields
|
|
|
|
- pub field_id: ::std::string::String,
|
|
|
|
- pub grid_id: ::std::string::String,
|
|
|
|
- // special fields
|
|
|
|
- pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
|
- pub cached_size: ::protobuf::CachedSize,
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl<'a> ::std::default::Default for &'a FieldIdentifierParams {
|
|
|
|
- fn default() -> &'a FieldIdentifierParams {
|
|
|
|
- <FieldIdentifierParams as ::protobuf::Message>::default_instance()
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl FieldIdentifierParams {
|
|
|
|
- pub fn new() -> FieldIdentifierParams {
|
|
|
|
- ::std::default::Default::default()
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // string field_id = 1;
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- pub fn get_field_id(&self) -> &str {
|
|
|
|
- &self.field_id
|
|
|
|
- }
|
|
|
|
- pub fn clear_field_id(&mut self) {
|
|
|
|
- self.field_id.clear();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Param is passed by value, moved
|
|
|
|
- pub fn set_field_id(&mut self, v: ::std::string::String) {
|
|
|
|
- self.field_id = v;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Mutable pointer to the field.
|
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
|
- pub fn mut_field_id(&mut self) -> &mut ::std::string::String {
|
|
|
|
- &mut self.field_id
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Take field
|
|
|
|
- pub fn take_field_id(&mut self) -> ::std::string::String {
|
|
|
|
- ::std::mem::replace(&mut self.field_id, ::std::string::String::new())
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // string grid_id = 2;
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- pub fn get_grid_id(&self) -> &str {
|
|
|
|
- &self.grid_id
|
|
|
|
- }
|
|
|
|
- pub fn clear_grid_id(&mut self) {
|
|
|
|
- self.grid_id.clear();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Param is passed by value, moved
|
|
|
|
- pub fn set_grid_id(&mut self, v: ::std::string::String) {
|
|
|
|
- self.grid_id = v;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Mutable pointer to the field.
|
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
|
- pub fn mut_grid_id(&mut self) -> &mut ::std::string::String {
|
|
|
|
- &mut self.grid_id
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Take field
|
|
|
|
- pub fn take_grid_id(&mut self) -> ::std::string::String {
|
|
|
|
- ::std::mem::replace(&mut self.grid_id, ::std::string::String::new())
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl ::protobuf::Message for FieldIdentifierParams {
|
|
|
|
- fn is_initialized(&self) -> bool {
|
|
|
|
- true
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
|
- while !is.eof()? {
|
|
|
|
- let (field_number, wire_type) = is.read_tag_unpack()?;
|
|
|
|
- match field_number {
|
|
|
|
- 1 => {
|
|
|
|
- ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.field_id)?;
|
|
|
|
- },
|
|
|
|
- 2 => {
|
|
|
|
- ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.grid_id)?;
|
|
|
|
- },
|
|
|
|
- _ => {
|
|
|
|
- ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
|
|
- },
|
|
|
|
- };
|
|
|
|
- }
|
|
|
|
- ::std::result::Result::Ok(())
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Compute sizes of nested messages
|
|
|
|
- #[allow(unused_variables)]
|
|
|
|
- fn compute_size(&self) -> u32 {
|
|
|
|
- let mut my_size = 0;
|
|
|
|
- if !self.field_id.is_empty() {
|
|
|
|
- my_size += ::protobuf::rt::string_size(1, &self.field_id);
|
|
|
|
- }
|
|
|
|
- if !self.grid_id.is_empty() {
|
|
|
|
- my_size += ::protobuf::rt::string_size(2, &self.grid_id);
|
|
|
|
- }
|
|
|
|
- my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
|
|
- self.cached_size.set(my_size);
|
|
|
|
- my_size
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
|
- if !self.field_id.is_empty() {
|
|
|
|
- os.write_string(1, &self.field_id)?;
|
|
|
|
- }
|
|
|
|
- if !self.grid_id.is_empty() {
|
|
|
|
- os.write_string(2, &self.grid_id)?;
|
|
|
|
- }
|
|
|
|
- os.write_unknown_fields(self.get_unknown_fields())?;
|
|
|
|
- ::std::result::Result::Ok(())
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn get_cached_size(&self) -> u32 {
|
|
|
|
- self.cached_size.get()
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn get_unknown_fields(&self) -> &::protobuf::UnknownFields {
|
|
|
|
- &self.unknown_fields
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
|
|
|
|
- &mut self.unknown_fields
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn as_any(&self) -> &dyn (::std::any::Any) {
|
|
|
|
- self as &dyn (::std::any::Any)
|
|
|
|
- }
|
|
|
|
- fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) {
|
|
|
|
- self as &mut dyn (::std::any::Any)
|
|
|
|
- }
|
|
|
|
- fn into_any(self: ::std::boxed::Box<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
|
- self
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
|
- Self::descriptor_static()
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn new() -> FieldIdentifierParams {
|
|
|
|
- FieldIdentifierParams::new()
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
|
- static descriptor: ::protobuf::rt::LazyV2<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::LazyV2::INIT;
|
|
|
|
- descriptor.get(|| {
|
|
|
|
- let mut fields = ::std::vec::Vec::new();
|
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
|
- "field_id",
|
|
|
|
- |m: &FieldIdentifierParams| { &m.field_id },
|
|
|
|
- |m: &mut FieldIdentifierParams| { &mut m.field_id },
|
|
|
|
- ));
|
|
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
|
- "grid_id",
|
|
|
|
- |m: &FieldIdentifierParams| { &m.grid_id },
|
|
|
|
- |m: &mut FieldIdentifierParams| { &mut m.grid_id },
|
|
|
|
- ));
|
|
|
|
- ::protobuf::reflect::MessageDescriptor::new_pb_name::<FieldIdentifierParams>(
|
|
|
|
- "FieldIdentifierParams",
|
|
|
|
- fields,
|
|
|
|
- file_descriptor_proto()
|
|
|
|
- )
|
|
|
|
- })
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- fn default_instance() -> &'static FieldIdentifierParams {
|
|
|
|
- static instance: ::protobuf::rt::LazyV2<FieldIdentifierParams> = ::protobuf::rt::LazyV2::INIT;
|
|
|
|
- instance.get(FieldIdentifierParams::new)
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl ::protobuf::Clear for FieldIdentifierParams {
|
|
|
|
- fn clear(&mut self) {
|
|
|
|
- self.field_id.clear();
|
|
|
|
- self.grid_id.clear();
|
|
|
|
- self.unknown_fields.clear();
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl ::std::fmt::Debug for FieldIdentifierParams {
|
|
|
|
- fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
|
- ::protobuf::text_format::fmt(self, f)
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-impl ::protobuf::reflect::ProtobufValue for FieldIdentifierParams {
|
|
|
|
- fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
|
- ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
#[derive(PartialEq,Clone,Default)]
|
|
#[derive(PartialEq,Clone,Default)]
|
|
pub struct FieldOrder {
|
|
pub struct FieldOrder {
|
|
// message fields
|
|
// message fields
|
|
@@ -3681,6 +3480,249 @@ impl ::protobuf::reflect::ProtobufValue for Cell {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+#[derive(PartialEq,Clone,Default)]
|
|
|
|
+pub struct CellIdentifierPayload {
|
|
|
|
+ // message fields
|
|
|
|
+ pub grid_id: ::std::string::String,
|
|
|
|
+ pub field_id: ::std::string::String,
|
|
|
|
+ pub row_id: ::std::string::String,
|
|
|
|
+ // special fields
|
|
|
|
+ pub unknown_fields: ::protobuf::UnknownFields,
|
|
|
|
+ pub cached_size: ::protobuf::CachedSize,
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl<'a> ::std::default::Default for &'a CellIdentifierPayload {
|
|
|
|
+ fn default() -> &'a CellIdentifierPayload {
|
|
|
|
+ <CellIdentifierPayload as ::protobuf::Message>::default_instance()
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl CellIdentifierPayload {
|
|
|
|
+ pub fn new() -> CellIdentifierPayload {
|
|
|
|
+ ::std::default::Default::default()
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // string grid_id = 1;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ pub fn get_grid_id(&self) -> &str {
|
|
|
|
+ &self.grid_id
|
|
|
|
+ }
|
|
|
|
+ pub fn clear_grid_id(&mut self) {
|
|
|
|
+ self.grid_id.clear();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Param is passed by value, moved
|
|
|
|
+ pub fn set_grid_id(&mut self, v: ::std::string::String) {
|
|
|
|
+ self.grid_id = v;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Mutable pointer to the field.
|
|
|
|
+ // If field is not initialized, it is initialized with default value first.
|
|
|
|
+ pub fn mut_grid_id(&mut self) -> &mut ::std::string::String {
|
|
|
|
+ &mut self.grid_id
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Take field
|
|
|
|
+ pub fn take_grid_id(&mut self) -> ::std::string::String {
|
|
|
|
+ ::std::mem::replace(&mut self.grid_id, ::std::string::String::new())
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // string field_id = 2;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ pub fn get_field_id(&self) -> &str {
|
|
|
|
+ &self.field_id
|
|
|
|
+ }
|
|
|
|
+ pub fn clear_field_id(&mut self) {
|
|
|
|
+ self.field_id.clear();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Param is passed by value, moved
|
|
|
|
+ pub fn set_field_id(&mut self, v: ::std::string::String) {
|
|
|
|
+ self.field_id = v;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Mutable pointer to the field.
|
|
|
|
+ // If field is not initialized, it is initialized with default value first.
|
|
|
|
+ pub fn mut_field_id(&mut self) -> &mut ::std::string::String {
|
|
|
|
+ &mut self.field_id
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Take field
|
|
|
|
+ pub fn take_field_id(&mut self) -> ::std::string::String {
|
|
|
|
+ ::std::mem::replace(&mut self.field_id, ::std::string::String::new())
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // string row_id = 3;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ pub fn get_row_id(&self) -> &str {
|
|
|
|
+ &self.row_id
|
|
|
|
+ }
|
|
|
|
+ pub fn clear_row_id(&mut self) {
|
|
|
|
+ self.row_id.clear();
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Param is passed by value, moved
|
|
|
|
+ pub fn set_row_id(&mut self, v: ::std::string::String) {
|
|
|
|
+ self.row_id = v;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Mutable pointer to the field.
|
|
|
|
+ // If field is not initialized, it is initialized with default value first.
|
|
|
|
+ pub fn mut_row_id(&mut self) -> &mut ::std::string::String {
|
|
|
|
+ &mut self.row_id
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Take field
|
|
|
|
+ pub fn take_row_id(&mut self) -> ::std::string::String {
|
|
|
|
+ ::std::mem::replace(&mut self.row_id, ::std::string::String::new())
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl ::protobuf::Message for CellIdentifierPayload {
|
|
|
|
+ fn is_initialized(&self) -> bool {
|
|
|
|
+ true
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn merge_from(&mut self, is: &mut ::protobuf::CodedInputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
|
+ while !is.eof()? {
|
|
|
|
+ let (field_number, wire_type) = is.read_tag_unpack()?;
|
|
|
|
+ match field_number {
|
|
|
|
+ 1 => {
|
|
|
|
+ ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.grid_id)?;
|
|
|
|
+ },
|
|
|
|
+ 2 => {
|
|
|
|
+ ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.field_id)?;
|
|
|
|
+ },
|
|
|
|
+ 3 => {
|
|
|
|
+ ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.row_id)?;
|
|
|
|
+ },
|
|
|
|
+ _ => {
|
|
|
|
+ ::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
|
|
+ },
|
|
|
|
+ };
|
|
|
|
+ }
|
|
|
|
+ ::std::result::Result::Ok(())
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Compute sizes of nested messages
|
|
|
|
+ #[allow(unused_variables)]
|
|
|
|
+ fn compute_size(&self) -> u32 {
|
|
|
|
+ let mut my_size = 0;
|
|
|
|
+ if !self.grid_id.is_empty() {
|
|
|
|
+ my_size += ::protobuf::rt::string_size(1, &self.grid_id);
|
|
|
|
+ }
|
|
|
|
+ if !self.field_id.is_empty() {
|
|
|
|
+ my_size += ::protobuf::rt::string_size(2, &self.field_id);
|
|
|
|
+ }
|
|
|
|
+ if !self.row_id.is_empty() {
|
|
|
|
+ my_size += ::protobuf::rt::string_size(3, &self.row_id);
|
|
|
|
+ }
|
|
|
|
+ my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
|
|
+ self.cached_size.set(my_size);
|
|
|
|
+ my_size
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn write_to_with_cached_sizes(&self, os: &mut ::protobuf::CodedOutputStream<'_>) -> ::protobuf::ProtobufResult<()> {
|
|
|
|
+ if !self.grid_id.is_empty() {
|
|
|
|
+ os.write_string(1, &self.grid_id)?;
|
|
|
|
+ }
|
|
|
|
+ if !self.field_id.is_empty() {
|
|
|
|
+ os.write_string(2, &self.field_id)?;
|
|
|
|
+ }
|
|
|
|
+ if !self.row_id.is_empty() {
|
|
|
|
+ os.write_string(3, &self.row_id)?;
|
|
|
|
+ }
|
|
|
|
+ os.write_unknown_fields(self.get_unknown_fields())?;
|
|
|
|
+ ::std::result::Result::Ok(())
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn get_cached_size(&self) -> u32 {
|
|
|
|
+ self.cached_size.get()
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn get_unknown_fields(&self) -> &::protobuf::UnknownFields {
|
|
|
|
+ &self.unknown_fields
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn mut_unknown_fields(&mut self) -> &mut ::protobuf::UnknownFields {
|
|
|
|
+ &mut self.unknown_fields
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn as_any(&self) -> &dyn (::std::any::Any) {
|
|
|
|
+ self as &dyn (::std::any::Any)
|
|
|
|
+ }
|
|
|
|
+ fn as_any_mut(&mut self) -> &mut dyn (::std::any::Any) {
|
|
|
|
+ self as &mut dyn (::std::any::Any)
|
|
|
|
+ }
|
|
|
|
+ fn into_any(self: ::std::boxed::Box<Self>) -> ::std::boxed::Box<dyn (::std::any::Any)> {
|
|
|
|
+ self
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn descriptor(&self) -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
|
+ Self::descriptor_static()
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn new() -> CellIdentifierPayload {
|
|
|
|
+ CellIdentifierPayload::new()
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn descriptor_static() -> &'static ::protobuf::reflect::MessageDescriptor {
|
|
|
|
+ static descriptor: ::protobuf::rt::LazyV2<::protobuf::reflect::MessageDescriptor> = ::protobuf::rt::LazyV2::INIT;
|
|
|
|
+ descriptor.get(|| {
|
|
|
|
+ let mut fields = ::std::vec::Vec::new();
|
|
|
|
+ fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
|
+ "grid_id",
|
|
|
|
+ |m: &CellIdentifierPayload| { &m.grid_id },
|
|
|
|
+ |m: &mut CellIdentifierPayload| { &mut m.grid_id },
|
|
|
|
+ ));
|
|
|
|
+ fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
|
+ "field_id",
|
|
|
|
+ |m: &CellIdentifierPayload| { &m.field_id },
|
|
|
|
+ |m: &mut CellIdentifierPayload| { &mut m.field_id },
|
|
|
|
+ ));
|
|
|
|
+ fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
|
+ "row_id",
|
|
|
|
+ |m: &CellIdentifierPayload| { &m.row_id },
|
|
|
|
+ |m: &mut CellIdentifierPayload| { &mut m.row_id },
|
|
|
|
+ ));
|
|
|
|
+ ::protobuf::reflect::MessageDescriptor::new_pb_name::<CellIdentifierPayload>(
|
|
|
|
+ "CellIdentifierPayload",
|
|
|
|
+ fields,
|
|
|
|
+ file_descriptor_proto()
|
|
|
|
+ )
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ fn default_instance() -> &'static CellIdentifierPayload {
|
|
|
|
+ static instance: ::protobuf::rt::LazyV2<CellIdentifierPayload> = ::protobuf::rt::LazyV2::INIT;
|
|
|
|
+ instance.get(CellIdentifierPayload::new)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl ::protobuf::Clear for CellIdentifierPayload {
|
|
|
|
+ fn clear(&mut self) {
|
|
|
|
+ self.grid_id.clear();
|
|
|
|
+ self.field_id.clear();
|
|
|
|
+ self.row_id.clear();
|
|
|
|
+ self.unknown_fields.clear();
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl ::std::fmt::Debug for CellIdentifierPayload {
|
|
|
|
+ fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
|
+ ::protobuf::text_format::fmt(self, f)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+impl ::protobuf::reflect::ProtobufValue for CellIdentifierPayload {
|
|
|
|
+ fn as_ref(&self) -> ::protobuf::reflect::ReflectValueRef {
|
|
|
|
+ ::protobuf::reflect::ReflectValueRef::Message(self)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
#[derive(PartialEq,Clone,Default)]
|
|
#[derive(PartialEq,Clone,Default)]
|
|
pub struct RepeatedCell {
|
|
pub struct RepeatedCell {
|
|
// message fields
|
|
// message fields
|
|
@@ -5333,7 +5375,6 @@ impl ::protobuf::reflect::ProtobufValue for QueryGridBlocksPayload {
|
|
pub struct QueryRowPayload {
|
|
pub struct QueryRowPayload {
|
|
// message fields
|
|
// message fields
|
|
pub grid_id: ::std::string::String,
|
|
pub grid_id: ::std::string::String,
|
|
- pub block_id: ::std::string::String,
|
|
|
|
pub row_id: ::std::string::String,
|
|
pub row_id: ::std::string::String,
|
|
// special fields
|
|
// special fields
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
@@ -5377,32 +5418,6 @@ impl QueryRowPayload {
|
|
::std::mem::replace(&mut self.grid_id, ::std::string::String::new())
|
|
::std::mem::replace(&mut self.grid_id, ::std::string::String::new())
|
|
}
|
|
}
|
|
|
|
|
|
- // string block_id = 2;
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- pub fn get_block_id(&self) -> &str {
|
|
|
|
- &self.block_id
|
|
|
|
- }
|
|
|
|
- pub fn clear_block_id(&mut self) {
|
|
|
|
- self.block_id.clear();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Param is passed by value, moved
|
|
|
|
- pub fn set_block_id(&mut self, v: ::std::string::String) {
|
|
|
|
- self.block_id = v;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Mutable pointer to the field.
|
|
|
|
- // If field is not initialized, it is initialized with default value first.
|
|
|
|
- pub fn mut_block_id(&mut self) -> &mut ::std::string::String {
|
|
|
|
- &mut self.block_id
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- // Take field
|
|
|
|
- pub fn take_block_id(&mut self) -> ::std::string::String {
|
|
|
|
- ::std::mem::replace(&mut self.block_id, ::std::string::String::new())
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
// string row_id = 3;
|
|
// string row_id = 3;
|
|
|
|
|
|
|
|
|
|
@@ -5442,9 +5457,6 @@ impl ::protobuf::Message for QueryRowPayload {
|
|
1 => {
|
|
1 => {
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.grid_id)?;
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.grid_id)?;
|
|
},
|
|
},
|
|
- 2 => {
|
|
|
|
- ::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.block_id)?;
|
|
|
|
- },
|
|
|
|
3 => {
|
|
3 => {
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.row_id)?;
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.row_id)?;
|
|
},
|
|
},
|
|
@@ -5463,9 +5475,6 @@ impl ::protobuf::Message for QueryRowPayload {
|
|
if !self.grid_id.is_empty() {
|
|
if !self.grid_id.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(1, &self.grid_id);
|
|
my_size += ::protobuf::rt::string_size(1, &self.grid_id);
|
|
}
|
|
}
|
|
- if !self.block_id.is_empty() {
|
|
|
|
- my_size += ::protobuf::rt::string_size(2, &self.block_id);
|
|
|
|
- }
|
|
|
|
if !self.row_id.is_empty() {
|
|
if !self.row_id.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(3, &self.row_id);
|
|
my_size += ::protobuf::rt::string_size(3, &self.row_id);
|
|
}
|
|
}
|
|
@@ -5478,9 +5487,6 @@ impl ::protobuf::Message for QueryRowPayload {
|
|
if !self.grid_id.is_empty() {
|
|
if !self.grid_id.is_empty() {
|
|
os.write_string(1, &self.grid_id)?;
|
|
os.write_string(1, &self.grid_id)?;
|
|
}
|
|
}
|
|
- if !self.block_id.is_empty() {
|
|
|
|
- os.write_string(2, &self.block_id)?;
|
|
|
|
- }
|
|
|
|
if !self.row_id.is_empty() {
|
|
if !self.row_id.is_empty() {
|
|
os.write_string(3, &self.row_id)?;
|
|
os.write_string(3, &self.row_id)?;
|
|
}
|
|
}
|
|
@@ -5527,11 +5533,6 @@ impl ::protobuf::Message for QueryRowPayload {
|
|
|m: &QueryRowPayload| { &m.grid_id },
|
|
|m: &QueryRowPayload| { &m.grid_id },
|
|
|m: &mut QueryRowPayload| { &mut m.grid_id },
|
|
|m: &mut QueryRowPayload| { &mut m.grid_id },
|
|
));
|
|
));
|
|
- fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
|
|
- "block_id",
|
|
|
|
- |m: &QueryRowPayload| { &m.block_id },
|
|
|
|
- |m: &mut QueryRowPayload| { &mut m.block_id },
|
|
|
|
- ));
|
|
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeString>(
|
|
"row_id",
|
|
"row_id",
|
|
|m: &QueryRowPayload| { &m.row_id },
|
|
|m: &QueryRowPayload| { &m.row_id },
|
|
@@ -5554,7 +5555,6 @@ impl ::protobuf::Message for QueryRowPayload {
|
|
impl ::protobuf::Clear for QueryRowPayload {
|
|
impl ::protobuf::Clear for QueryRowPayload {
|
|
fn clear(&mut self) {
|
|
fn clear(&mut self) {
|
|
self.grid_id.clear();
|
|
self.grid_id.clear();
|
|
- self.block_id.clear();
|
|
|
|
self.row_id.clear();
|
|
self.row_id.clear();
|
|
self.unknown_fields.clear();
|
|
self.unknown_fields.clear();
|
|
}
|
|
}
|
|
@@ -5576,6 +5576,7 @@ impl ::protobuf::reflect::ProtobufValue for QueryRowPayload {
|
|
pub struct CreateSelectOptionPayload {
|
|
pub struct CreateSelectOptionPayload {
|
|
// message fields
|
|
// message fields
|
|
pub option_name: ::std::string::String,
|
|
pub option_name: ::std::string::String,
|
|
|
|
+ pub selected: bool,
|
|
// special fields
|
|
// special fields
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
pub unknown_fields: ::protobuf::UnknownFields,
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
pub cached_size: ::protobuf::CachedSize,
|
|
@@ -5617,6 +5618,21 @@ impl CreateSelectOptionPayload {
|
|
pub fn take_option_name(&mut self) -> ::std::string::String {
|
|
pub fn take_option_name(&mut self) -> ::std::string::String {
|
|
::std::mem::replace(&mut self.option_name, ::std::string::String::new())
|
|
::std::mem::replace(&mut self.option_name, ::std::string::String::new())
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ // bool selected = 2;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ pub fn get_selected(&self) -> bool {
|
|
|
|
+ self.selected
|
|
|
|
+ }
|
|
|
|
+ pub fn clear_selected(&mut self) {
|
|
|
|
+ self.selected = false;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // Param is passed by value, moved
|
|
|
|
+ pub fn set_selected(&mut self, v: bool) {
|
|
|
|
+ self.selected = v;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
impl ::protobuf::Message for CreateSelectOptionPayload {
|
|
impl ::protobuf::Message for CreateSelectOptionPayload {
|
|
@@ -5631,6 +5647,13 @@ impl ::protobuf::Message for CreateSelectOptionPayload {
|
|
1 => {
|
|
1 => {
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.option_name)?;
|
|
::protobuf::rt::read_singular_proto3_string_into(wire_type, is, &mut self.option_name)?;
|
|
},
|
|
},
|
|
|
|
+ 2 => {
|
|
|
|
+ if wire_type != ::protobuf::wire_format::WireTypeVarint {
|
|
|
|
+ return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
|
|
|
|
+ }
|
|
|
|
+ let tmp = is.read_bool()?;
|
|
|
|
+ self.selected = tmp;
|
|
|
|
+ },
|
|
_ => {
|
|
_ => {
|
|
::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
::protobuf::rt::read_unknown_or_skip_group(field_number, wire_type, is, self.mut_unknown_fields())?;
|
|
},
|
|
},
|
|
@@ -5646,6 +5669,9 @@ impl ::protobuf::Message for CreateSelectOptionPayload {
|
|
if !self.option_name.is_empty() {
|
|
if !self.option_name.is_empty() {
|
|
my_size += ::protobuf::rt::string_size(1, &self.option_name);
|
|
my_size += ::protobuf::rt::string_size(1, &self.option_name);
|
|
}
|
|
}
|
|
|
|
+ if self.selected != false {
|
|
|
|
+ my_size += 2;
|
|
|
|
+ }
|
|
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
my_size += ::protobuf::rt::unknown_fields_size(self.get_unknown_fields());
|
|
self.cached_size.set(my_size);
|
|
self.cached_size.set(my_size);
|
|
my_size
|
|
my_size
|
|
@@ -5655,6 +5681,9 @@ impl ::protobuf::Message for CreateSelectOptionPayload {
|
|
if !self.option_name.is_empty() {
|
|
if !self.option_name.is_empty() {
|
|
os.write_string(1, &self.option_name)?;
|
|
os.write_string(1, &self.option_name)?;
|
|
}
|
|
}
|
|
|
|
+ if self.selected != false {
|
|
|
|
+ os.write_bool(2, self.selected)?;
|
|
|
|
+ }
|
|
os.write_unknown_fields(self.get_unknown_fields())?;
|
|
os.write_unknown_fields(self.get_unknown_fields())?;
|
|
::std::result::Result::Ok(())
|
|
::std::result::Result::Ok(())
|
|
}
|
|
}
|
|
@@ -5698,6 +5727,11 @@ impl ::protobuf::Message for CreateSelectOptionPayload {
|
|
|m: &CreateSelectOptionPayload| { &m.option_name },
|
|
|m: &CreateSelectOptionPayload| { &m.option_name },
|
|
|m: &mut CreateSelectOptionPayload| { &mut m.option_name },
|
|
|m: &mut CreateSelectOptionPayload| { &mut m.option_name },
|
|
));
|
|
));
|
|
|
|
+ fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBool>(
|
|
|
|
+ "selected",
|
|
|
|
+ |m: &CreateSelectOptionPayload| { &m.selected },
|
|
|
|
+ |m: &mut CreateSelectOptionPayload| { &mut m.selected },
|
|
|
|
+ ));
|
|
::protobuf::reflect::MessageDescriptor::new_pb_name::<CreateSelectOptionPayload>(
|
|
::protobuf::reflect::MessageDescriptor::new_pb_name::<CreateSelectOptionPayload>(
|
|
"CreateSelectOptionPayload",
|
|
"CreateSelectOptionPayload",
|
|
fields,
|
|
fields,
|
|
@@ -5715,6 +5749,7 @@ impl ::protobuf::Message for CreateSelectOptionPayload {
|
|
impl ::protobuf::Clear for CreateSelectOptionPayload {
|
|
impl ::protobuf::Clear for CreateSelectOptionPayload {
|
|
fn clear(&mut self) {
|
|
fn clear(&mut self) {
|
|
self.option_name.clear();
|
|
self.option_name.clear();
|
|
|
|
+ self.selected = false;
|
|
self.unknown_fields.clear();
|
|
self.unknown_fields.clear();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -5742,55 +5777,55 @@ static file_descriptor_proto_data: &'static [u8] = b"\
|
|
\x08R\x06frozen\x12\x1e\n\nvisibility\x18\x06\x20\x01(\x08R\nvisibility\
|
|
\x08R\x06frozen\x12\x1e\n\nvisibility\x18\x06\x20\x01(\x08R\nvisibility\
|
|
\x12\x14\n\x05width\x18\x07\x20\x01(\x05R\x05width\"L\n\x16FieldIdentifi\
|
|
\x12\x14\n\x05width\x18\x07\x20\x01(\x05R\x05width\"L\n\x16FieldIdentifi\
|
|
erPayload\x12\x19\n\x08field_id\x18\x01\x20\x01(\tR\x07fieldId\x12\x17\n\
|
|
erPayload\x12\x19\n\x08field_id\x18\x01\x20\x01(\tR\x07fieldId\x12\x17\n\
|
|
- \x07grid_id\x18\x02\x20\x01(\tR\x06gridId\"K\n\x15FieldIdentifierParams\
|
|
|
|
- \x12\x19\n\x08field_id\x18\x01\x20\x01(\tR\x07fieldId\x12\x17\n\x07grid_\
|
|
|
|
- id\x18\x02\x20\x01(\tR\x06gridId\"'\n\nFieldOrder\x12\x19\n\x08field_id\
|
|
|
|
- \x18\x01\x20\x01(\tR\x07fieldId\"\x90\x01\n\x1aGetEditFieldContextPayloa\
|
|
|
|
- d\x12\x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06gridId\x12\x1b\n\x08field_\
|
|
|
|
- id\x18\x02\x20\x01(\tH\0R\x07fieldId\x12)\n\nfield_type\x18\x03\x20\x01(\
|
|
|
|
- \x0e2\n.FieldTypeR\tfieldTypeB\x11\n\x0fone_of_field_id\"q\n\x10EditFiel\
|
|
|
|
- dPayload\x12\x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06gridId\x12\x19\n\
|
|
|
|
- \x08field_id\x18\x02\x20\x01(\tR\x07fieldId\x12)\n\nfield_type\x18\x03\
|
|
|
|
- \x20\x01(\x0e2\n.FieldTypeR\tfieldType\"|\n\x10EditFieldContext\x12\x17\
|
|
|
|
- \n\x07grid_id\x18\x01\x20\x01(\tR\x06gridId\x12%\n\ngrid_field\x18\x02\
|
|
|
|
- \x20\x01(\x0b2\x06.FieldR\tgridField\x12(\n\x10type_option_data\x18\x03\
|
|
|
|
- \x20\x01(\x0cR\x0etypeOptionData\"-\n\rRepeatedField\x12\x1c\n\x05items\
|
|
|
|
- \x18\x01\x20\x03(\x0b2\x06.FieldR\x05items\"7\n\x12RepeatedFieldOrder\
|
|
|
|
- \x12!\n\x05items\x18\x01\x20\x03(\x0b2\x0b.FieldOrderR\x05items\"T\n\x08\
|
|
|
|
- RowOrder\x12\x15\n\x06row_id\x18\x01\x20\x01(\tR\x05rowId\x12\x19\n\x08b\
|
|
|
|
- lock_id\x18\x02\x20\x01(\tR\x07blockId\x12\x16\n\x06height\x18\x03\x20\
|
|
|
|
- \x01(\x05R\x06height\"\xb8\x01\n\x03Row\x12\x0e\n\x02id\x18\x01\x20\x01(\
|
|
|
|
- \tR\x02id\x12@\n\x10cell_by_field_id\x18\x02\x20\x03(\x0b2\x17.Row.CellB\
|
|
|
|
- yFieldIdEntryR\rcellByFieldId\x12\x16\n\x06height\x18\x03\x20\x01(\x05R\
|
|
|
|
- \x06height\x1aG\n\x12CellByFieldIdEntry\x12\x10\n\x03key\x18\x01\x20\x01\
|
|
|
|
- (\tR\x03key\x12\x1b\n\x05value\x18\x02\x20\x01(\x0b2\x05.CellR\x05value:\
|
|
|
|
- \x028\x01\")\n\x0bRepeatedRow\x12\x1a\n\x05items\x18\x01\x20\x03(\x0b2\
|
|
|
|
- \x04.RowR\x05items\"5\n\x11RepeatedGridBlock\x12\x20\n\x05items\x18\x01\
|
|
|
|
- \x20\x03(\x0b2\n.GridBlockR\x05items\"+\n\x0eGridBlockOrder\x12\x19\n\
|
|
|
|
- \x08block_id\x18\x01\x20\x01(\tR\x07blockId\"E\n\tGridBlock\x12\x0e\n\
|
|
|
|
- \x02id\x18\x01\x20\x01(\tR\x02id\x12(\n\nrow_orders\x18\x02\x20\x03(\x0b\
|
|
|
|
- 2\t.RowOrderR\trowOrders\";\n\x04Cell\x12\x19\n\x08field_id\x18\x01\x20\
|
|
|
|
- \x01(\tR\x07fieldId\x12\x18\n\x07content\x18\x02\x20\x01(\tR\x07content\
|
|
|
|
- \"+\n\x0cRepeatedCell\x12\x1b\n\x05items\x18\x01\x20\x03(\x0b2\x05.CellR\
|
|
|
|
- \x05items\"'\n\x11CreateGridPayload\x12\x12\n\x04name\x18\x01\x20\x01(\t\
|
|
|
|
- R\x04name\"\x1e\n\x06GridId\x12\x14\n\x05value\x18\x01\x20\x01(\tR\x05va\
|
|
|
|
- lue\"#\n\x0bGridBlockId\x12\x14\n\x05value\x18\x01\x20\x01(\tR\x05value\
|
|
|
|
- \"f\n\x10CreateRowPayload\x12\x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06gr\
|
|
|
|
- idId\x12\"\n\x0cstart_row_id\x18\x02\x20\x01(\tH\0R\nstartRowIdB\x15\n\
|
|
|
|
- \x13one_of_start_row_id\"\xb6\x01\n\x12CreateFieldPayload\x12\x17\n\x07g\
|
|
|
|
- rid_id\x18\x01\x20\x01(\tR\x06gridId\x12\x1c\n\x05field\x18\x02\x20\x01(\
|
|
|
|
- \x0b2\x06.FieldR\x05field\x12(\n\x10type_option_data\x18\x03\x20\x01(\
|
|
|
|
- \x0cR\x0etypeOptionData\x12&\n\x0estart_field_id\x18\x04\x20\x01(\tH\0R\
|
|
|
|
- \x0cstartFieldIdB\x17\n\x15one_of_start_field_id\"d\n\x11QueryFieldPaylo\
|
|
|
|
- ad\x12\x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06gridId\x126\n\x0cfield_or\
|
|
|
|
- ders\x18\x02\x20\x01(\x0b2\x13.RepeatedFieldOrderR\x0bfieldOrders\"e\n\
|
|
|
|
- \x16QueryGridBlocksPayload\x12\x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06g\
|
|
|
|
- ridId\x122\n\x0cblock_orders\x18\x02\x20\x03(\x0b2\x0f.GridBlockOrderR\
|
|
|
|
- \x0bblockOrders\"\\\n\x0fQueryRowPayload\x12\x17\n\x07grid_id\x18\x01\
|
|
|
|
- \x20\x01(\tR\x06gridId\x12\x19\n\x08block_id\x18\x02\x20\x01(\tR\x07bloc\
|
|
|
|
- kId\x12\x15\n\x06row_id\x18\x03\x20\x01(\tR\x05rowId\"<\n\x19CreateSelec\
|
|
|
|
- tOptionPayload\x12\x1f\n\x0boption_name\x18\x01\x20\x01(\tR\noptionNameb\
|
|
|
|
- \x06proto3\
|
|
|
|
|
|
+ \x07grid_id\x18\x02\x20\x01(\tR\x06gridId\"'\n\nFieldOrder\x12\x19\n\x08\
|
|
|
|
+ field_id\x18\x01\x20\x01(\tR\x07fieldId\"\x90\x01\n\x1aGetEditFieldConte\
|
|
|
|
+ xtPayload\x12\x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06gridId\x12\x1b\n\
|
|
|
|
+ \x08field_id\x18\x02\x20\x01(\tH\0R\x07fieldId\x12)\n\nfield_type\x18\
|
|
|
|
+ \x03\x20\x01(\x0e2\n.FieldTypeR\tfieldTypeB\x11\n\x0fone_of_field_id\"q\
|
|
|
|
+ \n\x10EditFieldPayload\x12\x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06gridI\
|
|
|
|
+ d\x12\x19\n\x08field_id\x18\x02\x20\x01(\tR\x07fieldId\x12)\n\nfield_typ\
|
|
|
|
+ e\x18\x03\x20\x01(\x0e2\n.FieldTypeR\tfieldType\"|\n\x10EditFieldContext\
|
|
|
|
+ \x12\x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06gridId\x12%\n\ngrid_field\
|
|
|
|
+ \x18\x02\x20\x01(\x0b2\x06.FieldR\tgridField\x12(\n\x10type_option_data\
|
|
|
|
+ \x18\x03\x20\x01(\x0cR\x0etypeOptionData\"-\n\rRepeatedField\x12\x1c\n\
|
|
|
|
+ \x05items\x18\x01\x20\x03(\x0b2\x06.FieldR\x05items\"7\n\x12RepeatedFiel\
|
|
|
|
+ dOrder\x12!\n\x05items\x18\x01\x20\x03(\x0b2\x0b.FieldOrderR\x05items\"T\
|
|
|
|
+ \n\x08RowOrder\x12\x15\n\x06row_id\x18\x01\x20\x01(\tR\x05rowId\x12\x19\
|
|
|
|
+ \n\x08block_id\x18\x02\x20\x01(\tR\x07blockId\x12\x16\n\x06height\x18\
|
|
|
|
+ \x03\x20\x01(\x05R\x06height\"\xb8\x01\n\x03Row\x12\x0e\n\x02id\x18\x01\
|
|
|
|
+ \x20\x01(\tR\x02id\x12@\n\x10cell_by_field_id\x18\x02\x20\x03(\x0b2\x17.\
|
|
|
|
+ Row.CellByFieldIdEntryR\rcellByFieldId\x12\x16\n\x06height\x18\x03\x20\
|
|
|
|
+ \x01(\x05R\x06height\x1aG\n\x12CellByFieldIdEntry\x12\x10\n\x03key\x18\
|
|
|
|
+ \x01\x20\x01(\tR\x03key\x12\x1b\n\x05value\x18\x02\x20\x01(\x0b2\x05.Cel\
|
|
|
|
+ lR\x05value:\x028\x01\")\n\x0bRepeatedRow\x12\x1a\n\x05items\x18\x01\x20\
|
|
|
|
+ \x03(\x0b2\x04.RowR\x05items\"5\n\x11RepeatedGridBlock\x12\x20\n\x05item\
|
|
|
|
+ s\x18\x01\x20\x03(\x0b2\n.GridBlockR\x05items\"+\n\x0eGridBlockOrder\x12\
|
|
|
|
+ \x19\n\x08block_id\x18\x01\x20\x01(\tR\x07blockId\"E\n\tGridBlock\x12\
|
|
|
|
+ \x0e\n\x02id\x18\x01\x20\x01(\tR\x02id\x12(\n\nrow_orders\x18\x02\x20\
|
|
|
|
+ \x03(\x0b2\t.RowOrderR\trowOrders\";\n\x04Cell\x12\x19\n\x08field_id\x18\
|
|
|
|
+ \x01\x20\x01(\tR\x07fieldId\x12\x18\n\x07content\x18\x02\x20\x01(\tR\x07\
|
|
|
|
+ content\"b\n\x15CellIdentifierPayload\x12\x17\n\x07grid_id\x18\x01\x20\
|
|
|
|
+ \x01(\tR\x06gridId\x12\x19\n\x08field_id\x18\x02\x20\x01(\tR\x07fieldId\
|
|
|
|
+ \x12\x15\n\x06row_id\x18\x03\x20\x01(\tR\x05rowId\"+\n\x0cRepeatedCell\
|
|
|
|
+ \x12\x1b\n\x05items\x18\x01\x20\x03(\x0b2\x05.CellR\x05items\"'\n\x11Cre\
|
|
|
|
+ ateGridPayload\x12\x12\n\x04name\x18\x01\x20\x01(\tR\x04name\"\x1e\n\x06\
|
|
|
|
+ GridId\x12\x14\n\x05value\x18\x01\x20\x01(\tR\x05value\"#\n\x0bGridBlock\
|
|
|
|
+ Id\x12\x14\n\x05value\x18\x01\x20\x01(\tR\x05value\"f\n\x10CreateRowPayl\
|
|
|
|
+ oad\x12\x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06gridId\x12\"\n\x0cstart_\
|
|
|
|
+ row_id\x18\x02\x20\x01(\tH\0R\nstartRowIdB\x15\n\x13one_of_start_row_id\
|
|
|
|
+ \"\xb6\x01\n\x12CreateFieldPayload\x12\x17\n\x07grid_id\x18\x01\x20\x01(\
|
|
|
|
+ \tR\x06gridId\x12\x1c\n\x05field\x18\x02\x20\x01(\x0b2\x06.FieldR\x05fie\
|
|
|
|
+ ld\x12(\n\x10type_option_data\x18\x03\x20\x01(\x0cR\x0etypeOptionData\
|
|
|
|
+ \x12&\n\x0estart_field_id\x18\x04\x20\x01(\tH\0R\x0cstartFieldIdB\x17\n\
|
|
|
|
+ \x15one_of_start_field_id\"d\n\x11QueryFieldPayload\x12\x17\n\x07grid_id\
|
|
|
|
+ \x18\x01\x20\x01(\tR\x06gridId\x126\n\x0cfield_orders\x18\x02\x20\x01(\
|
|
|
|
+ \x0b2\x13.RepeatedFieldOrderR\x0bfieldOrders\"e\n\x16QueryGridBlocksPayl\
|
|
|
|
+ oad\x12\x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06gridId\x122\n\x0cblock_o\
|
|
|
|
+ rders\x18\x02\x20\x03(\x0b2\x0f.GridBlockOrderR\x0bblockOrders\"A\n\x0fQ\
|
|
|
|
+ ueryRowPayload\x12\x17\n\x07grid_id\x18\x01\x20\x01(\tR\x06gridId\x12\
|
|
|
|
+ \x15\n\x06row_id\x18\x03\x20\x01(\tR\x05rowId\"X\n\x19CreateSelectOption\
|
|
|
|
+ Payload\x12\x1f\n\x0boption_name\x18\x01\x20\x01(\tR\noptionName\x12\x1a\
|
|
|
|
+ \n\x08selected\x18\x02\x20\x01(\x08R\x08selectedb\x06proto3\
|
|
";
|
|
";
|
|
|
|
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|
|
static file_descriptor_proto_lazy: ::protobuf::rt::LazyV2<::protobuf::descriptor::FileDescriptorProto> = ::protobuf::rt::LazyV2::INIT;
|