Guest User

Untitled

a guest
Oct 23rd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. syntax = "proto3";
  2. import "google/protobuf/timestamp.proto";
  3. message AttributeValueType {
  4. oneof itemValue {
  5. int32 Int32 = 1;
  6. string String = 2;
  7. Timestamp DateTime = 3;
  8. double Double = 4;
  9. }
  10. }
Add Comment
Please, Sign In to add comment