• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto2";
2
3option java_package = "com.android.asuite.clearcut";
4
5message Duration {
6  required int64 seconds = 1;
7  required int32 nanos = 2;
8}
9
10// ----------------
11// ENUM DEFINITIONS
12// ----------------
13enum UserType {
14  GOOGLE = 0;
15  EXTERNAL = 1;
16}
17