webhook_service.pb.go 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.36.3
  4. // protoc (unknown)
  5. // source: api/v1/webhook_service.proto
  6. package apiv1
  7. import (
  8. _ "google.golang.org/genproto/googleapis/api/annotations"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. emptypb "google.golang.org/protobuf/types/known/emptypb"
  12. fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
  13. timestamppb "google.golang.org/protobuf/types/known/timestamppb"
  14. reflect "reflect"
  15. sync "sync"
  16. )
  17. const (
  18. // Verify that this generated code is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  20. // Verify that runtime/protoimpl is sufficiently up-to-date.
  21. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  22. )
  23. type Webhook struct {
  24. state protoimpl.MessageState `protogen:"open.v1"`
  25. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  26. // The name of the creator.
  27. // Format: users/{user}
  28. Creator string `protobuf:"bytes,2,opt,name=creator,proto3" json:"creator,omitempty"`
  29. CreateTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
  30. UpdateTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
  31. Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
  32. Url string `protobuf:"bytes,6,opt,name=url,proto3" json:"url,omitempty"`
  33. unknownFields protoimpl.UnknownFields
  34. sizeCache protoimpl.SizeCache
  35. }
  36. func (x *Webhook) Reset() {
  37. *x = Webhook{}
  38. mi := &file_api_v1_webhook_service_proto_msgTypes[0]
  39. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  40. ms.StoreMessageInfo(mi)
  41. }
  42. func (x *Webhook) String() string {
  43. return protoimpl.X.MessageStringOf(x)
  44. }
  45. func (*Webhook) ProtoMessage() {}
  46. func (x *Webhook) ProtoReflect() protoreflect.Message {
  47. mi := &file_api_v1_webhook_service_proto_msgTypes[0]
  48. if x != nil {
  49. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  50. if ms.LoadMessageInfo() == nil {
  51. ms.StoreMessageInfo(mi)
  52. }
  53. return ms
  54. }
  55. return mi.MessageOf(x)
  56. }
  57. // Deprecated: Use Webhook.ProtoReflect.Descriptor instead.
  58. func (*Webhook) Descriptor() ([]byte, []int) {
  59. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{0}
  60. }
  61. func (x *Webhook) GetId() int32 {
  62. if x != nil {
  63. return x.Id
  64. }
  65. return 0
  66. }
  67. func (x *Webhook) GetCreator() string {
  68. if x != nil {
  69. return x.Creator
  70. }
  71. return ""
  72. }
  73. func (x *Webhook) GetCreateTime() *timestamppb.Timestamp {
  74. if x != nil {
  75. return x.CreateTime
  76. }
  77. return nil
  78. }
  79. func (x *Webhook) GetUpdateTime() *timestamppb.Timestamp {
  80. if x != nil {
  81. return x.UpdateTime
  82. }
  83. return nil
  84. }
  85. func (x *Webhook) GetName() string {
  86. if x != nil {
  87. return x.Name
  88. }
  89. return ""
  90. }
  91. func (x *Webhook) GetUrl() string {
  92. if x != nil {
  93. return x.Url
  94. }
  95. return ""
  96. }
  97. type CreateWebhookRequest struct {
  98. state protoimpl.MessageState `protogen:"open.v1"`
  99. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  100. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  101. unknownFields protoimpl.UnknownFields
  102. sizeCache protoimpl.SizeCache
  103. }
  104. func (x *CreateWebhookRequest) Reset() {
  105. *x = CreateWebhookRequest{}
  106. mi := &file_api_v1_webhook_service_proto_msgTypes[1]
  107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  108. ms.StoreMessageInfo(mi)
  109. }
  110. func (x *CreateWebhookRequest) String() string {
  111. return protoimpl.X.MessageStringOf(x)
  112. }
  113. func (*CreateWebhookRequest) ProtoMessage() {}
  114. func (x *CreateWebhookRequest) ProtoReflect() protoreflect.Message {
  115. mi := &file_api_v1_webhook_service_proto_msgTypes[1]
  116. if x != nil {
  117. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  118. if ms.LoadMessageInfo() == nil {
  119. ms.StoreMessageInfo(mi)
  120. }
  121. return ms
  122. }
  123. return mi.MessageOf(x)
  124. }
  125. // Deprecated: Use CreateWebhookRequest.ProtoReflect.Descriptor instead.
  126. func (*CreateWebhookRequest) Descriptor() ([]byte, []int) {
  127. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{1}
  128. }
  129. func (x *CreateWebhookRequest) GetName() string {
  130. if x != nil {
  131. return x.Name
  132. }
  133. return ""
  134. }
  135. func (x *CreateWebhookRequest) GetUrl() string {
  136. if x != nil {
  137. return x.Url
  138. }
  139. return ""
  140. }
  141. type GetWebhookRequest struct {
  142. state protoimpl.MessageState `protogen:"open.v1"`
  143. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  144. unknownFields protoimpl.UnknownFields
  145. sizeCache protoimpl.SizeCache
  146. }
  147. func (x *GetWebhookRequest) Reset() {
  148. *x = GetWebhookRequest{}
  149. mi := &file_api_v1_webhook_service_proto_msgTypes[2]
  150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  151. ms.StoreMessageInfo(mi)
  152. }
  153. func (x *GetWebhookRequest) String() string {
  154. return protoimpl.X.MessageStringOf(x)
  155. }
  156. func (*GetWebhookRequest) ProtoMessage() {}
  157. func (x *GetWebhookRequest) ProtoReflect() protoreflect.Message {
  158. mi := &file_api_v1_webhook_service_proto_msgTypes[2]
  159. if x != nil {
  160. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  161. if ms.LoadMessageInfo() == nil {
  162. ms.StoreMessageInfo(mi)
  163. }
  164. return ms
  165. }
  166. return mi.MessageOf(x)
  167. }
  168. // Deprecated: Use GetWebhookRequest.ProtoReflect.Descriptor instead.
  169. func (*GetWebhookRequest) Descriptor() ([]byte, []int) {
  170. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{2}
  171. }
  172. func (x *GetWebhookRequest) GetId() int32 {
  173. if x != nil {
  174. return x.Id
  175. }
  176. return 0
  177. }
  178. type ListWebhooksRequest struct {
  179. state protoimpl.MessageState `protogen:"open.v1"`
  180. // The name of the creator.
  181. // Format: users/{user}
  182. Creator string `protobuf:"bytes,2,opt,name=creator,proto3" json:"creator,omitempty"`
  183. unknownFields protoimpl.UnknownFields
  184. sizeCache protoimpl.SizeCache
  185. }
  186. func (x *ListWebhooksRequest) Reset() {
  187. *x = ListWebhooksRequest{}
  188. mi := &file_api_v1_webhook_service_proto_msgTypes[3]
  189. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  190. ms.StoreMessageInfo(mi)
  191. }
  192. func (x *ListWebhooksRequest) String() string {
  193. return protoimpl.X.MessageStringOf(x)
  194. }
  195. func (*ListWebhooksRequest) ProtoMessage() {}
  196. func (x *ListWebhooksRequest) ProtoReflect() protoreflect.Message {
  197. mi := &file_api_v1_webhook_service_proto_msgTypes[3]
  198. if x != nil {
  199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  200. if ms.LoadMessageInfo() == nil {
  201. ms.StoreMessageInfo(mi)
  202. }
  203. return ms
  204. }
  205. return mi.MessageOf(x)
  206. }
  207. // Deprecated: Use ListWebhooksRequest.ProtoReflect.Descriptor instead.
  208. func (*ListWebhooksRequest) Descriptor() ([]byte, []int) {
  209. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{3}
  210. }
  211. func (x *ListWebhooksRequest) GetCreator() string {
  212. if x != nil {
  213. return x.Creator
  214. }
  215. return ""
  216. }
  217. type ListWebhooksResponse struct {
  218. state protoimpl.MessageState `protogen:"open.v1"`
  219. Webhooks []*Webhook `protobuf:"bytes,1,rep,name=webhooks,proto3" json:"webhooks,omitempty"`
  220. unknownFields protoimpl.UnknownFields
  221. sizeCache protoimpl.SizeCache
  222. }
  223. func (x *ListWebhooksResponse) Reset() {
  224. *x = ListWebhooksResponse{}
  225. mi := &file_api_v1_webhook_service_proto_msgTypes[4]
  226. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  227. ms.StoreMessageInfo(mi)
  228. }
  229. func (x *ListWebhooksResponse) String() string {
  230. return protoimpl.X.MessageStringOf(x)
  231. }
  232. func (*ListWebhooksResponse) ProtoMessage() {}
  233. func (x *ListWebhooksResponse) ProtoReflect() protoreflect.Message {
  234. mi := &file_api_v1_webhook_service_proto_msgTypes[4]
  235. if x != nil {
  236. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  237. if ms.LoadMessageInfo() == nil {
  238. ms.StoreMessageInfo(mi)
  239. }
  240. return ms
  241. }
  242. return mi.MessageOf(x)
  243. }
  244. // Deprecated: Use ListWebhooksResponse.ProtoReflect.Descriptor instead.
  245. func (*ListWebhooksResponse) Descriptor() ([]byte, []int) {
  246. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{4}
  247. }
  248. func (x *ListWebhooksResponse) GetWebhooks() []*Webhook {
  249. if x != nil {
  250. return x.Webhooks
  251. }
  252. return nil
  253. }
  254. type UpdateWebhookRequest struct {
  255. state protoimpl.MessageState `protogen:"open.v1"`
  256. Webhook *Webhook `protobuf:"bytes,1,opt,name=webhook,proto3" json:"webhook,omitempty"`
  257. UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"`
  258. unknownFields protoimpl.UnknownFields
  259. sizeCache protoimpl.SizeCache
  260. }
  261. func (x *UpdateWebhookRequest) Reset() {
  262. *x = UpdateWebhookRequest{}
  263. mi := &file_api_v1_webhook_service_proto_msgTypes[5]
  264. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  265. ms.StoreMessageInfo(mi)
  266. }
  267. func (x *UpdateWebhookRequest) String() string {
  268. return protoimpl.X.MessageStringOf(x)
  269. }
  270. func (*UpdateWebhookRequest) ProtoMessage() {}
  271. func (x *UpdateWebhookRequest) ProtoReflect() protoreflect.Message {
  272. mi := &file_api_v1_webhook_service_proto_msgTypes[5]
  273. if x != nil {
  274. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  275. if ms.LoadMessageInfo() == nil {
  276. ms.StoreMessageInfo(mi)
  277. }
  278. return ms
  279. }
  280. return mi.MessageOf(x)
  281. }
  282. // Deprecated: Use UpdateWebhookRequest.ProtoReflect.Descriptor instead.
  283. func (*UpdateWebhookRequest) Descriptor() ([]byte, []int) {
  284. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{5}
  285. }
  286. func (x *UpdateWebhookRequest) GetWebhook() *Webhook {
  287. if x != nil {
  288. return x.Webhook
  289. }
  290. return nil
  291. }
  292. func (x *UpdateWebhookRequest) GetUpdateMask() *fieldmaskpb.FieldMask {
  293. if x != nil {
  294. return x.UpdateMask
  295. }
  296. return nil
  297. }
  298. type DeleteWebhookRequest struct {
  299. state protoimpl.MessageState `protogen:"open.v1"`
  300. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  301. unknownFields protoimpl.UnknownFields
  302. sizeCache protoimpl.SizeCache
  303. }
  304. func (x *DeleteWebhookRequest) Reset() {
  305. *x = DeleteWebhookRequest{}
  306. mi := &file_api_v1_webhook_service_proto_msgTypes[6]
  307. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  308. ms.StoreMessageInfo(mi)
  309. }
  310. func (x *DeleteWebhookRequest) String() string {
  311. return protoimpl.X.MessageStringOf(x)
  312. }
  313. func (*DeleteWebhookRequest) ProtoMessage() {}
  314. func (x *DeleteWebhookRequest) ProtoReflect() protoreflect.Message {
  315. mi := &file_api_v1_webhook_service_proto_msgTypes[6]
  316. if x != nil {
  317. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  318. if ms.LoadMessageInfo() == nil {
  319. ms.StoreMessageInfo(mi)
  320. }
  321. return ms
  322. }
  323. return mi.MessageOf(x)
  324. }
  325. // Deprecated: Use DeleteWebhookRequest.ProtoReflect.Descriptor instead.
  326. func (*DeleteWebhookRequest) Descriptor() ([]byte, []int) {
  327. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{6}
  328. }
  329. func (x *DeleteWebhookRequest) GetId() int32 {
  330. if x != nil {
  331. return x.Id
  332. }
  333. return 0
  334. }
  335. type WebhookRequestPayload struct {
  336. state protoimpl.MessageState `protogen:"open.v1"`
  337. Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
  338. ActivityType string `protobuf:"bytes,2,opt,name=activity_type,json=activityType,proto3" json:"activity_type,omitempty"`
  339. // The name of the creator.
  340. // Format: users/{user}
  341. Creator string `protobuf:"bytes,3,opt,name=creator,proto3" json:"creator,omitempty"`
  342. CreateTime *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
  343. Memo *Memo `protobuf:"bytes,5,opt,name=memo,proto3" json:"memo,omitempty"`
  344. unknownFields protoimpl.UnknownFields
  345. sizeCache protoimpl.SizeCache
  346. }
  347. func (x *WebhookRequestPayload) Reset() {
  348. *x = WebhookRequestPayload{}
  349. mi := &file_api_v1_webhook_service_proto_msgTypes[7]
  350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  351. ms.StoreMessageInfo(mi)
  352. }
  353. func (x *WebhookRequestPayload) String() string {
  354. return protoimpl.X.MessageStringOf(x)
  355. }
  356. func (*WebhookRequestPayload) ProtoMessage() {}
  357. func (x *WebhookRequestPayload) ProtoReflect() protoreflect.Message {
  358. mi := &file_api_v1_webhook_service_proto_msgTypes[7]
  359. if x != nil {
  360. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  361. if ms.LoadMessageInfo() == nil {
  362. ms.StoreMessageInfo(mi)
  363. }
  364. return ms
  365. }
  366. return mi.MessageOf(x)
  367. }
  368. // Deprecated: Use WebhookRequestPayload.ProtoReflect.Descriptor instead.
  369. func (*WebhookRequestPayload) Descriptor() ([]byte, []int) {
  370. return file_api_v1_webhook_service_proto_rawDescGZIP(), []int{7}
  371. }
  372. func (x *WebhookRequestPayload) GetUrl() string {
  373. if x != nil {
  374. return x.Url
  375. }
  376. return ""
  377. }
  378. func (x *WebhookRequestPayload) GetActivityType() string {
  379. if x != nil {
  380. return x.ActivityType
  381. }
  382. return ""
  383. }
  384. func (x *WebhookRequestPayload) GetCreator() string {
  385. if x != nil {
  386. return x.Creator
  387. }
  388. return ""
  389. }
  390. func (x *WebhookRequestPayload) GetCreateTime() *timestamppb.Timestamp {
  391. if x != nil {
  392. return x.CreateTime
  393. }
  394. return nil
  395. }
  396. func (x *WebhookRequestPayload) GetMemo() *Memo {
  397. if x != nil {
  398. return x.Memo
  399. }
  400. return nil
  401. }
  402. var File_api_v1_webhook_service_proto protoreflect.FileDescriptor
  403. var file_api_v1_webhook_service_proto_rawDesc = []byte{
  404. 0x0a, 0x1c, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b,
  405. 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0c,
  406. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x1a, 0x19, 0x61, 0x70,
  407. 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x65, 0x6d, 0x6f, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
  408. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
  409. 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e,
  410. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70,
  411. 0x69, 0x2f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b,
  412. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,
  413. 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f, 0x6f,
  414. 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69, 0x65,
  415. 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67,
  416. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74,
  417. 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xd3,
  418. 0x01, 0x0a, 0x07, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  419. 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x72,
  420. 0x65, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x72, 0x65,
  421. 0x61, 0x74, 0x6f, 0x72, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74,
  422. 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  423. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65,
  424. 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d,
  425. 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65,
  426. 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  427. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
  428. 0x6d, 0x70, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x12,
  429. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
  430. 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  431. 0x03, 0x75, 0x72, 0x6c, 0x22, 0x3c, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x57, 0x65,
  432. 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
  433. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  434. 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75,
  435. 0x72, 0x6c, 0x22, 0x23, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b,
  436. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  437. 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x22, 0x2f, 0x0a, 0x13, 0x4c, 0x69, 0x73, 0x74, 0x57,
  438. 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18,
  439. 0x0a, 0x07, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  440. 0x07, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x22, 0x49, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74,
  441. 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  442. 0x12, 0x31, 0x0a, 0x08, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x18, 0x01, 0x20, 0x03,
  443. 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
  444. 0x31, 0x2e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x08, 0x77, 0x65, 0x62, 0x68, 0x6f,
  445. 0x6f, 0x6b, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x65,
  446. 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2f, 0x0a, 0x07,
  447. 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e,
  448. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x65, 0x62,
  449. 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x3b, 0x0a,
  450. 0x0b, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x02, 0x20, 0x01,
  451. 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  452. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x52, 0x0a,
  453. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x73, 0x6b, 0x22, 0x26, 0x0a, 0x14, 0x44, 0x65,
  454. 0x6c, 0x65, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65,
  455. 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02,
  456. 0x69, 0x64, 0x22, 0xcd, 0x01, 0x0a, 0x15, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65,
  457. 0x71, 0x75, 0x65, 0x73, 0x74, 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x10, 0x0a, 0x03,
  458. 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x23,
  459. 0x0a, 0x0d, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
  460. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x54,
  461. 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x03,
  462. 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x3b, 0x0a,
  463. 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
  464. 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  465. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a,
  466. 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x04, 0x6d, 0x65,
  467. 0x6d, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73,
  468. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x65, 0x6d, 0x6f, 0x52, 0x04, 0x6d, 0x65,
  469. 0x6d, 0x6f, 0x32, 0xd8, 0x04, 0x0a, 0x0e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x53, 0x65,
  470. 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x67, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x57,
  471. 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x22, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61,
  472. 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68,
  473. 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x6d, 0x65, 0x6d,
  474. 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f,
  475. 0x6b, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x3a, 0x01, 0x2a, 0x22, 0x10, 0x2f, 0x61,
  476. 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x12, 0x68,
  477. 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x1f, 0x2e, 0x6d,
  478. 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x57,
  479. 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e,
  480. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x57, 0x65, 0x62,
  481. 0x68, 0x6f, 0x6f, 0x6b, 0x22, 0x22, 0xda, 0x41, 0x02, 0x69, 0x64, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  482. 0x17, 0x12, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x77, 0x65, 0x62, 0x68, 0x6f,
  483. 0x6f, 0x6b, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x12, 0x6f, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74,
  484. 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x12, 0x21, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73,
  485. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x57, 0x65, 0x62, 0x68,
  486. 0x6f, 0x6f, 0x6b, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x6d, 0x65,
  487. 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x57,
  488. 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
  489. 0x18, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x12, 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31,
  490. 0x2f, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x12, 0x90, 0x01, 0x0a, 0x0d, 0x55, 0x70,
  491. 0x64, 0x61, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x22, 0x2e, 0x6d, 0x65,
  492. 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74,
  493. 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  494. 0x15, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x57,
  495. 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x22, 0x44, 0xda, 0x41, 0x13, 0x77, 0x65, 0x62, 0x68, 0x6f,
  496. 0x6f, 0x6b, 0x2c, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x82, 0xd3,
  497. 0xe4, 0x93, 0x02, 0x28, 0x3a, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x32, 0x1d, 0x2f,
  498. 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x2f,
  499. 0x7b, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x2e, 0x69, 0x64, 0x7d, 0x12, 0x6f, 0x0a, 0x0d,
  500. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x12, 0x22, 0x2e,
  501. 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x65, 0x6c,
  502. 0x65, 0x74, 0x65, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  503. 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  504. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x22, 0xda, 0x41, 0x02, 0x69, 0x64,
  505. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x2a, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x76, 0x31, 0x2f,
  506. 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x42, 0xab, 0x01,
  507. 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x2e, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  508. 0x76, 0x31, 0x42, 0x13, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x53, 0x65, 0x72, 0x76, 0x69,
  509. 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x30, 0x67, 0x69, 0x74, 0x68, 0x75,
  510. 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x75, 0x73, 0x65, 0x6d, 0x65, 0x6d, 0x6f, 0x73, 0x2f, 0x6d,
  511. 0x65, 0x6d, 0x6f, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x65, 0x6e, 0x2f, 0x61,
  512. 0x70, 0x69, 0x2f, 0x76, 0x31, 0x3b, 0x61, 0x70, 0x69, 0x76, 0x31, 0xa2, 0x02, 0x03, 0x4d, 0x41,
  513. 0x58, 0xaa, 0x02, 0x0c, 0x4d, 0x65, 0x6d, 0x6f, 0x73, 0x2e, 0x41, 0x70, 0x69, 0x2e, 0x56, 0x31,
  514. 0xca, 0x02, 0x0c, 0x4d, 0x65, 0x6d, 0x6f, 0x73, 0x5c, 0x41, 0x70, 0x69, 0x5c, 0x56, 0x31, 0xe2,
  515. 0x02, 0x18, 0x4d, 0x65, 0x6d, 0x6f, 0x73, 0x5c, 0x41, 0x70, 0x69, 0x5c, 0x56, 0x31, 0x5c, 0x47,
  516. 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x0e, 0x4d, 0x65, 0x6d,
  517. 0x6f, 0x73, 0x3a, 0x3a, 0x41, 0x70, 0x69, 0x3a, 0x3a, 0x56, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f,
  518. 0x74, 0x6f, 0x33,
  519. }
  520. var (
  521. file_api_v1_webhook_service_proto_rawDescOnce sync.Once
  522. file_api_v1_webhook_service_proto_rawDescData = file_api_v1_webhook_service_proto_rawDesc
  523. )
  524. func file_api_v1_webhook_service_proto_rawDescGZIP() []byte {
  525. file_api_v1_webhook_service_proto_rawDescOnce.Do(func() {
  526. file_api_v1_webhook_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_api_v1_webhook_service_proto_rawDescData)
  527. })
  528. return file_api_v1_webhook_service_proto_rawDescData
  529. }
  530. var file_api_v1_webhook_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
  531. var file_api_v1_webhook_service_proto_goTypes = []any{
  532. (*Webhook)(nil), // 0: memos.api.v1.Webhook
  533. (*CreateWebhookRequest)(nil), // 1: memos.api.v1.CreateWebhookRequest
  534. (*GetWebhookRequest)(nil), // 2: memos.api.v1.GetWebhookRequest
  535. (*ListWebhooksRequest)(nil), // 3: memos.api.v1.ListWebhooksRequest
  536. (*ListWebhooksResponse)(nil), // 4: memos.api.v1.ListWebhooksResponse
  537. (*UpdateWebhookRequest)(nil), // 5: memos.api.v1.UpdateWebhookRequest
  538. (*DeleteWebhookRequest)(nil), // 6: memos.api.v1.DeleteWebhookRequest
  539. (*WebhookRequestPayload)(nil), // 7: memos.api.v1.WebhookRequestPayload
  540. (*timestamppb.Timestamp)(nil), // 8: google.protobuf.Timestamp
  541. (*fieldmaskpb.FieldMask)(nil), // 9: google.protobuf.FieldMask
  542. (*Memo)(nil), // 10: memos.api.v1.Memo
  543. (*emptypb.Empty)(nil), // 11: google.protobuf.Empty
  544. }
  545. var file_api_v1_webhook_service_proto_depIdxs = []int32{
  546. 8, // 0: memos.api.v1.Webhook.create_time:type_name -> google.protobuf.Timestamp
  547. 8, // 1: memos.api.v1.Webhook.update_time:type_name -> google.protobuf.Timestamp
  548. 0, // 2: memos.api.v1.ListWebhooksResponse.webhooks:type_name -> memos.api.v1.Webhook
  549. 0, // 3: memos.api.v1.UpdateWebhookRequest.webhook:type_name -> memos.api.v1.Webhook
  550. 9, // 4: memos.api.v1.UpdateWebhookRequest.update_mask:type_name -> google.protobuf.FieldMask
  551. 8, // 5: memos.api.v1.WebhookRequestPayload.create_time:type_name -> google.protobuf.Timestamp
  552. 10, // 6: memos.api.v1.WebhookRequestPayload.memo:type_name -> memos.api.v1.Memo
  553. 1, // 7: memos.api.v1.WebhookService.CreateWebhook:input_type -> memos.api.v1.CreateWebhookRequest
  554. 2, // 8: memos.api.v1.WebhookService.GetWebhook:input_type -> memos.api.v1.GetWebhookRequest
  555. 3, // 9: memos.api.v1.WebhookService.ListWebhooks:input_type -> memos.api.v1.ListWebhooksRequest
  556. 5, // 10: memos.api.v1.WebhookService.UpdateWebhook:input_type -> memos.api.v1.UpdateWebhookRequest
  557. 6, // 11: memos.api.v1.WebhookService.DeleteWebhook:input_type -> memos.api.v1.DeleteWebhookRequest
  558. 0, // 12: memos.api.v1.WebhookService.CreateWebhook:output_type -> memos.api.v1.Webhook
  559. 0, // 13: memos.api.v1.WebhookService.GetWebhook:output_type -> memos.api.v1.Webhook
  560. 4, // 14: memos.api.v1.WebhookService.ListWebhooks:output_type -> memos.api.v1.ListWebhooksResponse
  561. 0, // 15: memos.api.v1.WebhookService.UpdateWebhook:output_type -> memos.api.v1.Webhook
  562. 11, // 16: memos.api.v1.WebhookService.DeleteWebhook:output_type -> google.protobuf.Empty
  563. 12, // [12:17] is the sub-list for method output_type
  564. 7, // [7:12] is the sub-list for method input_type
  565. 7, // [7:7] is the sub-list for extension type_name
  566. 7, // [7:7] is the sub-list for extension extendee
  567. 0, // [0:7] is the sub-list for field type_name
  568. }
  569. func init() { file_api_v1_webhook_service_proto_init() }
  570. func file_api_v1_webhook_service_proto_init() {
  571. if File_api_v1_webhook_service_proto != nil {
  572. return
  573. }
  574. file_api_v1_memo_service_proto_init()
  575. type x struct{}
  576. out := protoimpl.TypeBuilder{
  577. File: protoimpl.DescBuilder{
  578. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  579. RawDescriptor: file_api_v1_webhook_service_proto_rawDesc,
  580. NumEnums: 0,
  581. NumMessages: 8,
  582. NumExtensions: 0,
  583. NumServices: 1,
  584. },
  585. GoTypes: file_api_v1_webhook_service_proto_goTypes,
  586. DependencyIndexes: file_api_v1_webhook_service_proto_depIdxs,
  587. MessageInfos: file_api_v1_webhook_service_proto_msgTypes,
  588. }.Build()
  589. File_api_v1_webhook_service_proto = out.File
  590. file_api_v1_webhook_service_proto_rawDesc = nil
  591. file_api_v1_webhook_service_proto_goTypes = nil
  592. file_api_v1_webhook_service_proto_depIdxs = nil
  593. }