ticket.proto 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. syntax = "proto3";
  2. package ticket;
  3. // golang
  4. option go_package = "./ticket";
  5. // java
  6. option java_package = "com.gshopper.crm.ticket.v2";
  7. option java_outer_classname = "proto";
  8. import "google/protobuf/timestamp.proto";
  9. message EmailAddress {
  10. string address = 1 [json_name = "address"];
  11. string name = 2 [json_name = "name"];
  12. }
  13. message Attachment {
  14. string id = 1 [json_name = "id"];
  15. string filename = 2 [json_name = "filename"];
  16. string content_type = 3 [json_name = "content_type"];
  17. string content_encoding = 4 [json_name = "content_encoding"];
  18. string bucket = 5 [json_name = "bucket"];
  19. string key = 6 [json_name = "key"];
  20. }
  21. message AssistantRequest {
  22. string to = 1 [json_name = "to"];
  23. EmailAddress from = 2 [json_name = "from"];
  24. string subject = 3 [json_name = "subject"];
  25. google.protobuf.Timestamp date = 4 [json_name = "date"];
  26. string body = 5 [json_name = "body"];
  27. repeated Attachment attachments = 10 [json_name = "attachments"];
  28. }
  29. message AssistantCallback {
  30. EmailAddress to = 1 [json_name = "to"];
  31. string subject = 2 [json_name = "subject"];
  32. string body = 3 [json_name = "body"];
  33. repeated Attachment attachments = 10 [json_name = "attachments"];
  34. }
  35. enum MessageFlag {
  36. unknown_message_flag = 0 [deprecated = true];
  37. SENT = 1;
  38. MODIFIED = 2;
  39. }
  40. enum TicketFlag {
  41. unknown_ticket_flag = 0 [deprecated = true];
  42. READ = 1;
  43. }
  44. message Message {
  45. enum Type {
  46. unknown = 0 [deprecated = true];
  47. TEXT = 1;
  48. EMAIL = 2;
  49. ASSISTANT_CALLBACK = 3;
  50. TICKET_WITH_REASON = 4;
  51. }
  52. string message_id = 1 [json_name = "message_id"];
  53. string ticket_id = 2 [json_name = "ticket_id"];
  54. string role = 3 [json_name = "role"];
  55. Type type = 4 [json_name = "type"];
  56. string content = 5 [json_name = "content"];
  57. google.protobuf.Timestamp date = 6 [json_name = "date"];
  58. bytes raw = 7 [json_name = "raw"];
  59. bytes flags = 8 [json_name = "flags"];
  60. map<string, string> headers = 10 [json_name = "headers"];
  61. map<string, string> meta = 11 [json_name = "meta"];
  62. repeated Attachment attachments = 12 [json_name = "attachments"];
  63. }
  64. message Ticket {
  65. string ticket_id = 1 [json_name = "ticket_id"];
  66. string thread_id = 2 [json_name = "thread_id"];
  67. string to = 3 [json_name = "to"];
  68. EmailAddress from = 4 [json_name = "from"];
  69. bytes flags = 5 [json_name = "flags"];
  70. google.protobuf.Timestamp created_at = 6 [json_name = "created_at"];
  71. google.protobuf.Timestamp updated_at = 7 [json_name = "updated_at"];
  72. repeated Message messages = 10 [json_name = "messages"];
  73. map<string, string> meta = 11 [json_name = "meta"];
  74. repeated string tags = 12 [json_name = "tags"];
  75. repeated string message_ids = 100 [json_name = "message_ids"];
  76. repeated string subjects = 101 [json_name = "subjects"];
  77. }