File: test_data.proto

package info (click to toggle)
golang-github-google-cel-spec 0.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 876 kB
  • sloc: sh: 11; makefile: 8
file content (19 lines) | stat: -rw-r--r-- 415 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
syntax = "proto3";

package google.api.expr.testdata;

import "testdata/test_value.proto";

option java_multiple_files = true;
option java_outer_classname = "TestDataProto";
option java_package = "com.google.api.expr.testdata";

// The contents of a test data file.
message TestData {
  // A description of the test data include.
  string description = 1;

  oneof data_type {
    TestValues test_values = 2;
  }
}