@chotot/ct-logic-uni-rev-order-v1 1.197.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/cart_service-LogicUniRevOrderCartService_connectquery.d.ts +88 -0
  2. package/cart_service-LogicUniRevOrderCartService_connectquery.js +131 -0
  3. package/cart_service.proto +108 -0
  4. package/cart_service_connect.d.ts +80 -0
  5. package/cart_service_connect.js +80 -0
  6. package/cart_service_pb.d.ts +525 -0
  7. package/cart_service_pb.js +194 -0
  8. package/change_order_status.proto +110 -0
  9. package/change_order_status_pb.d.ts +494 -0
  10. package/change_order_status_pb.js +163 -0
  11. package/invoice.proto +565 -0
  12. package/invoice_entities.proto +205 -0
  13. package/invoice_entities_pb.d.ts +414 -0
  14. package/invoice_entities_pb.js +113 -0
  15. package/invoice_pb.d.ts +2875 -0
  16. package/invoice_pb.js +917 -0
  17. package/invoice_service-LogicUniRevOrderInvoiceService_connectquery.d.ts +238 -0
  18. package/invoice_service-LogicUniRevOrderInvoiceService_connectquery.js +371 -0
  19. package/invoice_service.proto +240 -0
  20. package/invoice_service_connect.d.ts +215 -0
  21. package/invoice_service_connect.js +215 -0
  22. package/onbehalf_service-LogicUniRevOrderOnBehalfService_connectquery.d.ts +108 -0
  23. package/onbehalf_service-LogicUniRevOrderOnBehalfService_connectquery.js +163 -0
  24. package/onbehalf_service.proto +355 -0
  25. package/onbehalf_service_connect.d.ts +98 -0
  26. package/onbehalf_service_connect.js +98 -0
  27. package/onbehalf_service_pb.d.ts +1789 -0
  28. package/onbehalf_service_pb.js +568 -0
  29. package/order_entities.proto +75 -0
  30. package/order_entities_pb.d.ts +366 -0
  31. package/order_entities_pb.js +111 -0
  32. package/order_history_order_service_detail.proto +485 -0
  33. package/order_history_order_service_detail_pb.d.ts +2599 -0
  34. package/order_history_order_service_detail_pb.js +768 -0
  35. package/order_history_paid_order.proto +224 -0
  36. package/order_history_paid_order_pb.d.ts +1139 -0
  37. package/order_history_paid_order_pb.js +343 -0
  38. package/order_history_revamp.proto +107 -0
  39. package/order_history_revamp_pb.d.ts +577 -0
  40. package/order_history_revamp_pb.js +164 -0
  41. package/order_info.proto +74 -0
  42. package/order_info_pb.d.ts +381 -0
  43. package/order_info_pb.js +138 -0
  44. package/package.json +10 -0
  45. package/paid_product.proto +94 -0
  46. package/paid_product_order.proto +430 -0
  47. package/paid_product_order_pb.d.ts +2120 -0
  48. package/paid_product_order_pb.js +698 -0
  49. package/paid_product_pb.d.ts +287 -0
  50. package/paid_product_pb.js +105 -0
  51. package/rabbit_mq.proto +69 -0
  52. package/rabbit_mq_pb.d.ts +251 -0
  53. package/rabbit_mq_pb.js +94 -0
  54. package/refund_order.proto +195 -0
  55. package/refund_order_pb.d.ts +1030 -0
  56. package/refund_order_pb.js +359 -0
  57. package/scripts/modify_package_json.js +50 -0
  58. package/service-LogicUniRevOrderService_connectquery.d.ts +638 -0
  59. package/service-LogicUniRevOrderService_connectquery.js +1014 -0
  60. package/service.proto +179 -0
  61. package/service_connect.d.ts +578 -0
  62. package/service_connect.js +578 -0
@@ -0,0 +1,1789 @@
1
+ // @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
2
+ // @generated from file ct-logic-uni-rev-order/v1/onbehalf_service.proto (package ct_logic_uni_rev_order.v1, syntax proto3)
3
+ /* eslint-disable */
4
+ // @ts-nocheck
5
+
6
+ import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage, Timestamp } from "@bufbuild/protobuf";
7
+ import { Message, proto3 } from "@bufbuild/protobuf";
8
+
9
+ /**
10
+ * @generated from enum ct_logic_uni_rev_order.v1.OnBehalfOrderRequestType
11
+ */
12
+ export declare enum OnBehalfOrderRequestType {
13
+ /**
14
+ * @generated from enum value: ON_BEHALF_ORDER_REQUEST_TYPE_UNSPECIFIED = 0;
15
+ */
16
+ UNSPECIFIED = 0,
17
+
18
+ /**
19
+ * @generated from enum value: ON_BEHALF_ORDER_REQUEST_TYPE_ADD_TO_CART = 1;
20
+ */
21
+ ADD_TO_CART = 1,
22
+
23
+ /**
24
+ * @generated from enum value: ON_BEHALF_ORDER_REQUEST_TYPE_CREATE_ONLY = 2;
25
+ */
26
+ CREATE_ONLY = 2,
27
+
28
+ /**
29
+ * @generated from enum value: ON_BEHALF_ORDER_REQUEST_TYPE_CREATE_AND_PAY = 3;
30
+ */
31
+ CREATE_AND_PAY = 3,
32
+ }
33
+
34
+ /**
35
+ * @generated from message ct_logic_uni_rev_order.v1.CreateOnbehalfOrderRequest
36
+ */
37
+ export declare class CreateOnbehalfOrderRequest extends Message<CreateOnbehalfOrderRequest> {
38
+ /**
39
+ * @generated from field: ct_logic_uni_rev_order.v1.OnBehalfOrderRequestType request_type = 1;
40
+ */
41
+ requestType: OnBehalfOrderRequestType;
42
+
43
+ /**
44
+ * @generated from field: int64 account_id = 2;
45
+ */
46
+ accountId: bigint;
47
+
48
+ /**
49
+ * @generated from field: string phone = 3;
50
+ */
51
+ phone: string;
52
+
53
+ /**
54
+ * @generated from field: google.protobuf.Timestamp payment_expired_at = 4;
55
+ */
56
+ paymentExpiredAt?: Timestamp;
57
+
58
+ /**
59
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.CreateOnbehalfOrderServiceRequest services = 5;
60
+ */
61
+ services: CreateOnbehalfOrderServiceRequest[];
62
+
63
+ /**
64
+ * @generated from field: bool is_active = 6;
65
+ */
66
+ isActive: boolean;
67
+
68
+ /**
69
+ * @generated from field: string full_name = 7;
70
+ */
71
+ fullName: string;
72
+
73
+ constructor(data?: PartialMessage<CreateOnbehalfOrderRequest>);
74
+
75
+ static readonly runtime: typeof proto3;
76
+ static readonly typeName = "ct_logic_uni_rev_order.v1.CreateOnbehalfOrderRequest";
77
+ static readonly fields: FieldList;
78
+
79
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateOnbehalfOrderRequest;
80
+
81
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateOnbehalfOrderRequest;
82
+
83
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateOnbehalfOrderRequest;
84
+
85
+ static equals(a: CreateOnbehalfOrderRequest | PlainMessage<CreateOnbehalfOrderRequest> | undefined, b: CreateOnbehalfOrderRequest | PlainMessage<CreateOnbehalfOrderRequest> | undefined): boolean;
86
+ }
87
+
88
+ /**
89
+ * @generated from message ct_logic_uni_rev_order.v1.CreateOnbehalfOrderServiceRequest
90
+ */
91
+ export declare class CreateOnbehalfOrderServiceRequest extends Message<CreateOnbehalfOrderServiceRequest> {
92
+ /**
93
+ * @generated from field: string type = 1;
94
+ */
95
+ type: string;
96
+
97
+ /**
98
+ * @generated from field: int64 ad_id = 2;
99
+ */
100
+ adId: bigint;
101
+
102
+ /**
103
+ * @generated from field: ct_logic_uni_rev_order.v1.ServiceParam params = 3;
104
+ */
105
+ params?: ServiceParam;
106
+
107
+ /**
108
+ * @generated from field: optional string shop_alias = 4;
109
+ */
110
+ shopAlias?: string;
111
+
112
+ constructor(data?: PartialMessage<CreateOnbehalfOrderServiceRequest>);
113
+
114
+ static readonly runtime: typeof proto3;
115
+ static readonly typeName = "ct_logic_uni_rev_order.v1.CreateOnbehalfOrderServiceRequest";
116
+ static readonly fields: FieldList;
117
+
118
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateOnbehalfOrderServiceRequest;
119
+
120
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateOnbehalfOrderServiceRequest;
121
+
122
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateOnbehalfOrderServiceRequest;
123
+
124
+ static equals(a: CreateOnbehalfOrderServiceRequest | PlainMessage<CreateOnbehalfOrderServiceRequest> | undefined, b: CreateOnbehalfOrderServiceRequest | PlainMessage<CreateOnbehalfOrderServiceRequest> | undefined): boolean;
125
+ }
126
+
127
+ /**
128
+ * @generated from message ct_logic_uni_rev_order.v1.ServiceParam
129
+ */
130
+ export declare class ServiceParam extends Message<ServiceParam> {
131
+ /**
132
+ * @generated from field: optional ct_logic_uni_rev_order.v1.StickyAdParam sticky_ad_param = 1;
133
+ */
134
+ stickyAdParam?: StickyAdParam;
135
+
136
+ /**
137
+ * @generated from field: optional ct_logic_uni_rev_order.v1.SpecialDisplayParam special_display_param = 2;
138
+ */
139
+ specialDisplayParam?: SpecialDisplayParam;
140
+
141
+ /**
142
+ * @generated from field: optional ct_logic_uni_rev_order.v1.TimerBumpParam timer_bump_param = 3;
143
+ */
144
+ timerBumpParam?: TimerBumpParam;
145
+
146
+ /**
147
+ * @generated from field: optional ct_logic_uni_rev_order.v1.BundleParam bundle_param = 4;
148
+ */
149
+ bundleParam?: BundleParam;
150
+
151
+ /**
152
+ * @generated from field: optional ct_logic_uni_rev_order.v1.IntensiveBumpParam intensive_bump_param = 5;
153
+ */
154
+ intensiveBumpParam?: IntensiveBumpParam;
155
+
156
+ /**
157
+ * @generated from field: optional ct_logic_uni_rev_order.v1.SubscriptionParam subscription_param = 6;
158
+ */
159
+ subscriptionParam?: SubscriptionParam;
160
+
161
+ /**
162
+ * @generated from field: optional ct_logic_uni_rev_order.v1.ExtendShopParam extend_shop_param = 7;
163
+ */
164
+ extendShopParam?: ExtendShopParam;
165
+
166
+ /**
167
+ * @generated from field: optional ct_logic_uni_rev_order.v1.CreateShopParam create_shop_param = 8;
168
+ */
169
+ createShopParam?: CreateShopParam;
170
+
171
+ constructor(data?: PartialMessage<ServiceParam>);
172
+
173
+ static readonly runtime: typeof proto3;
174
+ static readonly typeName = "ct_logic_uni_rev_order.v1.ServiceParam";
175
+ static readonly fields: FieldList;
176
+
177
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ServiceParam;
178
+
179
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ServiceParam;
180
+
181
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ServiceParam;
182
+
183
+ static equals(a: ServiceParam | PlainMessage<ServiceParam> | undefined, b: ServiceParam | PlainMessage<ServiceParam> | undefined): boolean;
184
+ }
185
+
186
+ /**
187
+ * @generated from message ct_logic_uni_rev_order.v1.StickyAdParam
188
+ */
189
+ export declare class StickyAdParam extends Message<StickyAdParam> {
190
+ /**
191
+ * @generated from field: int64 duration = 1;
192
+ */
193
+ duration: bigint;
194
+
195
+ constructor(data?: PartialMessage<StickyAdParam>);
196
+
197
+ static readonly runtime: typeof proto3;
198
+ static readonly typeName = "ct_logic_uni_rev_order.v1.StickyAdParam";
199
+ static readonly fields: FieldList;
200
+
201
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): StickyAdParam;
202
+
203
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): StickyAdParam;
204
+
205
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): StickyAdParam;
206
+
207
+ static equals(a: StickyAdParam | PlainMessage<StickyAdParam> | undefined, b: StickyAdParam | PlainMessage<StickyAdParam> | undefined): boolean;
208
+ }
209
+
210
+ /**
211
+ * @generated from message ct_logic_uni_rev_order.v1.SpecialDisplayParam
212
+ */
213
+ export declare class SpecialDisplayParam extends Message<SpecialDisplayParam> {
214
+ /**
215
+ * @generated from field: int64 duration = 1;
216
+ */
217
+ duration: bigint;
218
+
219
+ /**
220
+ * @generated from field: string user_type = 2;
221
+ */
222
+ userType: string;
223
+
224
+ constructor(data?: PartialMessage<SpecialDisplayParam>);
225
+
226
+ static readonly runtime: typeof proto3;
227
+ static readonly typeName = "ct_logic_uni_rev_order.v1.SpecialDisplayParam";
228
+ static readonly fields: FieldList;
229
+
230
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SpecialDisplayParam;
231
+
232
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SpecialDisplayParam;
233
+
234
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SpecialDisplayParam;
235
+
236
+ static equals(a: SpecialDisplayParam | PlainMessage<SpecialDisplayParam> | undefined, b: SpecialDisplayParam | PlainMessage<SpecialDisplayParam> | undefined): boolean;
237
+ }
238
+
239
+ /**
240
+ * @generated from message ct_logic_uni_rev_order.v1.TimerBumpParam
241
+ */
242
+ export declare class TimerBumpParam extends Message<TimerBumpParam> {
243
+ /**
244
+ * @generated from field: int64 duration = 1;
245
+ */
246
+ duration: bigint;
247
+
248
+ /**
249
+ * @generated from field: repeated int64 days_of_week = 2;
250
+ */
251
+ daysOfWeek: bigint[];
252
+
253
+ /**
254
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.TimerBumpBlockTime block_times = 3;
255
+ */
256
+ blockTimes: TimerBumpBlockTime[];
257
+
258
+ constructor(data?: PartialMessage<TimerBumpParam>);
259
+
260
+ static readonly runtime: typeof proto3;
261
+ static readonly typeName = "ct_logic_uni_rev_order.v1.TimerBumpParam";
262
+ static readonly fields: FieldList;
263
+
264
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TimerBumpParam;
265
+
266
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TimerBumpParam;
267
+
268
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TimerBumpParam;
269
+
270
+ static equals(a: TimerBumpParam | PlainMessage<TimerBumpParam> | undefined, b: TimerBumpParam | PlainMessage<TimerBumpParam> | undefined): boolean;
271
+ }
272
+
273
+ /**
274
+ * @generated from message ct_logic_uni_rev_order.v1.TimerBumpBlockTime
275
+ */
276
+ export declare class TimerBumpBlockTime extends Message<TimerBumpBlockTime> {
277
+ /**
278
+ * @generated from field: int64 start = 1;
279
+ */
280
+ start: bigint;
281
+
282
+ /**
283
+ * @generated from field: int64 end = 2;
284
+ */
285
+ end: bigint;
286
+
287
+ constructor(data?: PartialMessage<TimerBumpBlockTime>);
288
+
289
+ static readonly runtime: typeof proto3;
290
+ static readonly typeName = "ct_logic_uni_rev_order.v1.TimerBumpBlockTime";
291
+ static readonly fields: FieldList;
292
+
293
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TimerBumpBlockTime;
294
+
295
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TimerBumpBlockTime;
296
+
297
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TimerBumpBlockTime;
298
+
299
+ static equals(a: TimerBumpBlockTime | PlainMessage<TimerBumpBlockTime> | undefined, b: TimerBumpBlockTime | PlainMessage<TimerBumpBlockTime> | undefined): boolean;
300
+ }
301
+
302
+ /**
303
+ * @generated from message ct_logic_uni_rev_order.v1.BundleParam
304
+ */
305
+ export declare class BundleParam extends Message<BundleParam> {
306
+ /**
307
+ * @generated from field: int64 bundle_id = 1;
308
+ */
309
+ bundleId: bigint;
310
+
311
+ /**
312
+ * @generated from field: int64 category_id = 6;
313
+ */
314
+ categoryId: bigint;
315
+
316
+ /**
317
+ * @generated from field: int64 region_id = 7;
318
+ */
319
+ regionId: bigint;
320
+
321
+ /**
322
+ * @generated from field: int64 area = 8;
323
+ */
324
+ area: bigint;
325
+
326
+ /**
327
+ * @generated from field: int64 ad_id = 9;
328
+ */
329
+ adId: bigint;
330
+
331
+ constructor(data?: PartialMessage<BundleParam>);
332
+
333
+ static readonly runtime: typeof proto3;
334
+ static readonly typeName = "ct_logic_uni_rev_order.v1.BundleParam";
335
+ static readonly fields: FieldList;
336
+
337
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BundleParam;
338
+
339
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BundleParam;
340
+
341
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BundleParam;
342
+
343
+ static equals(a: BundleParam | PlainMessage<BundleParam> | undefined, b: BundleParam | PlainMessage<BundleParam> | undefined): boolean;
344
+ }
345
+
346
+ /**
347
+ * @generated from message ct_logic_uni_rev_order.v1.IntensiveBumpParam
348
+ */
349
+ export declare class IntensiveBumpParam extends Message<IntensiveBumpParam> {
350
+ /**
351
+ * @generated from field: int64 duration = 1;
352
+ */
353
+ duration: bigint;
354
+
355
+ constructor(data?: PartialMessage<IntensiveBumpParam>);
356
+
357
+ static readonly runtime: typeof proto3;
358
+ static readonly typeName = "ct_logic_uni_rev_order.v1.IntensiveBumpParam";
359
+ static readonly fields: FieldList;
360
+
361
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): IntensiveBumpParam;
362
+
363
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): IntensiveBumpParam;
364
+
365
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): IntensiveBumpParam;
366
+
367
+ static equals(a: IntensiveBumpParam | PlainMessage<IntensiveBumpParam> | undefined, b: IntensiveBumpParam | PlainMessage<IntensiveBumpParam> | undefined): boolean;
368
+ }
369
+
370
+ /**
371
+ * @generated from message ct_logic_uni_rev_order.v1.CheckoutURL
372
+ */
373
+ export declare class CheckoutURL extends Message<CheckoutURL> {
374
+ /**
375
+ * @generated from field: string web = 1;
376
+ */
377
+ web: string;
378
+
379
+ /**
380
+ * @generated from field: string android = 2;
381
+ */
382
+ android: string;
383
+
384
+ /**
385
+ * @generated from field: string ios = 3;
386
+ */
387
+ ios: string;
388
+
389
+ constructor(data?: PartialMessage<CheckoutURL>);
390
+
391
+ static readonly runtime: typeof proto3;
392
+ static readonly typeName = "ct_logic_uni_rev_order.v1.CheckoutURL";
393
+ static readonly fields: FieldList;
394
+
395
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CheckoutURL;
396
+
397
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CheckoutURL;
398
+
399
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CheckoutURL;
400
+
401
+ static equals(a: CheckoutURL | PlainMessage<CheckoutURL> | undefined, b: CheckoutURL | PlainMessage<CheckoutURL> | undefined): boolean;
402
+ }
403
+
404
+ /**
405
+ * @generated from message ct_logic_uni_rev_order.v1.CreateOnbehalfOrderResponse
406
+ */
407
+ export declare class CreateOnbehalfOrderResponse extends Message<CreateOnbehalfOrderResponse> {
408
+ /**
409
+ * @generated from field: int64 order_id = 1;
410
+ */
411
+ orderId: bigint;
412
+
413
+ /**
414
+ * @generated from field: string payment_code = 2;
415
+ */
416
+ paymentCode: string;
417
+
418
+ /**
419
+ * @generated from field: int64 amount = 3;
420
+ */
421
+ amount: bigint;
422
+
423
+ /**
424
+ * @generated from field: ct_logic_uni_rev_order.v1.CheckoutURL checkout_urls = 4;
425
+ */
426
+ checkoutUrls?: CheckoutURL;
427
+
428
+ constructor(data?: PartialMessage<CreateOnbehalfOrderResponse>);
429
+
430
+ static readonly runtime: typeof proto3;
431
+ static readonly typeName = "ct_logic_uni_rev_order.v1.CreateOnbehalfOrderResponse";
432
+ static readonly fields: FieldList;
433
+
434
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateOnbehalfOrderResponse;
435
+
436
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateOnbehalfOrderResponse;
437
+
438
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateOnbehalfOrderResponse;
439
+
440
+ static equals(a: CreateOnbehalfOrderResponse | PlainMessage<CreateOnbehalfOrderResponse> | undefined, b: CreateOnbehalfOrderResponse | PlainMessage<CreateOnbehalfOrderResponse> | undefined): boolean;
441
+ }
442
+
443
+ /**
444
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfStickyAdInfoRequest
445
+ */
446
+ export declare class GetOnbehalfStickyAdInfoRequest extends Message<GetOnbehalfStickyAdInfoRequest> {
447
+ /**
448
+ * @generated from field: int64 limit = 1;
449
+ */
450
+ limit: bigint;
451
+
452
+ /**
453
+ * @generated from field: int64 offset = 2;
454
+ */
455
+ offset: bigint;
456
+
457
+ constructor(data?: PartialMessage<GetOnbehalfStickyAdInfoRequest>);
458
+
459
+ static readonly runtime: typeof proto3;
460
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfStickyAdInfoRequest";
461
+ static readonly fields: FieldList;
462
+
463
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfStickyAdInfoRequest;
464
+
465
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfStickyAdInfoRequest;
466
+
467
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfStickyAdInfoRequest;
468
+
469
+ static equals(a: GetOnbehalfStickyAdInfoRequest | PlainMessage<GetOnbehalfStickyAdInfoRequest> | undefined, b: GetOnbehalfStickyAdInfoRequest | PlainMessage<GetOnbehalfStickyAdInfoRequest> | undefined): boolean;
470
+ }
471
+
472
+ /**
473
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfStickyAdInfoResponse
474
+ */
475
+ export declare class GetOnbehalfStickyAdInfoResponse extends Message<GetOnbehalfStickyAdInfoResponse> {
476
+ /**
477
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.OnbehalfStickyAdInfo info = 1;
478
+ */
479
+ info: OnbehalfStickyAdInfo[];
480
+
481
+ /**
482
+ * @generated from field: int64 total = 2;
483
+ */
484
+ total: bigint;
485
+
486
+ constructor(data?: PartialMessage<GetOnbehalfStickyAdInfoResponse>);
487
+
488
+ static readonly runtime: typeof proto3;
489
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfStickyAdInfoResponse";
490
+ static readonly fields: FieldList;
491
+
492
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfStickyAdInfoResponse;
493
+
494
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfStickyAdInfoResponse;
495
+
496
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfStickyAdInfoResponse;
497
+
498
+ static equals(a: GetOnbehalfStickyAdInfoResponse | PlainMessage<GetOnbehalfStickyAdInfoResponse> | undefined, b: GetOnbehalfStickyAdInfoResponse | PlainMessage<GetOnbehalfStickyAdInfoResponse> | undefined): boolean;
499
+ }
500
+
501
+ /**
502
+ * @generated from message ct_logic_uni_rev_order.v1.OnbehalfStickyAdInfo
503
+ */
504
+ export declare class OnbehalfStickyAdInfo extends Message<OnbehalfStickyAdInfo> {
505
+ /**
506
+ * @generated from field: string id = 1;
507
+ */
508
+ id: string;
509
+
510
+ /**
511
+ * @generated from field: int64 account_id = 2;
512
+ */
513
+ accountId: bigint;
514
+
515
+ /**
516
+ * @generated from field: string full_name = 3;
517
+ */
518
+ fullName: string;
519
+
520
+ /**
521
+ * @generated from field: string phone = 4;
522
+ */
523
+ phone: string;
524
+
525
+ /**
526
+ * @generated from field: int64 ad = 5;
527
+ */
528
+ ad: bigint;
529
+
530
+ /**
531
+ * @generated from field: int64 package = 6;
532
+ */
533
+ package: bigint;
534
+
535
+ /**
536
+ * @generated from field: int64 amount = 7;
537
+ */
538
+ amount: bigint;
539
+
540
+ /**
541
+ * @generated from field: bool is_active = 8;
542
+ */
543
+ isActive: boolean;
544
+
545
+ /**
546
+ * @generated from field: bool is_deleted = 9;
547
+ */
548
+ isDeleted: boolean;
549
+
550
+ /**
551
+ * @generated from field: google.protobuf.Timestamp created_at = 10;
552
+ */
553
+ createdAt?: Timestamp;
554
+
555
+ /**
556
+ * @generated from field: google.protobuf.Timestamp updated_at = 11;
557
+ */
558
+ updatedAt?: Timestamp;
559
+
560
+ /**
561
+ * @generated from field: int64 role = 12;
562
+ */
563
+ role: bigint;
564
+
565
+ /**
566
+ * @generated from field: string payment_type = 13;
567
+ */
568
+ paymentType: string;
569
+
570
+ constructor(data?: PartialMessage<OnbehalfStickyAdInfo>);
571
+
572
+ static readonly runtime: typeof proto3;
573
+ static readonly typeName = "ct_logic_uni_rev_order.v1.OnbehalfStickyAdInfo";
574
+ static readonly fields: FieldList;
575
+
576
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnbehalfStickyAdInfo;
577
+
578
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnbehalfStickyAdInfo;
579
+
580
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnbehalfStickyAdInfo;
581
+
582
+ static equals(a: OnbehalfStickyAdInfo | PlainMessage<OnbehalfStickyAdInfo> | undefined, b: OnbehalfStickyAdInfo | PlainMessage<OnbehalfStickyAdInfo> | undefined): boolean;
583
+ }
584
+
585
+ /**
586
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfBumpInfoRequest
587
+ */
588
+ export declare class GetOnbehalfBumpInfoRequest extends Message<GetOnbehalfBumpInfoRequest> {
589
+ /**
590
+ * @generated from field: int64 limit = 1;
591
+ */
592
+ limit: bigint;
593
+
594
+ /**
595
+ * @generated from field: int64 offset = 2;
596
+ */
597
+ offset: bigint;
598
+
599
+ constructor(data?: PartialMessage<GetOnbehalfBumpInfoRequest>);
600
+
601
+ static readonly runtime: typeof proto3;
602
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfBumpInfoRequest";
603
+ static readonly fields: FieldList;
604
+
605
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfBumpInfoRequest;
606
+
607
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfBumpInfoRequest;
608
+
609
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfBumpInfoRequest;
610
+
611
+ static equals(a: GetOnbehalfBumpInfoRequest | PlainMessage<GetOnbehalfBumpInfoRequest> | undefined, b: GetOnbehalfBumpInfoRequest | PlainMessage<GetOnbehalfBumpInfoRequest> | undefined): boolean;
612
+ }
613
+
614
+ /**
615
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfBumpInfoResponse
616
+ */
617
+ export declare class GetOnbehalfBumpInfoResponse extends Message<GetOnbehalfBumpInfoResponse> {
618
+ /**
619
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.OnbehalfBumpInfo info = 1;
620
+ */
621
+ info: OnbehalfBumpInfo[];
622
+
623
+ /**
624
+ * @generated from field: int64 total = 2;
625
+ */
626
+ total: bigint;
627
+
628
+ constructor(data?: PartialMessage<GetOnbehalfBumpInfoResponse>);
629
+
630
+ static readonly runtime: typeof proto3;
631
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfBumpInfoResponse";
632
+ static readonly fields: FieldList;
633
+
634
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfBumpInfoResponse;
635
+
636
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfBumpInfoResponse;
637
+
638
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfBumpInfoResponse;
639
+
640
+ static equals(a: GetOnbehalfBumpInfoResponse | PlainMessage<GetOnbehalfBumpInfoResponse> | undefined, b: GetOnbehalfBumpInfoResponse | PlainMessage<GetOnbehalfBumpInfoResponse> | undefined): boolean;
641
+ }
642
+
643
+ /**
644
+ * @generated from message ct_logic_uni_rev_order.v1.OnbehalfBumpInfo
645
+ */
646
+ export declare class OnbehalfBumpInfo extends Message<OnbehalfBumpInfo> {
647
+ /**
648
+ * @generated from field: string id = 1;
649
+ */
650
+ id: string;
651
+
652
+ /**
653
+ * @generated from field: int64 account_id = 2;
654
+ */
655
+ accountId: bigint;
656
+
657
+ /**
658
+ * @generated from field: string full_name = 3;
659
+ */
660
+ fullName: string;
661
+
662
+ /**
663
+ * @generated from field: string phone = 4;
664
+ */
665
+ phone: string;
666
+
667
+ /**
668
+ * @generated from field: int64 ad = 5;
669
+ */
670
+ ad: bigint;
671
+
672
+ /**
673
+ * @generated from field: string bump_type = 6;
674
+ */
675
+ bumpType: string;
676
+
677
+ /**
678
+ * @generated from field: int64 amount = 7;
679
+ */
680
+ amount: bigint;
681
+
682
+ /**
683
+ * @generated from field: bool is_active = 8;
684
+ */
685
+ isActive: boolean;
686
+
687
+ /**
688
+ * @generated from field: bool is_deleted = 9;
689
+ */
690
+ isDeleted: boolean;
691
+
692
+ /**
693
+ * @generated from field: google.protobuf.Timestamp created_at = 10;
694
+ */
695
+ createdAt?: Timestamp;
696
+
697
+ /**
698
+ * @generated from field: google.protobuf.Timestamp updated_at = 11;
699
+ */
700
+ updatedAt?: Timestamp;
701
+
702
+ /**
703
+ * @generated from field: int64 role = 12;
704
+ */
705
+ role: bigint;
706
+
707
+ /**
708
+ * @generated from field: string payment_type = 13;
709
+ */
710
+ paymentType: string;
711
+
712
+ /**
713
+ * @generated from field: string ad_title = 14;
714
+ */
715
+ adTitle: string;
716
+
717
+ constructor(data?: PartialMessage<OnbehalfBumpInfo>);
718
+
719
+ static readonly runtime: typeof proto3;
720
+ static readonly typeName = "ct_logic_uni_rev_order.v1.OnbehalfBumpInfo";
721
+ static readonly fields: FieldList;
722
+
723
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnbehalfBumpInfo;
724
+
725
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnbehalfBumpInfo;
726
+
727
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnbehalfBumpInfo;
728
+
729
+ static equals(a: OnbehalfBumpInfo | PlainMessage<OnbehalfBumpInfo> | undefined, b: OnbehalfBumpInfo | PlainMessage<OnbehalfBumpInfo> | undefined): boolean;
730
+ }
731
+
732
+ /**
733
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfBundleInfoRequest
734
+ */
735
+ export declare class GetOnbehalfBundleInfoRequest extends Message<GetOnbehalfBundleInfoRequest> {
736
+ /**
737
+ * @generated from field: int64 limit = 1;
738
+ */
739
+ limit: bigint;
740
+
741
+ /**
742
+ * @generated from field: int64 offset = 2;
743
+ */
744
+ offset: bigint;
745
+
746
+ constructor(data?: PartialMessage<GetOnbehalfBundleInfoRequest>);
747
+
748
+ static readonly runtime: typeof proto3;
749
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfBundleInfoRequest";
750
+ static readonly fields: FieldList;
751
+
752
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfBundleInfoRequest;
753
+
754
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfBundleInfoRequest;
755
+
756
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfBundleInfoRequest;
757
+
758
+ static equals(a: GetOnbehalfBundleInfoRequest | PlainMessage<GetOnbehalfBundleInfoRequest> | undefined, b: GetOnbehalfBundleInfoRequest | PlainMessage<GetOnbehalfBundleInfoRequest> | undefined): boolean;
759
+ }
760
+
761
+ /**
762
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfBundleInfoResponse
763
+ */
764
+ export declare class GetOnbehalfBundleInfoResponse extends Message<GetOnbehalfBundleInfoResponse> {
765
+ /**
766
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.OnbehalfBundleInfo info = 1;
767
+ */
768
+ info: OnbehalfBundleInfo[];
769
+
770
+ /**
771
+ * @generated from field: int64 total = 2;
772
+ */
773
+ total: bigint;
774
+
775
+ constructor(data?: PartialMessage<GetOnbehalfBundleInfoResponse>);
776
+
777
+ static readonly runtime: typeof proto3;
778
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfBundleInfoResponse";
779
+ static readonly fields: FieldList;
780
+
781
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfBundleInfoResponse;
782
+
783
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfBundleInfoResponse;
784
+
785
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfBundleInfoResponse;
786
+
787
+ static equals(a: GetOnbehalfBundleInfoResponse | PlainMessage<GetOnbehalfBundleInfoResponse> | undefined, b: GetOnbehalfBundleInfoResponse | PlainMessage<GetOnbehalfBundleInfoResponse> | undefined): boolean;
788
+ }
789
+
790
+ /**
791
+ * @generated from message ct_logic_uni_rev_order.v1.OnbehalfBundleInfo
792
+ */
793
+ export declare class OnbehalfBundleInfo extends Message<OnbehalfBundleInfo> {
794
+ /**
795
+ * @generated from field: string id = 1;
796
+ */
797
+ id: string;
798
+
799
+ /**
800
+ * @generated from field: int64 account_id = 2;
801
+ */
802
+ accountId: bigint;
803
+
804
+ /**
805
+ * @generated from field: int64 area = 3;
806
+ */
807
+ area: bigint;
808
+
809
+ /**
810
+ * @generated from field: int64 category_id = 4;
811
+ */
812
+ categoryId: bigint;
813
+
814
+ /**
815
+ * @generated from field: int64 region_id = 5;
816
+ */
817
+ regionId: bigint;
818
+
819
+ /**
820
+ * @generated from field: string full_name = 6;
821
+ */
822
+ fullName: string;
823
+
824
+ /**
825
+ * @generated from field: string phone = 7;
826
+ */
827
+ phone: string;
828
+
829
+ /**
830
+ * @generated from field: int64 ad = 8;
831
+ */
832
+ ad: bigint;
833
+
834
+ /**
835
+ * @generated from field: int64 bundle_type = 9;
836
+ */
837
+ bundleType: bigint;
838
+
839
+ /**
840
+ * @generated from field: int64 amount = 10;
841
+ */
842
+ amount: bigint;
843
+
844
+ /**
845
+ * @generated from field: bool is_active = 11;
846
+ */
847
+ isActive: boolean;
848
+
849
+ /**
850
+ * @generated from field: bool is_deleted = 12;
851
+ */
852
+ isDeleted: boolean;
853
+
854
+ /**
855
+ * @generated from field: int64 role = 13;
856
+ */
857
+ role: bigint;
858
+
859
+ /**
860
+ * @generated from field: string payment_type = 14;
861
+ */
862
+ paymentType: string;
863
+
864
+ /**
865
+ * @generated from field: google.protobuf.Timestamp created_at = 15;
866
+ */
867
+ createdAt?: Timestamp;
868
+
869
+ /**
870
+ * @generated from field: google.protobuf.Timestamp updated_at = 16;
871
+ */
872
+ updatedAt?: Timestamp;
873
+
874
+ constructor(data?: PartialMessage<OnbehalfBundleInfo>);
875
+
876
+ static readonly runtime: typeof proto3;
877
+ static readonly typeName = "ct_logic_uni_rev_order.v1.OnbehalfBundleInfo";
878
+ static readonly fields: FieldList;
879
+
880
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnbehalfBundleInfo;
881
+
882
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnbehalfBundleInfo;
883
+
884
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnbehalfBundleInfo;
885
+
886
+ static equals(a: OnbehalfBundleInfo | PlainMessage<OnbehalfBundleInfo> | undefined, b: OnbehalfBundleInfo | PlainMessage<OnbehalfBundleInfo> | undefined): boolean;
887
+ }
888
+
889
+ /**
890
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfSpecialDisplayInfoRequest
891
+ */
892
+ export declare class GetOnbehalfSpecialDisplayInfoRequest extends Message<GetOnbehalfSpecialDisplayInfoRequest> {
893
+ /**
894
+ * @generated from field: int64 limit = 1;
895
+ */
896
+ limit: bigint;
897
+
898
+ /**
899
+ * @generated from field: int64 offset = 2;
900
+ */
901
+ offset: bigint;
902
+
903
+ constructor(data?: PartialMessage<GetOnbehalfSpecialDisplayInfoRequest>);
904
+
905
+ static readonly runtime: typeof proto3;
906
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfSpecialDisplayInfoRequest";
907
+ static readonly fields: FieldList;
908
+
909
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfSpecialDisplayInfoRequest;
910
+
911
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfSpecialDisplayInfoRequest;
912
+
913
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfSpecialDisplayInfoRequest;
914
+
915
+ static equals(a: GetOnbehalfSpecialDisplayInfoRequest | PlainMessage<GetOnbehalfSpecialDisplayInfoRequest> | undefined, b: GetOnbehalfSpecialDisplayInfoRequest | PlainMessage<GetOnbehalfSpecialDisplayInfoRequest> | undefined): boolean;
916
+ }
917
+
918
+ /**
919
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfSpecialDisplayInfoResponse
920
+ */
921
+ export declare class GetOnbehalfSpecialDisplayInfoResponse extends Message<GetOnbehalfSpecialDisplayInfoResponse> {
922
+ /**
923
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.OnbehalfSpecialDisplayInfo info = 1;
924
+ */
925
+ info: OnbehalfSpecialDisplayInfo[];
926
+
927
+ /**
928
+ * @generated from field: int64 total = 2;
929
+ */
930
+ total: bigint;
931
+
932
+ constructor(data?: PartialMessage<GetOnbehalfSpecialDisplayInfoResponse>);
933
+
934
+ static readonly runtime: typeof proto3;
935
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfSpecialDisplayInfoResponse";
936
+ static readonly fields: FieldList;
937
+
938
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfSpecialDisplayInfoResponse;
939
+
940
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfSpecialDisplayInfoResponse;
941
+
942
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfSpecialDisplayInfoResponse;
943
+
944
+ static equals(a: GetOnbehalfSpecialDisplayInfoResponse | PlainMessage<GetOnbehalfSpecialDisplayInfoResponse> | undefined, b: GetOnbehalfSpecialDisplayInfoResponse | PlainMessage<GetOnbehalfSpecialDisplayInfoResponse> | undefined): boolean;
945
+ }
946
+
947
+ /**
948
+ * @generated from message ct_logic_uni_rev_order.v1.OnbehalfSpecialDisplayInfo
949
+ */
950
+ export declare class OnbehalfSpecialDisplayInfo extends Message<OnbehalfSpecialDisplayInfo> {
951
+ /**
952
+ * @generated from field: string id = 1;
953
+ */
954
+ id: string;
955
+
956
+ /**
957
+ * @generated from field: int64 account_id = 2;
958
+ */
959
+ accountId: bigint;
960
+
961
+ /**
962
+ * @generated from field: int64 ad_id = 3;
963
+ */
964
+ adId: bigint;
965
+
966
+ /**
967
+ * @generated from field: int64 price = 4;
968
+ */
969
+ price: bigint;
970
+
971
+ /**
972
+ * @generated from field: google.protobuf.Timestamp created_at = 5;
973
+ */
974
+ createdAt?: Timestamp;
975
+
976
+ /**
977
+ * @generated from field: google.protobuf.Timestamp updated_at = 6;
978
+ */
979
+ updatedAt?: Timestamp;
980
+
981
+ /**
982
+ * @generated from field: int64 order_id = 7;
983
+ */
984
+ orderId: bigint;
985
+
986
+ /**
987
+ * @generated from field: string payment_type = 8;
988
+ */
989
+ paymentType: string;
990
+
991
+ /**
992
+ * @generated from field: string created_by = 9;
993
+ */
994
+ createdBy: string;
995
+
996
+ /**
997
+ * @generated from field: int64 duration = 10;
998
+ */
999
+ duration: bigint;
1000
+
1001
+ /**
1002
+ * @generated from field: string confirm = 11;
1003
+ */
1004
+ confirm: string;
1005
+
1006
+ /**
1007
+ * @generated from field: string user_type = 12;
1008
+ */
1009
+ userType: string;
1010
+
1011
+ constructor(data?: PartialMessage<OnbehalfSpecialDisplayInfo>);
1012
+
1013
+ static readonly runtime: typeof proto3;
1014
+ static readonly typeName = "ct_logic_uni_rev_order.v1.OnbehalfSpecialDisplayInfo";
1015
+ static readonly fields: FieldList;
1016
+
1017
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnbehalfSpecialDisplayInfo;
1018
+
1019
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnbehalfSpecialDisplayInfo;
1020
+
1021
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnbehalfSpecialDisplayInfo;
1022
+
1023
+ static equals(a: OnbehalfSpecialDisplayInfo | PlainMessage<OnbehalfSpecialDisplayInfo> | undefined, b: OnbehalfSpecialDisplayInfo | PlainMessage<OnbehalfSpecialDisplayInfo> | undefined): boolean;
1024
+ }
1025
+
1026
+ /**
1027
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfIntensiveBumpInfoRequest
1028
+ */
1029
+ export declare class GetOnbehalfIntensiveBumpInfoRequest extends Message<GetOnbehalfIntensiveBumpInfoRequest> {
1030
+ /**
1031
+ * @generated from field: int64 limit = 1;
1032
+ */
1033
+ limit: bigint;
1034
+
1035
+ /**
1036
+ * @generated from field: int64 offset = 2;
1037
+ */
1038
+ offset: bigint;
1039
+
1040
+ constructor(data?: PartialMessage<GetOnbehalfIntensiveBumpInfoRequest>);
1041
+
1042
+ static readonly runtime: typeof proto3;
1043
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfIntensiveBumpInfoRequest";
1044
+ static readonly fields: FieldList;
1045
+
1046
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfIntensiveBumpInfoRequest;
1047
+
1048
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfIntensiveBumpInfoRequest;
1049
+
1050
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfIntensiveBumpInfoRequest;
1051
+
1052
+ static equals(a: GetOnbehalfIntensiveBumpInfoRequest | PlainMessage<GetOnbehalfIntensiveBumpInfoRequest> | undefined, b: GetOnbehalfIntensiveBumpInfoRequest | PlainMessage<GetOnbehalfIntensiveBumpInfoRequest> | undefined): boolean;
1053
+ }
1054
+
1055
+ /**
1056
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfIntensiveBumpInfoResponse
1057
+ */
1058
+ export declare class GetOnbehalfIntensiveBumpInfoResponse extends Message<GetOnbehalfIntensiveBumpInfoResponse> {
1059
+ /**
1060
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.OnbehalfIntensiveBumpInfo info = 1;
1061
+ */
1062
+ info: OnbehalfIntensiveBumpInfo[];
1063
+
1064
+ /**
1065
+ * @generated from field: int64 total = 2;
1066
+ */
1067
+ total: bigint;
1068
+
1069
+ constructor(data?: PartialMessage<GetOnbehalfIntensiveBumpInfoResponse>);
1070
+
1071
+ static readonly runtime: typeof proto3;
1072
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfIntensiveBumpInfoResponse";
1073
+ static readonly fields: FieldList;
1074
+
1075
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfIntensiveBumpInfoResponse;
1076
+
1077
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfIntensiveBumpInfoResponse;
1078
+
1079
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfIntensiveBumpInfoResponse;
1080
+
1081
+ static equals(a: GetOnbehalfIntensiveBumpInfoResponse | PlainMessage<GetOnbehalfIntensiveBumpInfoResponse> | undefined, b: GetOnbehalfIntensiveBumpInfoResponse | PlainMessage<GetOnbehalfIntensiveBumpInfoResponse> | undefined): boolean;
1082
+ }
1083
+
1084
+ /**
1085
+ * @generated from message ct_logic_uni_rev_order.v1.OnbehalfIntensiveBumpInfo
1086
+ */
1087
+ export declare class OnbehalfIntensiveBumpInfo extends Message<OnbehalfIntensiveBumpInfo> {
1088
+ /**
1089
+ * @generated from field: string id = 1;
1090
+ */
1091
+ id: string;
1092
+
1093
+ /**
1094
+ * @generated from field: int64 account_id = 2;
1095
+ */
1096
+ accountId: bigint;
1097
+
1098
+ /**
1099
+ * @generated from field: string phone = 3;
1100
+ */
1101
+ phone: string;
1102
+
1103
+ /**
1104
+ * @generated from field: int64 ad_id = 4;
1105
+ */
1106
+ adId: bigint;
1107
+
1108
+ /**
1109
+ * @generated from field: int64 duration = 5;
1110
+ */
1111
+ duration: bigint;
1112
+
1113
+ /**
1114
+ * @generated from field: int64 amount = 6;
1115
+ */
1116
+ amount: bigint;
1117
+
1118
+ /**
1119
+ * @generated from field: string payment_type = 7;
1120
+ */
1121
+ paymentType: string;
1122
+
1123
+ /**
1124
+ * @generated from field: bool confirmed_by_user = 8;
1125
+ */
1126
+ confirmedByUser: boolean;
1127
+
1128
+ /**
1129
+ * @generated from field: google.protobuf.Timestamp created_at = 9;
1130
+ */
1131
+ createdAt?: Timestamp;
1132
+
1133
+ /**
1134
+ * @generated from field: google.protobuf.Timestamp updated_at = 10;
1135
+ */
1136
+ updatedAt?: Timestamp;
1137
+
1138
+ /**
1139
+ * @generated from field: string created_by = 11;
1140
+ */
1141
+ createdBy: string;
1142
+
1143
+ /**
1144
+ * @generated from field: string full_name = 12;
1145
+ */
1146
+ fullName: string;
1147
+
1148
+ constructor(data?: PartialMessage<OnbehalfIntensiveBumpInfo>);
1149
+
1150
+ static readonly runtime: typeof proto3;
1151
+ static readonly typeName = "ct_logic_uni_rev_order.v1.OnbehalfIntensiveBumpInfo";
1152
+ static readonly fields: FieldList;
1153
+
1154
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnbehalfIntensiveBumpInfo;
1155
+
1156
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnbehalfIntensiveBumpInfo;
1157
+
1158
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnbehalfIntensiveBumpInfo;
1159
+
1160
+ static equals(a: OnbehalfIntensiveBumpInfo | PlainMessage<OnbehalfIntensiveBumpInfo> | undefined, b: OnbehalfIntensiveBumpInfo | PlainMessage<OnbehalfIntensiveBumpInfo> | undefined): boolean;
1161
+ }
1162
+
1163
+ /**
1164
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfTimerBumpInfoRequest
1165
+ */
1166
+ export declare class GetOnbehalfTimerBumpInfoRequest extends Message<GetOnbehalfTimerBumpInfoRequest> {
1167
+ /**
1168
+ * @generated from field: int64 limit = 1;
1169
+ */
1170
+ limit: bigint;
1171
+
1172
+ /**
1173
+ * @generated from field: int64 offset = 2;
1174
+ */
1175
+ offset: bigint;
1176
+
1177
+ constructor(data?: PartialMessage<GetOnbehalfTimerBumpInfoRequest>);
1178
+
1179
+ static readonly runtime: typeof proto3;
1180
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfTimerBumpInfoRequest";
1181
+ static readonly fields: FieldList;
1182
+
1183
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfTimerBumpInfoRequest;
1184
+
1185
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfTimerBumpInfoRequest;
1186
+
1187
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfTimerBumpInfoRequest;
1188
+
1189
+ static equals(a: GetOnbehalfTimerBumpInfoRequest | PlainMessage<GetOnbehalfTimerBumpInfoRequest> | undefined, b: GetOnbehalfTimerBumpInfoRequest | PlainMessage<GetOnbehalfTimerBumpInfoRequest> | undefined): boolean;
1190
+ }
1191
+
1192
+ /**
1193
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfTimerBumpInfoResponse
1194
+ */
1195
+ export declare class GetOnbehalfTimerBumpInfoResponse extends Message<GetOnbehalfTimerBumpInfoResponse> {
1196
+ /**
1197
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.OnbehalfTimerBumpInfo info = 1;
1198
+ */
1199
+ info: OnbehalfTimerBumpInfo[];
1200
+
1201
+ /**
1202
+ * @generated from field: int64 total = 2;
1203
+ */
1204
+ total: bigint;
1205
+
1206
+ constructor(data?: PartialMessage<GetOnbehalfTimerBumpInfoResponse>);
1207
+
1208
+ static readonly runtime: typeof proto3;
1209
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfTimerBumpInfoResponse";
1210
+ static readonly fields: FieldList;
1211
+
1212
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfTimerBumpInfoResponse;
1213
+
1214
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfTimerBumpInfoResponse;
1215
+
1216
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfTimerBumpInfoResponse;
1217
+
1218
+ static equals(a: GetOnbehalfTimerBumpInfoResponse | PlainMessage<GetOnbehalfTimerBumpInfoResponse> | undefined, b: GetOnbehalfTimerBumpInfoResponse | PlainMessage<GetOnbehalfTimerBumpInfoResponse> | undefined): boolean;
1219
+ }
1220
+
1221
+ /**
1222
+ * @generated from message ct_logic_uni_rev_order.v1.OnbehalfTimerBumpInfo
1223
+ */
1224
+ export declare class OnbehalfTimerBumpInfo extends Message<OnbehalfTimerBumpInfo> {
1225
+ /**
1226
+ * @generated from field: string id = 1;
1227
+ */
1228
+ id: string;
1229
+
1230
+ /**
1231
+ * @generated from field: int64 account_id = 2;
1232
+ */
1233
+ accountId: bigint;
1234
+
1235
+ /**
1236
+ * @generated from field: string phone = 3;
1237
+ */
1238
+ phone: string;
1239
+
1240
+ /**
1241
+ * @generated from field: int64 bump_week = 4;
1242
+ */
1243
+ bumpWeek: bigint;
1244
+
1245
+ /**
1246
+ * @generated from field: int64 price = 5;
1247
+ */
1248
+ price: bigint;
1249
+
1250
+ /**
1251
+ * @generated from field: google.protobuf.Timestamp created_at = 6;
1252
+ */
1253
+ createdAt?: Timestamp;
1254
+
1255
+ /**
1256
+ * @generated from field: google.protobuf.Timestamp updated_at = 7;
1257
+ */
1258
+ updatedAt?: Timestamp;
1259
+
1260
+ /**
1261
+ * @generated from field: int64 order_id = 8;
1262
+ */
1263
+ orderId: bigint;
1264
+
1265
+ /**
1266
+ * @generated from field: string payment_type = 9;
1267
+ */
1268
+ paymentType: string;
1269
+
1270
+ /**
1271
+ * @generated from field: int64 number_of_bump = 10;
1272
+ */
1273
+ numberOfBump: bigint;
1274
+
1275
+ /**
1276
+ * @generated from field: string created_by = 11;
1277
+ */
1278
+ createdBy: string;
1279
+
1280
+ /**
1281
+ * @generated from field: string confirm = 12;
1282
+ */
1283
+ confirm: string;
1284
+
1285
+ constructor(data?: PartialMessage<OnbehalfTimerBumpInfo>);
1286
+
1287
+ static readonly runtime: typeof proto3;
1288
+ static readonly typeName = "ct_logic_uni_rev_order.v1.OnbehalfTimerBumpInfo";
1289
+ static readonly fields: FieldList;
1290
+
1291
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnbehalfTimerBumpInfo;
1292
+
1293
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnbehalfTimerBumpInfo;
1294
+
1295
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnbehalfTimerBumpInfo;
1296
+
1297
+ static equals(a: OnbehalfTimerBumpInfo | PlainMessage<OnbehalfTimerBumpInfo> | undefined, b: OnbehalfTimerBumpInfo | PlainMessage<OnbehalfTimerBumpInfo> | undefined): boolean;
1298
+ }
1299
+
1300
+ /**
1301
+ * @generated from message ct_logic_uni_rev_order.v1.SubscriptionParam
1302
+ */
1303
+ export declare class SubscriptionParam extends Message<SubscriptionParam> {
1304
+ /**
1305
+ * @generated from field: int64 quantity = 1;
1306
+ */
1307
+ quantity: bigint;
1308
+
1309
+ /**
1310
+ * @generated from field: int64 subscription_id = 2;
1311
+ */
1312
+ subscriptionId: bigint;
1313
+
1314
+ /**
1315
+ * onbehalf info
1316
+ *
1317
+ * @generated from field: string subscription_name = 3;
1318
+ */
1319
+ subscriptionName: string;
1320
+
1321
+ /**
1322
+ * onbehalf info
1323
+ *
1324
+ * @generated from field: string vertical = 4;
1325
+ */
1326
+ vertical: string;
1327
+
1328
+ constructor(data?: PartialMessage<SubscriptionParam>);
1329
+
1330
+ static readonly runtime: typeof proto3;
1331
+ static readonly typeName = "ct_logic_uni_rev_order.v1.SubscriptionParam";
1332
+ static readonly fields: FieldList;
1333
+
1334
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SubscriptionParam;
1335
+
1336
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SubscriptionParam;
1337
+
1338
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SubscriptionParam;
1339
+
1340
+ static equals(a: SubscriptionParam | PlainMessage<SubscriptionParam> | undefined, b: SubscriptionParam | PlainMessage<SubscriptionParam> | undefined): boolean;
1341
+ }
1342
+
1343
+ /**
1344
+ * @generated from message ct_logic_uni_rev_order.v1.ExtendShopParam
1345
+ */
1346
+ export declare class ExtendShopParam extends Message<ExtendShopParam> {
1347
+ /**
1348
+ * @generated from field: int64 duration = 1;
1349
+ */
1350
+ duration: bigint;
1351
+
1352
+ /**
1353
+ * @generated from field: string shop_alias = 2;
1354
+ */
1355
+ shopAlias: string;
1356
+
1357
+ /**
1358
+ * @generated from field: int64 account_id = 3;
1359
+ */
1360
+ accountId: bigint;
1361
+
1362
+ /**
1363
+ * @generated from field: string phone = 4;
1364
+ */
1365
+ phone: string;
1366
+
1367
+ constructor(data?: PartialMessage<ExtendShopParam>);
1368
+
1369
+ static readonly runtime: typeof proto3;
1370
+ static readonly typeName = "ct_logic_uni_rev_order.v1.ExtendShopParam";
1371
+ static readonly fields: FieldList;
1372
+
1373
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExtendShopParam;
1374
+
1375
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExtendShopParam;
1376
+
1377
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExtendShopParam;
1378
+
1379
+ static equals(a: ExtendShopParam | PlainMessage<ExtendShopParam> | undefined, b: ExtendShopParam | PlainMessage<ExtendShopParam> | undefined): boolean;
1380
+ }
1381
+
1382
+ /**
1383
+ * @generated from message ct_logic_uni_rev_order.v1.CreateShopParam
1384
+ */
1385
+ export declare class CreateShopParam extends Message<CreateShopParam> {
1386
+ /**
1387
+ * @generated from field: int64 category_id = 1;
1388
+ */
1389
+ categoryId: bigint;
1390
+
1391
+ /**
1392
+ * @generated from field: int64 duration = 2;
1393
+ */
1394
+ duration: bigint;
1395
+
1396
+ /**
1397
+ * @generated from field: int64 account_id = 3;
1398
+ */
1399
+ accountId: bigint;
1400
+
1401
+ /**
1402
+ * @generated from field: string phone = 4;
1403
+ */
1404
+ phone: string;
1405
+
1406
+ constructor(data?: PartialMessage<CreateShopParam>);
1407
+
1408
+ static readonly runtime: typeof proto3;
1409
+ static readonly typeName = "ct_logic_uni_rev_order.v1.CreateShopParam";
1410
+ static readonly fields: FieldList;
1411
+
1412
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateShopParam;
1413
+
1414
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateShopParam;
1415
+
1416
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateShopParam;
1417
+
1418
+ static equals(a: CreateShopParam | PlainMessage<CreateShopParam> | undefined, b: CreateShopParam | PlainMessage<CreateShopParam> | undefined): boolean;
1419
+ }
1420
+
1421
+ /**
1422
+ * @generated from message ct_logic_uni_rev_order.v1.OnbehalfSubscription
1423
+ */
1424
+ export declare class OnbehalfSubscription extends Message<OnbehalfSubscription> {
1425
+ /**
1426
+ * @generated from field: string id = 1;
1427
+ */
1428
+ id: string;
1429
+
1430
+ /**
1431
+ * @generated from field: int64 account_id = 2;
1432
+ */
1433
+ accountId: bigint;
1434
+
1435
+ /**
1436
+ * @generated from field: string phone = 3;
1437
+ */
1438
+ phone: string;
1439
+
1440
+ /**
1441
+ * @generated from field: int64 subscription = 4;
1442
+ */
1443
+ subscription: bigint;
1444
+
1445
+ /**
1446
+ * @generated from field: string vertical = 5;
1447
+ */
1448
+ vertical: string;
1449
+
1450
+ /**
1451
+ * @generated from field: int64 duration = 6;
1452
+ */
1453
+ duration: bigint;
1454
+
1455
+ /**
1456
+ * @generated from field: int64 amount = 7;
1457
+ */
1458
+ amount: bigint;
1459
+
1460
+ /**
1461
+ * @generated from field: google.protobuf.Timestamp created_at = 8;
1462
+ */
1463
+ createdAt?: Timestamp;
1464
+
1465
+ /**
1466
+ * @generated from field: google.protobuf.Timestamp updated_at = 9;
1467
+ */
1468
+ updatedAt?: Timestamp;
1469
+
1470
+ /**
1471
+ * @generated from field: int64 order_id = 10;
1472
+ */
1473
+ orderId: bigint;
1474
+
1475
+ /**
1476
+ * @generated from field: string payment_type = 11;
1477
+ */
1478
+ paymentType: string;
1479
+
1480
+ /**
1481
+ * @generated from field: string created_by = 12;
1482
+ */
1483
+ createdBy: string;
1484
+
1485
+ /**
1486
+ * @generated from field: string confirm = 13;
1487
+ */
1488
+ confirm: string;
1489
+
1490
+ /**
1491
+ * @generated from field: string subscription_name = 14;
1492
+ */
1493
+ subscriptionName: string;
1494
+
1495
+ constructor(data?: PartialMessage<OnbehalfSubscription>);
1496
+
1497
+ static readonly runtime: typeof proto3;
1498
+ static readonly typeName = "ct_logic_uni_rev_order.v1.OnbehalfSubscription";
1499
+ static readonly fields: FieldList;
1500
+
1501
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnbehalfSubscription;
1502
+
1503
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnbehalfSubscription;
1504
+
1505
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnbehalfSubscription;
1506
+
1507
+ static equals(a: OnbehalfSubscription | PlainMessage<OnbehalfSubscription> | undefined, b: OnbehalfSubscription | PlainMessage<OnbehalfSubscription> | undefined): boolean;
1508
+ }
1509
+
1510
+ /**
1511
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfSubscriptionInfoRequest
1512
+ */
1513
+ export declare class GetOnbehalfSubscriptionInfoRequest extends Message<GetOnbehalfSubscriptionInfoRequest> {
1514
+ /**
1515
+ * @generated from field: int64 limit = 1;
1516
+ */
1517
+ limit: bigint;
1518
+
1519
+ /**
1520
+ * @generated from field: int64 offset = 2;
1521
+ */
1522
+ offset: bigint;
1523
+
1524
+ constructor(data?: PartialMessage<GetOnbehalfSubscriptionInfoRequest>);
1525
+
1526
+ static readonly runtime: typeof proto3;
1527
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfSubscriptionInfoRequest";
1528
+ static readonly fields: FieldList;
1529
+
1530
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfSubscriptionInfoRequest;
1531
+
1532
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfSubscriptionInfoRequest;
1533
+
1534
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfSubscriptionInfoRequest;
1535
+
1536
+ static equals(a: GetOnbehalfSubscriptionInfoRequest | PlainMessage<GetOnbehalfSubscriptionInfoRequest> | undefined, b: GetOnbehalfSubscriptionInfoRequest | PlainMessage<GetOnbehalfSubscriptionInfoRequest> | undefined): boolean;
1537
+ }
1538
+
1539
+ /**
1540
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfSubscriptionInfoResponse
1541
+ */
1542
+ export declare class GetOnbehalfSubscriptionInfoResponse extends Message<GetOnbehalfSubscriptionInfoResponse> {
1543
+ /**
1544
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.OnbehalfSubscription info = 1;
1545
+ */
1546
+ info: OnbehalfSubscription[];
1547
+
1548
+ /**
1549
+ * @generated from field: int64 total = 2;
1550
+ */
1551
+ total: bigint;
1552
+
1553
+ constructor(data?: PartialMessage<GetOnbehalfSubscriptionInfoResponse>);
1554
+
1555
+ static readonly runtime: typeof proto3;
1556
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfSubscriptionInfoResponse";
1557
+ static readonly fields: FieldList;
1558
+
1559
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfSubscriptionInfoResponse;
1560
+
1561
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfSubscriptionInfoResponse;
1562
+
1563
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfSubscriptionInfoResponse;
1564
+
1565
+ static equals(a: GetOnbehalfSubscriptionInfoResponse | PlainMessage<GetOnbehalfSubscriptionInfoResponse> | undefined, b: GetOnbehalfSubscriptionInfoResponse | PlainMessage<GetOnbehalfSubscriptionInfoResponse> | undefined): boolean;
1566
+ }
1567
+
1568
+ /**
1569
+ * @generated from message ct_logic_uni_rev_order.v1.OnbehalfAdDelivery
1570
+ */
1571
+ export declare class OnbehalfAdDelivery extends Message<OnbehalfAdDelivery> {
1572
+ /**
1573
+ * @generated from field: string id = 1;
1574
+ */
1575
+ id: string;
1576
+
1577
+ /**
1578
+ * @generated from field: string campaign_name = 2;
1579
+ */
1580
+ campaignName: string;
1581
+
1582
+ /**
1583
+ * @generated from field: int64 account_id = 3;
1584
+ */
1585
+ accountId: bigint;
1586
+
1587
+ /**
1588
+ * @generated from field: string package_id = 4;
1589
+ */
1590
+ packageId: string;
1591
+
1592
+ /**
1593
+ * @generated from field: string package_name = 5;
1594
+ */
1595
+ packageName: string;
1596
+
1597
+ /**
1598
+ * @generated from field: int64 price = 6;
1599
+ */
1600
+ price: bigint;
1601
+
1602
+ /**
1603
+ * @generated from field: int64 duration = 7;
1604
+ */
1605
+ duration: bigint;
1606
+
1607
+ /**
1608
+ * @generated from field: google.protobuf.Timestamp start_time = 8;
1609
+ */
1610
+ startTime?: Timestamp;
1611
+
1612
+ /**
1613
+ * @generated from field: google.protobuf.Timestamp end_time = 9;
1614
+ */
1615
+ endTime?: Timestamp;
1616
+
1617
+ /**
1618
+ * @generated from field: string payment_link = 10;
1619
+ */
1620
+ paymentLink: string;
1621
+
1622
+ /**
1623
+ * @generated from field: int64 order_id = 11;
1624
+ */
1625
+ orderId: bigint;
1626
+
1627
+ /**
1628
+ * @generated from field: int64 service_id = 12;
1629
+ */
1630
+ serviceId: bigint;
1631
+
1632
+ /**
1633
+ * @generated from field: string payment_type = 13;
1634
+ */
1635
+ paymentType: string;
1636
+
1637
+ /**
1638
+ * @generated from field: string confirm = 14;
1639
+ */
1640
+ confirm: string;
1641
+
1642
+ /**
1643
+ * @generated from field: google.protobuf.Timestamp created_at = 15;
1644
+ */
1645
+ createdAt?: Timestamp;
1646
+
1647
+ /**
1648
+ * @generated from field: google.protobuf.Timestamp updated_at = 16;
1649
+ */
1650
+ updatedAt?: Timestamp;
1651
+
1652
+ /**
1653
+ * @generated from field: string created_by = 17;
1654
+ */
1655
+ createdBy: string;
1656
+
1657
+ /**
1658
+ * @generated from field: repeated int64 region_ids = 18;
1659
+ */
1660
+ regionIds: bigint[];
1661
+
1662
+ /**
1663
+ * @generated from field: repeated int64 ad_ids = 19;
1664
+ */
1665
+ adIds: bigint[];
1666
+
1667
+ /**
1668
+ * @generated from field: string phone = 20;
1669
+ */
1670
+ phone: string;
1671
+
1672
+ /**
1673
+ * @generated from field: string campaign_id = 21;
1674
+ */
1675
+ campaignId: string;
1676
+
1677
+ /**
1678
+ * @generated from field: int64 category_id = 22;
1679
+ */
1680
+ categoryId: bigint;
1681
+
1682
+ constructor(data?: PartialMessage<OnbehalfAdDelivery>);
1683
+
1684
+ static readonly runtime: typeof proto3;
1685
+ static readonly typeName = "ct_logic_uni_rev_order.v1.OnbehalfAdDelivery";
1686
+ static readonly fields: FieldList;
1687
+
1688
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OnbehalfAdDelivery;
1689
+
1690
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OnbehalfAdDelivery;
1691
+
1692
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OnbehalfAdDelivery;
1693
+
1694
+ static equals(a: OnbehalfAdDelivery | PlainMessage<OnbehalfAdDelivery> | undefined, b: OnbehalfAdDelivery | PlainMessage<OnbehalfAdDelivery> | undefined): boolean;
1695
+ }
1696
+
1697
+ /**
1698
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfAdDeliveryInfoRequest
1699
+ */
1700
+ export declare class GetOnbehalfAdDeliveryInfoRequest extends Message<GetOnbehalfAdDeliveryInfoRequest> {
1701
+ /**
1702
+ * @generated from field: int64 limit = 1;
1703
+ */
1704
+ limit: bigint;
1705
+
1706
+ /**
1707
+ * @generated from field: int64 offset = 2;
1708
+ */
1709
+ offset: bigint;
1710
+
1711
+ /**
1712
+ * @generated from field: string phone = 3;
1713
+ */
1714
+ phone: string;
1715
+
1716
+ /**
1717
+ * @generated from field: int64 order_id = 4;
1718
+ */
1719
+ orderId: bigint;
1720
+
1721
+ /**
1722
+ * @generated from field: string campaign_id = 5;
1723
+ */
1724
+ campaignId: string;
1725
+
1726
+ /**
1727
+ * @generated from field: string campaign_name = 6;
1728
+ */
1729
+ campaignName: string;
1730
+
1731
+ /**
1732
+ * @generated from field: string package_name = 7;
1733
+ */
1734
+ packageName: string;
1735
+
1736
+ /**
1737
+ * @generated from field: string created_by = 8;
1738
+ */
1739
+ createdBy: string;
1740
+
1741
+ /**
1742
+ * @generated from field: repeated int64 categories = 9;
1743
+ */
1744
+ categories: bigint[];
1745
+
1746
+ constructor(data?: PartialMessage<GetOnbehalfAdDeliveryInfoRequest>);
1747
+
1748
+ static readonly runtime: typeof proto3;
1749
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfAdDeliveryInfoRequest";
1750
+ static readonly fields: FieldList;
1751
+
1752
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfAdDeliveryInfoRequest;
1753
+
1754
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfAdDeliveryInfoRequest;
1755
+
1756
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfAdDeliveryInfoRequest;
1757
+
1758
+ static equals(a: GetOnbehalfAdDeliveryInfoRequest | PlainMessage<GetOnbehalfAdDeliveryInfoRequest> | undefined, b: GetOnbehalfAdDeliveryInfoRequest | PlainMessage<GetOnbehalfAdDeliveryInfoRequest> | undefined): boolean;
1759
+ }
1760
+
1761
+ /**
1762
+ * @generated from message ct_logic_uni_rev_order.v1.GetOnbehalfAdDeliveryInfoResponse
1763
+ */
1764
+ export declare class GetOnbehalfAdDeliveryInfoResponse extends Message<GetOnbehalfAdDeliveryInfoResponse> {
1765
+ /**
1766
+ * @generated from field: repeated ct_logic_uni_rev_order.v1.OnbehalfAdDelivery info = 1;
1767
+ */
1768
+ info: OnbehalfAdDelivery[];
1769
+
1770
+ /**
1771
+ * @generated from field: int64 total = 2;
1772
+ */
1773
+ total: bigint;
1774
+
1775
+ constructor(data?: PartialMessage<GetOnbehalfAdDeliveryInfoResponse>);
1776
+
1777
+ static readonly runtime: typeof proto3;
1778
+ static readonly typeName = "ct_logic_uni_rev_order.v1.GetOnbehalfAdDeliveryInfoResponse";
1779
+ static readonly fields: FieldList;
1780
+
1781
+ static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOnbehalfAdDeliveryInfoResponse;
1782
+
1783
+ static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOnbehalfAdDeliveryInfoResponse;
1784
+
1785
+ static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOnbehalfAdDeliveryInfoResponse;
1786
+
1787
+ static equals(a: GetOnbehalfAdDeliveryInfoResponse | PlainMessage<GetOnbehalfAdDeliveryInfoResponse> | undefined, b: GetOnbehalfAdDeliveryInfoResponse | PlainMessage<GetOnbehalfAdDeliveryInfoResponse> | undefined): boolean;
1788
+ }
1789
+