You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ws-projectlink.proto 440B

1234567891011121314151617181920212223
  1. syntax = "proto2";
  2. package sonarqube.ws.projectlink;
  3. option java_package = "org.sonarqube.ws";
  4. option java_outer_classname = "ProjectLinks";
  5. option optimize_for = SPEED;
  6. // WS api/project_links/list
  7. message SearchWsResponse {
  8. repeated Link links = 1;
  9. }
  10. message CreateWsResponse {
  11. optional Link link = 1;
  12. }
  13. message Link {
  14. optional string id = 1;
  15. optional string name = 2;
  16. optional string type = 3;
  17. optional string url = 4;
  18. }