Sha256: c7f13db718bdb4da06ae4b482072b09c70f72022fe2cf93000c51a79334e721c
Contents?: true
Size: 801 Bytes
Versions: 8
Compression:
Stored size: 801 Bytes
Contents
syntax = "proto3"; package primary.connect; import "google/protobuf/timestamp.proto"; message Meta { enum EventType { EVENT_TYPE_NEW = 0; EVENT_TYPE_NEW_UNSOLICITED = 1; EVENT_TYPE_UPDATE = 2; EVENT_TYPE_CANCEL = 3; EVENT_TYPE_QUERY = 4; } message Source { string id = 1; string name = 2; } message Message { string id = 1; string order_id = 2; } message Transmission { string id = 1; } message Destination { string id = 1; string name = 2; map<string, string> config = 3; } EventType event_type = 1; google.protobuf.Timestamp event_date_and_time = 2; bool test = 3; Source source = 4; repeated Destination destinations = 5; Message message = 6; Transmission transmission = 7; string facility_code = 8; }
Version data entries
8 entries across 8 versions & 1 rubygems