github.com/blend/go-sdk@v1.20220411.3/protoutil/testdata/Message.proto (about)

     1  syntax = "proto3";
     2  
     3  package testdata;
     4  
     5  import "google/protobuf/timestamp.proto";
     6  import "google/protobuf/duration.proto";
     7  
     8  option go_package = ".;testdata";
     9  
    10  message Message {
    11      string uid = 10;
    12      google.protobuf.Timestamp timestamp_utc = 11;
    13      google.protobuf.Duration elapsed = 12;
    14      int32 status_code = 13;
    15      int64 content_length = 14;
    16      double value = 15;
    17      string error = 16;
    18  }