All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.tools.framework.tools.configgen.testdata.library_extension.proto Maven / Gradle / Ivy

There is a newer version: 0.0.8
Show newest version
syntax = "proto2";

package google.example.library.v1.extensions;

import "library_with_extensions.proto";

// Extender
message Extender {
  extend google.example.library.v1.Shelf {
    optional Extender extender = 5;
  }
  // Test
  optional string test = 1;
}

extend google.example.library.v1.Shelf {
  // Baz
  optional string baz = 6;
}

// Outer message
message Outer {
  // Inner extender
  message Inner {
    extend google.example.library.v1.Shelf {
      optional Inner inner = 7;
    }
    // Test
    optional string test = 1;
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy