Sha256: 549008e543265898cdb704c8466465305a1db491a95622314ce966677a5a421d

Contents?: true

Size: 930 Bytes

Versions: 1

Compression:

Stored size: 930 Bytes

Contents

syntax = "proto3";
package primary.connect;

import "google/protobuf/struct.proto";
import "google/protobuf/timestamp.proto";

message Meta {
  enum EventType {
    EVENT_TYPE_UNKNOWN = 0;
    EVENT_TYPE_NEW_UNSOLICITED = 1;
    EVENT_TYPE_UPDATE = 2;
    EVENT_TYPE_CANCEL = 3;
    EVENT_TYPE_QUERY = 4;
    EVENT_TYPE_NEW = 5;
  }

  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, google.protobuf.Value> 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;
  map<string, google.protobuf.Value> echo = 9;
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
primary_connect_proto-0.9.0 lib/connect_proto/src/meta.proto