Sha256: b16bf73da4e5d26e34719d496ef0893dbbfb7c4e2800a86796dd43e78142436c

Contents?: true

Size: 664 Bytes

Versions: 5

Compression:

Stored size: 664 Bytes

Contents

package WearaboutsPb;

option java_package = "us.wearabouts.chatabout.proto";

message UserProto {
  message UserDetails {
    optional string email = 2;
    optional string phone = 3;
    optional string name = 4;
  }
  required string id = 1;
  optional UserDetails user_details = 2;
}

message ConversationProto {
  required string id = 1;
  repeated UserProto participants = 2;
}

message PostProto {
  enum Kind {
    TEXT = 1;
    AUDIO = 2;
  }
  required string id = 1;

  required Kind kind = 2;
  optional string text = 100;
  optional string audio_url = 200;
}

message DeviceLinkProto {
  required string device_id = 1;
  optional bool verified = 2;
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
protobuf_descriptor-1.1.2 spec/protos/service_rpc_test/wearabouts_pb.proto
protobuf_descriptor-1.1.1 spec/protos/service_rpc_test/wearabouts_pb.proto
protobuf_descriptor-1.1.0 spec/protos/service_rpc_test/wearabouts_pb.proto
protobuf_descriptor-1.0.0 spec/protos/service_rpc_test/wearabouts_pb.proto
protobuf_descriptor-0.1.0 spec/protos/service_rpc_test/wearabouts_pb.proto