ticket.proto 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. }
  51. string message_id = 1 [json_name = "message_id"];
  52. string ticket_id = 2 [json_name = "ticket_id"];
  53. string role = 3 [json_name = "role"];
  54. Type type = 4 [json_name = "type"];
  55. string content = 5 [json_name = "content"];
  56. google.protobuf.Timestamp date = 6 [json_name = "date"];
  57. bytes raw = 7 [json_name = "raw"];
  58. bytes flags = 8 [json_name = "flags"];
  59. map<string, string> headers = 10 [json_name = "headers"];
  60. map<string, string> meta = 11 [json_name = "meta"];
  61. repeated Attachment attachments = 12 [json_name = "attachments"];
  62. }
  63. message Ticket {
  64. string ticket_id = 1 [json_name = "ticket_id"];
  65. string thread_id = 2 [json_name = "thread_id"];
  66. string to = 3 [json_name = "to"];
  67. EmailAddress from = 4 [json_name = "from"];
  68. bytes flags = 5 [json_name = "flags"];
  69. google.protobuf.Timestamp created_at = 6 [json_name = "created_at"];
  70. google.protobuf.Timestamp updated_at = 7 [json_name = "updated_at"];
  71. repeated Message messages = 10 [json_name = "messages"];
  72. map<string, string> meta = 11 [json_name = "meta"];
  73. repeated string tags = 12 [json_name = "tags"];
  74. repeated string message_ids = 100 [json_name = "message_ids"];
  75. repeated string subjects = 101 [json_name = "subjects"];
  76. }