aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws/src/main/protobuf/ws-developers.proto
blob: a59cb7a3f5a87c73f554dad68a81cd4860056c01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (C) 2017-2017 SonarSource SA
// All rights reserved
// mailto:info AT sonarsource DOT com

syntax = "proto2";

package sonarqube.ws.component;

option java_package = "org.sonarqube.ws";
option java_outer_classname = "Developers";
option optimize_for = SPEED;

// WS api/developers/search_events
message SearchEventsWsResponse {
  repeated Event events = 1;

  message Event {
    optional string category = 1;
    optional string message = 2;
    optional string link = 3;
    optional string project = 4;
    optional string date = 5;
  }
}