@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.
- package/cart_service-LogicUniRevOrderCartService_connectquery.d.ts +88 -0
- package/cart_service-LogicUniRevOrderCartService_connectquery.js +131 -0
- package/cart_service.proto +108 -0
- package/cart_service_connect.d.ts +80 -0
- package/cart_service_connect.js +80 -0
- package/cart_service_pb.d.ts +525 -0
- package/cart_service_pb.js +194 -0
- package/change_order_status.proto +110 -0
- package/change_order_status_pb.d.ts +494 -0
- package/change_order_status_pb.js +163 -0
- package/invoice.proto +565 -0
- package/invoice_entities.proto +205 -0
- package/invoice_entities_pb.d.ts +414 -0
- package/invoice_entities_pb.js +113 -0
- package/invoice_pb.d.ts +2875 -0
- package/invoice_pb.js +917 -0
- package/invoice_service-LogicUniRevOrderInvoiceService_connectquery.d.ts +238 -0
- package/invoice_service-LogicUniRevOrderInvoiceService_connectquery.js +371 -0
- package/invoice_service.proto +240 -0
- package/invoice_service_connect.d.ts +215 -0
- package/invoice_service_connect.js +215 -0
- package/onbehalf_service-LogicUniRevOrderOnBehalfService_connectquery.d.ts +108 -0
- package/onbehalf_service-LogicUniRevOrderOnBehalfService_connectquery.js +163 -0
- package/onbehalf_service.proto +355 -0
- package/onbehalf_service_connect.d.ts +98 -0
- package/onbehalf_service_connect.js +98 -0
- package/onbehalf_service_pb.d.ts +1789 -0
- package/onbehalf_service_pb.js +568 -0
- package/order_entities.proto +75 -0
- package/order_entities_pb.d.ts +366 -0
- package/order_entities_pb.js +111 -0
- package/order_history_order_service_detail.proto +485 -0
- package/order_history_order_service_detail_pb.d.ts +2599 -0
- package/order_history_order_service_detail_pb.js +768 -0
- package/order_history_paid_order.proto +224 -0
- package/order_history_paid_order_pb.d.ts +1139 -0
- package/order_history_paid_order_pb.js +343 -0
- package/order_history_revamp.proto +107 -0
- package/order_history_revamp_pb.d.ts +577 -0
- package/order_history_revamp_pb.js +164 -0
- package/order_info.proto +74 -0
- package/order_info_pb.d.ts +381 -0
- package/order_info_pb.js +138 -0
- package/package.json +10 -0
- package/paid_product.proto +94 -0
- package/paid_product_order.proto +430 -0
- package/paid_product_order_pb.d.ts +2120 -0
- package/paid_product_order_pb.js +698 -0
- package/paid_product_pb.d.ts +287 -0
- package/paid_product_pb.js +105 -0
- package/rabbit_mq.proto +69 -0
- package/rabbit_mq_pb.d.ts +251 -0
- package/rabbit_mq_pb.js +94 -0
- package/refund_order.proto +195 -0
- package/refund_order_pb.d.ts +1030 -0
- package/refund_order_pb.js +359 -0
- package/scripts/modify_package_json.js +50 -0
- package/service-LogicUniRevOrderService_connectquery.d.ts +638 -0
- package/service-LogicUniRevOrderService_connectquery.js +1014 -0
- package/service.proto +179 -0
- package/service_connect.d.ts +578 -0
- package/service_connect.js +578 -0
|
@@ -0,0 +1,1139 @@
|
|
|
1
|
+
// general
|
|
2
|
+
|
|
3
|
+
// @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
|
|
4
|
+
// @generated from file ct-logic-uni-rev-order/v1/order_history_paid_order.proto (package ct_logic_uni_rev_order.v1, syntax proto3)
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// @ts-nocheck
|
|
7
|
+
|
|
8
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage, Timestamp } from "@bufbuild/protobuf";
|
|
9
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetPaidOrdersFromOrderHistoryByAccountIdRequest
|
|
13
|
+
*/
|
|
14
|
+
export declare class GetPaidOrdersFromOrderHistoryByAccountIdRequest extends Message<GetPaidOrdersFromOrderHistoryByAccountIdRequest> {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from field: string order_type = 1;
|
|
17
|
+
*/
|
|
18
|
+
orderType: string;
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @generated from field: int64 account_id = 2;
|
|
22
|
+
*/
|
|
23
|
+
accountId: bigint;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* @generated from field: int64 limit = 3;
|
|
27
|
+
*/
|
|
28
|
+
limit: bigint;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* @generated from field: int64 offset = 4;
|
|
32
|
+
*/
|
|
33
|
+
offset: bigint;
|
|
34
|
+
|
|
35
|
+
constructor(data?: PartialMessage<GetPaidOrdersFromOrderHistoryByAccountIdRequest>);
|
|
36
|
+
|
|
37
|
+
static readonly runtime: typeof proto3;
|
|
38
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetPaidOrdersFromOrderHistoryByAccountIdRequest";
|
|
39
|
+
static readonly fields: FieldList;
|
|
40
|
+
|
|
41
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPaidOrdersFromOrderHistoryByAccountIdRequest;
|
|
42
|
+
|
|
43
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPaidOrdersFromOrderHistoryByAccountIdRequest;
|
|
44
|
+
|
|
45
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPaidOrdersFromOrderHistoryByAccountIdRequest;
|
|
46
|
+
|
|
47
|
+
static equals(a: GetPaidOrdersFromOrderHistoryByAccountIdRequest | PlainMessage<GetPaidOrdersFromOrderHistoryByAccountIdRequest> | undefined, b: GetPaidOrdersFromOrderHistoryByAccountIdRequest | PlainMessage<GetPaidOrdersFromOrderHistoryByAccountIdRequest> | undefined): boolean;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetPaidOrdersFromOrderHistoryByAccountIdResponse
|
|
52
|
+
*/
|
|
53
|
+
export declare class GetPaidOrdersFromOrderHistoryByAccountIdResponse extends Message<GetPaidOrdersFromOrderHistoryByAccountIdResponse> {
|
|
54
|
+
/**
|
|
55
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.PaidOrder orders = 1;
|
|
56
|
+
*/
|
|
57
|
+
orders: PaidOrder[];
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* @generated from field: int64 total = 2;
|
|
61
|
+
*/
|
|
62
|
+
total: bigint;
|
|
63
|
+
|
|
64
|
+
constructor(data?: PartialMessage<GetPaidOrdersFromOrderHistoryByAccountIdResponse>);
|
|
65
|
+
|
|
66
|
+
static readonly runtime: typeof proto3;
|
|
67
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetPaidOrdersFromOrderHistoryByAccountIdResponse";
|
|
68
|
+
static readonly fields: FieldList;
|
|
69
|
+
|
|
70
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetPaidOrdersFromOrderHistoryByAccountIdResponse;
|
|
71
|
+
|
|
72
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetPaidOrdersFromOrderHistoryByAccountIdResponse;
|
|
73
|
+
|
|
74
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetPaidOrdersFromOrderHistoryByAccountIdResponse;
|
|
75
|
+
|
|
76
|
+
static equals(a: GetPaidOrdersFromOrderHistoryByAccountIdResponse | PlainMessage<GetPaidOrdersFromOrderHistoryByAccountIdResponse> | undefined, b: GetPaidOrdersFromOrderHistoryByAccountIdResponse | PlainMessage<GetPaidOrdersFromOrderHistoryByAccountIdResponse> | undefined): boolean;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* @generated from message ct_logic_uni_rev_order.v1.PaidOrder
|
|
81
|
+
*/
|
|
82
|
+
export declare class PaidOrder extends Message<PaidOrder> {
|
|
83
|
+
/**
|
|
84
|
+
* @generated from field: int64 order_id = 1;
|
|
85
|
+
*/
|
|
86
|
+
orderId: bigint;
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* @generated from field: int64 account_id = 2;
|
|
90
|
+
*/
|
|
91
|
+
accountId: bigint;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* @generated from field: string phone = 3;
|
|
95
|
+
*/
|
|
96
|
+
phone: string;
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* @generated from field: string order_status = 4;
|
|
100
|
+
*/
|
|
101
|
+
orderStatus: string;
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* @generated from field: string order_value = 5;
|
|
105
|
+
*/
|
|
106
|
+
orderValue: string;
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* @generated from field: string source = 6;
|
|
110
|
+
*/
|
|
111
|
+
source: string;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* @generated from field: string unit = 7;
|
|
115
|
+
*/
|
|
116
|
+
unit: string;
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* @generated from field: string payment_code = 8;
|
|
120
|
+
*/
|
|
121
|
+
paymentCode: string;
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* @generated from field: string failed_payment_code = 9;
|
|
125
|
+
*/
|
|
126
|
+
failedPaymentCode: string;
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* @generated from field: string payment_method = 10;
|
|
130
|
+
*/
|
|
131
|
+
paymentMethod: string;
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* @generated from field: string transaction_id = 11;
|
|
135
|
+
*/
|
|
136
|
+
transactionId: string;
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* @generated from field: string order_created = 12;
|
|
140
|
+
*/
|
|
141
|
+
orderCreated: string;
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* @generated from field: string paid_date = 13;
|
|
145
|
+
*/
|
|
146
|
+
paidDate: string;
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* @generated from field: string closed_date = 14;
|
|
150
|
+
*/
|
|
151
|
+
closedDate: string;
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* @generated from field: string order_type = 15;
|
|
155
|
+
*/
|
|
156
|
+
orderType: string;
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* @generated from field: string prefix_price = 16;
|
|
160
|
+
*/
|
|
161
|
+
prefixPrice: string;
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* @generated from field: int64 number_of_services = 17;
|
|
165
|
+
*/
|
|
166
|
+
numberOfServices: bigint;
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* @generated from field: int64 failed_order_id = 18;
|
|
170
|
+
*/
|
|
171
|
+
failedOrderId: bigint;
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* @generated from field: int64 admin_id = 19;
|
|
175
|
+
*/
|
|
176
|
+
adminId: bigint;
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* @generated from field: string order_notes = 20;
|
|
180
|
+
*/
|
|
181
|
+
orderNotes: string;
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* @generated from field: string updated_at = 21;
|
|
185
|
+
*/
|
|
186
|
+
updatedAt: string;
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.ServiceDetail service_details = 22;
|
|
190
|
+
*/
|
|
191
|
+
serviceDetails: ServiceDetail[];
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* @generated from field: string order_title = 23;
|
|
195
|
+
*/
|
|
196
|
+
orderTitle: string;
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* @generated from field: map<int64, string> packages = 24;
|
|
200
|
+
*/
|
|
201
|
+
packages: { [key: string]: string };
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* @generated from field: map<int64, string> list_ads = 25;
|
|
205
|
+
*/
|
|
206
|
+
listAds: { [key: string]: string };
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* @generated from field: string list_ad_id = 26;
|
|
210
|
+
*/
|
|
211
|
+
listAdId: string;
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* @generated from field: string list_service_params = 27;
|
|
215
|
+
*/
|
|
216
|
+
listServiceParams: string;
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* @generated from field: string list_service_type = 28;
|
|
220
|
+
*/
|
|
221
|
+
listServiceType: string;
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* @generated from field: ct_logic_uni_rev_order.v1.CreditOrderHistoryResponse credit_order = 29;
|
|
225
|
+
*/
|
|
226
|
+
creditOrder?: CreditOrderHistoryResponse;
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* @generated from field: int64 total_dongtot_topup = 30;
|
|
230
|
+
*/
|
|
231
|
+
totalDongtotTopup: bigint;
|
|
232
|
+
|
|
233
|
+
constructor(data?: PartialMessage<PaidOrder>);
|
|
234
|
+
|
|
235
|
+
static readonly runtime: typeof proto3;
|
|
236
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.PaidOrder";
|
|
237
|
+
static readonly fields: FieldList;
|
|
238
|
+
|
|
239
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PaidOrder;
|
|
240
|
+
|
|
241
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PaidOrder;
|
|
242
|
+
|
|
243
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PaidOrder;
|
|
244
|
+
|
|
245
|
+
static equals(a: PaidOrder | PlainMessage<PaidOrder> | undefined, b: PaidOrder | PlainMessage<PaidOrder> | undefined): boolean;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* @generated from message ct_logic_uni_rev_order.v1.CreditBizPaidOrder
|
|
250
|
+
*/
|
|
251
|
+
export declare class CreditBizPaidOrder extends Message<CreditBizPaidOrder> {
|
|
252
|
+
/**
|
|
253
|
+
* @generated from field: int64 order_id = 1;
|
|
254
|
+
*/
|
|
255
|
+
orderId: bigint;
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* @generated from field: int64 account_id = 2;
|
|
259
|
+
*/
|
|
260
|
+
accountId: bigint;
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* @generated from field: string phone = 3;
|
|
264
|
+
*/
|
|
265
|
+
phone: string;
|
|
266
|
+
|
|
267
|
+
/**
|
|
268
|
+
* @generated from field: string order_status = 4;
|
|
269
|
+
*/
|
|
270
|
+
orderStatus: string;
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* @generated from field: string value = 5;
|
|
274
|
+
*/
|
|
275
|
+
value: string;
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* @generated from field: string source = 6;
|
|
279
|
+
*/
|
|
280
|
+
source: string;
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* @generated from field: string unit = 7;
|
|
284
|
+
*/
|
|
285
|
+
unit: string;
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* @generated from field: string payment_code = 8;
|
|
289
|
+
*/
|
|
290
|
+
paymentCode: string;
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* @generated from field: string failed_payment_code = 9;
|
|
294
|
+
*/
|
|
295
|
+
failedPaymentCode: string;
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* @generated from field: string services = 10;
|
|
299
|
+
*/
|
|
300
|
+
services: string;
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* @generated from field: string actions = 11;
|
|
304
|
+
*/
|
|
305
|
+
actions: string;
|
|
306
|
+
|
|
307
|
+
/**
|
|
308
|
+
* @generated from field: string payment_method = 12;
|
|
309
|
+
*/
|
|
310
|
+
paymentMethod: string;
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* @generated from field: string transaction_id = 13;
|
|
314
|
+
*/
|
|
315
|
+
transactionId: string;
|
|
316
|
+
|
|
317
|
+
/**
|
|
318
|
+
* @generated from field: string created_date = 14;
|
|
319
|
+
*/
|
|
320
|
+
createdDate: string;
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* @generated from field: string paid_date = 15;
|
|
324
|
+
*/
|
|
325
|
+
paidDate: string;
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* @generated from field: string closed_date = 16;
|
|
329
|
+
*/
|
|
330
|
+
closedDate: string;
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* @generated from field: string order_type = 17;
|
|
334
|
+
*/
|
|
335
|
+
orderType: string;
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* @generated from field: int64 number_of_services = 18;
|
|
339
|
+
*/
|
|
340
|
+
numberOfServices: bigint;
|
|
341
|
+
|
|
342
|
+
/**
|
|
343
|
+
* @generated from field: int64 failed_order_id = 19;
|
|
344
|
+
*/
|
|
345
|
+
failedOrderId: bigint;
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* @generated from field: int64 admin_id = 20;
|
|
349
|
+
*/
|
|
350
|
+
adminId: bigint;
|
|
351
|
+
|
|
352
|
+
/**
|
|
353
|
+
* @generated from field: string order_notes = 21;
|
|
354
|
+
*/
|
|
355
|
+
orderNotes: string;
|
|
356
|
+
|
|
357
|
+
/**
|
|
358
|
+
* @generated from field: string updated_at = 22;
|
|
359
|
+
*/
|
|
360
|
+
updatedAt: string;
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* @generated from field: int64 parent_account_id = 23;
|
|
364
|
+
*/
|
|
365
|
+
parentAccountId: bigint;
|
|
366
|
+
|
|
367
|
+
/**
|
|
368
|
+
* @generated from field: string vertical_creator = 24;
|
|
369
|
+
*/
|
|
370
|
+
verticalCreator: string;
|
|
371
|
+
|
|
372
|
+
constructor(data?: PartialMessage<CreditBizPaidOrder>);
|
|
373
|
+
|
|
374
|
+
static readonly runtime: typeof proto3;
|
|
375
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CreditBizPaidOrder";
|
|
376
|
+
static readonly fields: FieldList;
|
|
377
|
+
|
|
378
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreditBizPaidOrder;
|
|
379
|
+
|
|
380
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreditBizPaidOrder;
|
|
381
|
+
|
|
382
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreditBizPaidOrder;
|
|
383
|
+
|
|
384
|
+
static equals(a: CreditBizPaidOrder | PlainMessage<CreditBizPaidOrder> | undefined, b: CreditBizPaidOrder | PlainMessage<CreditBizPaidOrder> | undefined): boolean;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
/**
|
|
388
|
+
* @generated from message ct_logic_uni_rev_order.v1.ServiceDetail
|
|
389
|
+
*/
|
|
390
|
+
export declare class ServiceDetail extends Message<ServiceDetail> {
|
|
391
|
+
/**
|
|
392
|
+
* @generated from field: string updated_at = 1;
|
|
393
|
+
*/
|
|
394
|
+
updatedAt: string;
|
|
395
|
+
|
|
396
|
+
/**
|
|
397
|
+
* @generated from field: int64 service_id = 2;
|
|
398
|
+
*/
|
|
399
|
+
serviceId: bigint;
|
|
400
|
+
|
|
401
|
+
/**
|
|
402
|
+
* @generated from field: int64 ad_id = 3;
|
|
403
|
+
*/
|
|
404
|
+
adId: bigint;
|
|
405
|
+
|
|
406
|
+
/**
|
|
407
|
+
* @generated from field: string type = 4;
|
|
408
|
+
*/
|
|
409
|
+
type: string;
|
|
410
|
+
|
|
411
|
+
/**
|
|
412
|
+
* @generated from field: string service_status = 5;
|
|
413
|
+
*/
|
|
414
|
+
serviceStatus: string;
|
|
415
|
+
|
|
416
|
+
/**
|
|
417
|
+
* @generated from field: string service_params = 6;
|
|
418
|
+
*/
|
|
419
|
+
serviceParams: string;
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* @generated from field: string expected_delivery_time = 7;
|
|
423
|
+
*/
|
|
424
|
+
expectedDeliveryTime: string;
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* @generated from field: string delivery_time = 8;
|
|
428
|
+
*/
|
|
429
|
+
deliveryTime: string;
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* @generated from field: int64 price = 9;
|
|
433
|
+
*/
|
|
434
|
+
price: bigint;
|
|
435
|
+
|
|
436
|
+
constructor(data?: PartialMessage<ServiceDetail>);
|
|
437
|
+
|
|
438
|
+
static readonly runtime: typeof proto3;
|
|
439
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ServiceDetail";
|
|
440
|
+
static readonly fields: FieldList;
|
|
441
|
+
|
|
442
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ServiceDetail;
|
|
443
|
+
|
|
444
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ServiceDetail;
|
|
445
|
+
|
|
446
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ServiceDetail;
|
|
447
|
+
|
|
448
|
+
static equals(a: ServiceDetail | PlainMessage<ServiceDetail> | undefined, b: ServiceDetail | PlainMessage<ServiceDetail> | undefined): boolean;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
/**
|
|
452
|
+
* @generated from message ct_logic_uni_rev_order.v1.CreditOrderHistoryResponse
|
|
453
|
+
*/
|
|
454
|
+
export declare class CreditOrderHistoryResponse extends Message<CreditOrderHistoryResponse> {
|
|
455
|
+
/**
|
|
456
|
+
* @generated from field: string account_type = 1;
|
|
457
|
+
*/
|
|
458
|
+
accountType: string;
|
|
459
|
+
|
|
460
|
+
/**
|
|
461
|
+
* @generated from field: int64 order_id = 2;
|
|
462
|
+
*/
|
|
463
|
+
orderId: bigint;
|
|
464
|
+
|
|
465
|
+
/**
|
|
466
|
+
* @generated from field: string order_type = 3;
|
|
467
|
+
*/
|
|
468
|
+
orderType: string;
|
|
469
|
+
|
|
470
|
+
/**
|
|
471
|
+
* @generated from field: int64 service_id = 4;
|
|
472
|
+
*/
|
|
473
|
+
serviceId: bigint;
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* @generated from field: string platform = 5;
|
|
477
|
+
*/
|
|
478
|
+
platform: string;
|
|
479
|
+
|
|
480
|
+
/**
|
|
481
|
+
* @generated from field: int64 created_time = 6;
|
|
482
|
+
*/
|
|
483
|
+
createdTime: bigint;
|
|
484
|
+
|
|
485
|
+
/**
|
|
486
|
+
* @generated from field: string order_status = 7;
|
|
487
|
+
*/
|
|
488
|
+
orderStatus: string;
|
|
489
|
+
|
|
490
|
+
/**
|
|
491
|
+
* @generated from field: int64 amount = 8;
|
|
492
|
+
*/
|
|
493
|
+
amount: bigint;
|
|
494
|
+
|
|
495
|
+
constructor(data?: PartialMessage<CreditOrderHistoryResponse>);
|
|
496
|
+
|
|
497
|
+
static readonly runtime: typeof proto3;
|
|
498
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CreditOrderHistoryResponse";
|
|
499
|
+
static readonly fields: FieldList;
|
|
500
|
+
|
|
501
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreditOrderHistoryResponse;
|
|
502
|
+
|
|
503
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreditOrderHistoryResponse;
|
|
504
|
+
|
|
505
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreditOrderHistoryResponse;
|
|
506
|
+
|
|
507
|
+
static equals(a: CreditOrderHistoryResponse | PlainMessage<CreditOrderHistoryResponse> | undefined, b: CreditOrderHistoryResponse | PlainMessage<CreditOrderHistoryResponse> | undefined): boolean;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
/**
|
|
511
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetCreditBizPaidOrdersByParamsRequest
|
|
512
|
+
*/
|
|
513
|
+
export declare class GetCreditBizPaidOrdersByParamsRequest extends Message<GetCreditBizPaidOrdersByParamsRequest> {
|
|
514
|
+
/**
|
|
515
|
+
* @generated from field: int64 parent_account_id = 1;
|
|
516
|
+
*/
|
|
517
|
+
parentAccountId: bigint;
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* @generated from field: string phone = 2;
|
|
521
|
+
*/
|
|
522
|
+
phone: string;
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* @generated from field: optional google.protobuf.Timestamp from = 3;
|
|
526
|
+
*/
|
|
527
|
+
from?: Timestamp;
|
|
528
|
+
|
|
529
|
+
/**
|
|
530
|
+
* @generated from field: optional google.protobuf.Timestamp to = 4;
|
|
531
|
+
*/
|
|
532
|
+
to?: Timestamp;
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* @generated from field: int64 limit = 5;
|
|
536
|
+
*/
|
|
537
|
+
limit: bigint;
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* @generated from field: int64 offset = 6;
|
|
541
|
+
*/
|
|
542
|
+
offset: bigint;
|
|
543
|
+
|
|
544
|
+
constructor(data?: PartialMessage<GetCreditBizPaidOrdersByParamsRequest>);
|
|
545
|
+
|
|
546
|
+
static readonly runtime: typeof proto3;
|
|
547
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetCreditBizPaidOrdersByParamsRequest";
|
|
548
|
+
static readonly fields: FieldList;
|
|
549
|
+
|
|
550
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCreditBizPaidOrdersByParamsRequest;
|
|
551
|
+
|
|
552
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCreditBizPaidOrdersByParamsRequest;
|
|
553
|
+
|
|
554
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCreditBizPaidOrdersByParamsRequest;
|
|
555
|
+
|
|
556
|
+
static equals(a: GetCreditBizPaidOrdersByParamsRequest | PlainMessage<GetCreditBizPaidOrdersByParamsRequest> | undefined, b: GetCreditBizPaidOrdersByParamsRequest | PlainMessage<GetCreditBizPaidOrdersByParamsRequest> | undefined): boolean;
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetCreditBizPaidOrdersByParamsResponse
|
|
561
|
+
*/
|
|
562
|
+
export declare class GetCreditBizPaidOrdersByParamsResponse extends Message<GetCreditBizPaidOrdersByParamsResponse> {
|
|
563
|
+
/**
|
|
564
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.CreditBizPaidOrder data = 1;
|
|
565
|
+
*/
|
|
566
|
+
data: CreditBizPaidOrder[];
|
|
567
|
+
|
|
568
|
+
/**
|
|
569
|
+
* @generated from field: int64 total = 2;
|
|
570
|
+
*/
|
|
571
|
+
total: bigint;
|
|
572
|
+
|
|
573
|
+
constructor(data?: PartialMessage<GetCreditBizPaidOrdersByParamsResponse>);
|
|
574
|
+
|
|
575
|
+
static readonly runtime: typeof proto3;
|
|
576
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetCreditBizPaidOrdersByParamsResponse";
|
|
577
|
+
static readonly fields: FieldList;
|
|
578
|
+
|
|
579
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCreditBizPaidOrdersByParamsResponse;
|
|
580
|
+
|
|
581
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCreditBizPaidOrdersByParamsResponse;
|
|
582
|
+
|
|
583
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCreditBizPaidOrdersByParamsResponse;
|
|
584
|
+
|
|
585
|
+
static equals(a: GetCreditBizPaidOrdersByParamsResponse | PlainMessage<GetCreditBizPaidOrdersByParamsResponse> | undefined, b: GetCreditBizPaidOrdersByParamsResponse | PlainMessage<GetCreditBizPaidOrdersByParamsResponse> | undefined): boolean;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
/**
|
|
589
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetCreditBizPaidOrdersWithServiceDetailRequest
|
|
590
|
+
*/
|
|
591
|
+
export declare class GetCreditBizPaidOrdersWithServiceDetailRequest extends Message<GetCreditBizPaidOrdersWithServiceDetailRequest> {
|
|
592
|
+
/**
|
|
593
|
+
* @generated from field: int64 parent_account_id = 1;
|
|
594
|
+
*/
|
|
595
|
+
parentAccountId: bigint;
|
|
596
|
+
|
|
597
|
+
/**
|
|
598
|
+
* @generated from field: string child_account_ids = 2;
|
|
599
|
+
*/
|
|
600
|
+
childAccountIds: string;
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* @generated from field: optional google.protobuf.Timestamp from = 3;
|
|
604
|
+
*/
|
|
605
|
+
from?: Timestamp;
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* @generated from field: optional google.protobuf.Timestamp to = 4;
|
|
609
|
+
*/
|
|
610
|
+
to?: Timestamp;
|
|
611
|
+
|
|
612
|
+
/**
|
|
613
|
+
* @generated from field: int64 limit = 5;
|
|
614
|
+
*/
|
|
615
|
+
limit: bigint;
|
|
616
|
+
|
|
617
|
+
/**
|
|
618
|
+
* @generated from field: int64 offset = 6;
|
|
619
|
+
*/
|
|
620
|
+
offset: bigint;
|
|
621
|
+
|
|
622
|
+
constructor(data?: PartialMessage<GetCreditBizPaidOrdersWithServiceDetailRequest>);
|
|
623
|
+
|
|
624
|
+
static readonly runtime: typeof proto3;
|
|
625
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetCreditBizPaidOrdersWithServiceDetailRequest";
|
|
626
|
+
static readonly fields: FieldList;
|
|
627
|
+
|
|
628
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCreditBizPaidOrdersWithServiceDetailRequest;
|
|
629
|
+
|
|
630
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCreditBizPaidOrdersWithServiceDetailRequest;
|
|
631
|
+
|
|
632
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCreditBizPaidOrdersWithServiceDetailRequest;
|
|
633
|
+
|
|
634
|
+
static equals(a: GetCreditBizPaidOrdersWithServiceDetailRequest | PlainMessage<GetCreditBizPaidOrdersWithServiceDetailRequest> | undefined, b: GetCreditBizPaidOrdersWithServiceDetailRequest | PlainMessage<GetCreditBizPaidOrdersWithServiceDetailRequest> | undefined): boolean;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetCreditBizPaidOrdersWithServiceDetailResponse
|
|
639
|
+
*/
|
|
640
|
+
export declare class GetCreditBizPaidOrdersWithServiceDetailResponse extends Message<GetCreditBizPaidOrdersWithServiceDetailResponse> {
|
|
641
|
+
/**
|
|
642
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.PaidOrder data = 1;
|
|
643
|
+
*/
|
|
644
|
+
data: PaidOrder[];
|
|
645
|
+
|
|
646
|
+
/**
|
|
647
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.ChildAccountInfo child_accounts = 2;
|
|
648
|
+
*/
|
|
649
|
+
childAccounts: ChildAccountInfo[];
|
|
650
|
+
|
|
651
|
+
/**
|
|
652
|
+
* @generated from field: int64 total_orders = 3;
|
|
653
|
+
*/
|
|
654
|
+
totalOrders: bigint;
|
|
655
|
+
|
|
656
|
+
/**
|
|
657
|
+
* @generated from field: int64 total_amount = 4;
|
|
658
|
+
*/
|
|
659
|
+
totalAmount: bigint;
|
|
660
|
+
|
|
661
|
+
constructor(data?: PartialMessage<GetCreditBizPaidOrdersWithServiceDetailResponse>);
|
|
662
|
+
|
|
663
|
+
static readonly runtime: typeof proto3;
|
|
664
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetCreditBizPaidOrdersWithServiceDetailResponse";
|
|
665
|
+
static readonly fields: FieldList;
|
|
666
|
+
|
|
667
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCreditBizPaidOrdersWithServiceDetailResponse;
|
|
668
|
+
|
|
669
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCreditBizPaidOrdersWithServiceDetailResponse;
|
|
670
|
+
|
|
671
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCreditBizPaidOrdersWithServiceDetailResponse;
|
|
672
|
+
|
|
673
|
+
static equals(a: GetCreditBizPaidOrdersWithServiceDetailResponse | PlainMessage<GetCreditBizPaidOrdersWithServiceDetailResponse> | undefined, b: GetCreditBizPaidOrdersWithServiceDetailResponse | PlainMessage<GetCreditBizPaidOrdersWithServiceDetailResponse> | undefined): boolean;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
/**
|
|
677
|
+
* @generated from message ct_logic_uni_rev_order.v1.ChildAccountInfo
|
|
678
|
+
*/
|
|
679
|
+
export declare class ChildAccountInfo extends Message<ChildAccountInfo> {
|
|
680
|
+
/**
|
|
681
|
+
* @generated from field: int64 account_id = 1;
|
|
682
|
+
*/
|
|
683
|
+
accountId: bigint;
|
|
684
|
+
|
|
685
|
+
/**
|
|
686
|
+
* @generated from field: string phone = 2;
|
|
687
|
+
*/
|
|
688
|
+
phone: string;
|
|
689
|
+
|
|
690
|
+
/**
|
|
691
|
+
* @generated from field: string name = 3;
|
|
692
|
+
*/
|
|
693
|
+
name: string;
|
|
694
|
+
|
|
695
|
+
constructor(data?: PartialMessage<ChildAccountInfo>);
|
|
696
|
+
|
|
697
|
+
static readonly runtime: typeof proto3;
|
|
698
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ChildAccountInfo";
|
|
699
|
+
static readonly fields: FieldList;
|
|
700
|
+
|
|
701
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ChildAccountInfo;
|
|
702
|
+
|
|
703
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ChildAccountInfo;
|
|
704
|
+
|
|
705
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ChildAccountInfo;
|
|
706
|
+
|
|
707
|
+
static equals(a: ChildAccountInfo | PlainMessage<ChildAccountInfo> | undefined, b: ChildAccountInfo | PlainMessage<ChildAccountInfo> | undefined): boolean;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
/**
|
|
711
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetCreditBizCostWithParamsRequest
|
|
712
|
+
*/
|
|
713
|
+
export declare class GetCreditBizCostWithParamsRequest extends Message<GetCreditBizCostWithParamsRequest> {
|
|
714
|
+
/**
|
|
715
|
+
* @generated from field: int64 parent_account_id = 1;
|
|
716
|
+
*/
|
|
717
|
+
parentAccountId: bigint;
|
|
718
|
+
|
|
719
|
+
/**
|
|
720
|
+
* @generated from field: int64 child_account_id = 2;
|
|
721
|
+
*/
|
|
722
|
+
childAccountId: bigint;
|
|
723
|
+
|
|
724
|
+
/**
|
|
725
|
+
* @generated from field: optional google.protobuf.Timestamp from = 3;
|
|
726
|
+
*/
|
|
727
|
+
from?: Timestamp;
|
|
728
|
+
|
|
729
|
+
/**
|
|
730
|
+
* @generated from field: optional google.protobuf.Timestamp to = 4;
|
|
731
|
+
*/
|
|
732
|
+
to?: Timestamp;
|
|
733
|
+
|
|
734
|
+
/**
|
|
735
|
+
* @generated from field: int64 limit = 5;
|
|
736
|
+
*/
|
|
737
|
+
limit: bigint;
|
|
738
|
+
|
|
739
|
+
/**
|
|
740
|
+
* @generated from field: int64 offset = 6;
|
|
741
|
+
*/
|
|
742
|
+
offset: bigint;
|
|
743
|
+
|
|
744
|
+
/**
|
|
745
|
+
* @generated from field: string child_account_ids = 7;
|
|
746
|
+
*/
|
|
747
|
+
childAccountIds: string;
|
|
748
|
+
|
|
749
|
+
constructor(data?: PartialMessage<GetCreditBizCostWithParamsRequest>);
|
|
750
|
+
|
|
751
|
+
static readonly runtime: typeof proto3;
|
|
752
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetCreditBizCostWithParamsRequest";
|
|
753
|
+
static readonly fields: FieldList;
|
|
754
|
+
|
|
755
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCreditBizCostWithParamsRequest;
|
|
756
|
+
|
|
757
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCreditBizCostWithParamsRequest;
|
|
758
|
+
|
|
759
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCreditBizCostWithParamsRequest;
|
|
760
|
+
|
|
761
|
+
static equals(a: GetCreditBizCostWithParamsRequest | PlainMessage<GetCreditBizCostWithParamsRequest> | undefined, b: GetCreditBizCostWithParamsRequest | PlainMessage<GetCreditBizCostWithParamsRequest> | undefined): boolean;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
/**
|
|
765
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetCreditBizCostWithParamsResponse
|
|
766
|
+
*/
|
|
767
|
+
export declare class GetCreditBizCostWithParamsResponse extends Message<GetCreditBizCostWithParamsResponse> {
|
|
768
|
+
/**
|
|
769
|
+
* @generated from field: ct_logic_uni_rev_order.v1.BizCost cost = 1;
|
|
770
|
+
*/
|
|
771
|
+
cost?: BizCost;
|
|
772
|
+
|
|
773
|
+
/**
|
|
774
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.ChildAccountWithExpiredDate staffs = 2;
|
|
775
|
+
*/
|
|
776
|
+
staffs: ChildAccountWithExpiredDate[];
|
|
777
|
+
|
|
778
|
+
/**
|
|
779
|
+
* @generated from field: int64 number_of_childs = 3;
|
|
780
|
+
*/
|
|
781
|
+
numberOfChilds: bigint;
|
|
782
|
+
|
|
783
|
+
constructor(data?: PartialMessage<GetCreditBizCostWithParamsResponse>);
|
|
784
|
+
|
|
785
|
+
static readonly runtime: typeof proto3;
|
|
786
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetCreditBizCostWithParamsResponse";
|
|
787
|
+
static readonly fields: FieldList;
|
|
788
|
+
|
|
789
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetCreditBizCostWithParamsResponse;
|
|
790
|
+
|
|
791
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetCreditBizCostWithParamsResponse;
|
|
792
|
+
|
|
793
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetCreditBizCostWithParamsResponse;
|
|
794
|
+
|
|
795
|
+
static equals(a: GetCreditBizCostWithParamsResponse | PlainMessage<GetCreditBizCostWithParamsResponse> | undefined, b: GetCreditBizCostWithParamsResponse | PlainMessage<GetCreditBizCostWithParamsResponse> | undefined): boolean;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
/**
|
|
799
|
+
* @generated from message ct_logic_uni_rev_order.v1.BizCost
|
|
800
|
+
*/
|
|
801
|
+
export declare class BizCost extends Message<BizCost> {
|
|
802
|
+
/**
|
|
803
|
+
* @generated from field: int64 total = 1;
|
|
804
|
+
*/
|
|
805
|
+
total: bigint;
|
|
806
|
+
|
|
807
|
+
/**
|
|
808
|
+
* @generated from field: int64 parent = 2;
|
|
809
|
+
*/
|
|
810
|
+
parent: bigint;
|
|
811
|
+
|
|
812
|
+
/**
|
|
813
|
+
* @generated from field: int64 staff = 3;
|
|
814
|
+
*/
|
|
815
|
+
staff: bigint;
|
|
816
|
+
|
|
817
|
+
constructor(data?: PartialMessage<BizCost>);
|
|
818
|
+
|
|
819
|
+
static readonly runtime: typeof proto3;
|
|
820
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.BizCost";
|
|
821
|
+
static readonly fields: FieldList;
|
|
822
|
+
|
|
823
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BizCost;
|
|
824
|
+
|
|
825
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BizCost;
|
|
826
|
+
|
|
827
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BizCost;
|
|
828
|
+
|
|
829
|
+
static equals(a: BizCost | PlainMessage<BizCost> | undefined, b: BizCost | PlainMessage<BizCost> | undefined): boolean;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
/**
|
|
833
|
+
* @generated from message ct_logic_uni_rev_order.v1.ChildAccountWithExpiredDate
|
|
834
|
+
*/
|
|
835
|
+
export declare class ChildAccountWithExpiredDate extends Message<ChildAccountWithExpiredDate> {
|
|
836
|
+
/**
|
|
837
|
+
* @generated from field: int64 account_id = 1;
|
|
838
|
+
*/
|
|
839
|
+
accountId: bigint;
|
|
840
|
+
|
|
841
|
+
/**
|
|
842
|
+
* @generated from field: string status = 2;
|
|
843
|
+
*/
|
|
844
|
+
status: string;
|
|
845
|
+
|
|
846
|
+
/**
|
|
847
|
+
* @generated from field: string expired_at = 3;
|
|
848
|
+
*/
|
|
849
|
+
expiredAt: string;
|
|
850
|
+
|
|
851
|
+
/**
|
|
852
|
+
* @generated from field: string name = 4;
|
|
853
|
+
*/
|
|
854
|
+
name: string;
|
|
855
|
+
|
|
856
|
+
/**
|
|
857
|
+
* @generated from field: string phone = 5;
|
|
858
|
+
*/
|
|
859
|
+
phone: string;
|
|
860
|
+
|
|
861
|
+
/**
|
|
862
|
+
* @generated from field: int64 amount = 6;
|
|
863
|
+
*/
|
|
864
|
+
amount: bigint;
|
|
865
|
+
|
|
866
|
+
constructor(data?: PartialMessage<ChildAccountWithExpiredDate>);
|
|
867
|
+
|
|
868
|
+
static readonly runtime: typeof proto3;
|
|
869
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ChildAccountWithExpiredDate";
|
|
870
|
+
static readonly fields: FieldList;
|
|
871
|
+
|
|
872
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ChildAccountWithExpiredDate;
|
|
873
|
+
|
|
874
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ChildAccountWithExpiredDate;
|
|
875
|
+
|
|
876
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ChildAccountWithExpiredDate;
|
|
877
|
+
|
|
878
|
+
static equals(a: ChildAccountWithExpiredDate | PlainMessage<ChildAccountWithExpiredDate> | undefined, b: ChildAccountWithExpiredDate | PlainMessage<ChildAccountWithExpiredDate> | undefined): boolean;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
/**
|
|
882
|
+
* @generated from message ct_logic_uni_rev_order.v1.PaidOrderWithDetailServiceParam
|
|
883
|
+
*/
|
|
884
|
+
export declare class PaidOrderWithDetailServiceParam extends Message<PaidOrderWithDetailServiceParam> {
|
|
885
|
+
/**
|
|
886
|
+
* @generated from field: int64 order_id = 1;
|
|
887
|
+
*/
|
|
888
|
+
orderId: bigint;
|
|
889
|
+
|
|
890
|
+
/**
|
|
891
|
+
* @generated from field: int64 account_id = 2;
|
|
892
|
+
*/
|
|
893
|
+
accountId: bigint;
|
|
894
|
+
|
|
895
|
+
/**
|
|
896
|
+
* @generated from field: string phone = 3;
|
|
897
|
+
*/
|
|
898
|
+
phone: string;
|
|
899
|
+
|
|
900
|
+
/**
|
|
901
|
+
* @generated from field: string order_status = 4;
|
|
902
|
+
*/
|
|
903
|
+
orderStatus: string;
|
|
904
|
+
|
|
905
|
+
/**
|
|
906
|
+
* @generated from field: string order_value = 5;
|
|
907
|
+
*/
|
|
908
|
+
orderValue: string;
|
|
909
|
+
|
|
910
|
+
/**
|
|
911
|
+
* @generated from field: string payment_method = 6;
|
|
912
|
+
*/
|
|
913
|
+
paymentMethod: string;
|
|
914
|
+
|
|
915
|
+
/**
|
|
916
|
+
* @generated from field: string transaction_id = 7;
|
|
917
|
+
*/
|
|
918
|
+
transactionId: string;
|
|
919
|
+
|
|
920
|
+
/**
|
|
921
|
+
* @generated from field: string order_created = 8;
|
|
922
|
+
*/
|
|
923
|
+
orderCreated: string;
|
|
924
|
+
|
|
925
|
+
/**
|
|
926
|
+
* @generated from field: string paid_date = 9;
|
|
927
|
+
*/
|
|
928
|
+
paidDate: string;
|
|
929
|
+
|
|
930
|
+
/**
|
|
931
|
+
* @generated from field: string closed_date = 10;
|
|
932
|
+
*/
|
|
933
|
+
closedDate: string;
|
|
934
|
+
|
|
935
|
+
/**
|
|
936
|
+
* @generated from field: string order_type = 11;
|
|
937
|
+
*/
|
|
938
|
+
orderType: string;
|
|
939
|
+
|
|
940
|
+
/**
|
|
941
|
+
* @generated from field: int64 number_of_services = 12;
|
|
942
|
+
*/
|
|
943
|
+
numberOfServices: bigint;
|
|
944
|
+
|
|
945
|
+
/**
|
|
946
|
+
* @generated from field: int64 failed_order_id = 13;
|
|
947
|
+
*/
|
|
948
|
+
failedOrderId: bigint;
|
|
949
|
+
|
|
950
|
+
/**
|
|
951
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.ServiceIdWithDetailParam services = 14;
|
|
952
|
+
*/
|
|
953
|
+
services: ServiceIdWithDetailParam[];
|
|
954
|
+
|
|
955
|
+
constructor(data?: PartialMessage<PaidOrderWithDetailServiceParam>);
|
|
956
|
+
|
|
957
|
+
static readonly runtime: typeof proto3;
|
|
958
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.PaidOrderWithDetailServiceParam";
|
|
959
|
+
static readonly fields: FieldList;
|
|
960
|
+
|
|
961
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PaidOrderWithDetailServiceParam;
|
|
962
|
+
|
|
963
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PaidOrderWithDetailServiceParam;
|
|
964
|
+
|
|
965
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PaidOrderWithDetailServiceParam;
|
|
966
|
+
|
|
967
|
+
static equals(a: PaidOrderWithDetailServiceParam | PlainMessage<PaidOrderWithDetailServiceParam> | undefined, b: PaidOrderWithDetailServiceParam | PlainMessage<PaidOrderWithDetailServiceParam> | undefined): boolean;
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
/**
|
|
971
|
+
* @generated from message ct_logic_uni_rev_order.v1.ServiceIdWithDetailParam
|
|
972
|
+
*/
|
|
973
|
+
export declare class ServiceIdWithDetailParam extends Message<ServiceIdWithDetailParam> {
|
|
974
|
+
/**
|
|
975
|
+
* @generated from field: int64 service_id = 1;
|
|
976
|
+
*/
|
|
977
|
+
serviceId: bigint;
|
|
978
|
+
|
|
979
|
+
/**
|
|
980
|
+
* @generated from field: int64 category_id = 2;
|
|
981
|
+
*/
|
|
982
|
+
categoryId: bigint;
|
|
983
|
+
|
|
984
|
+
/**
|
|
985
|
+
* @generated from field: int64 duration = 3;
|
|
986
|
+
*/
|
|
987
|
+
duration: bigint;
|
|
988
|
+
|
|
989
|
+
/**
|
|
990
|
+
* @generated from field: string phone = 4;
|
|
991
|
+
*/
|
|
992
|
+
phone: string;
|
|
993
|
+
|
|
994
|
+
/**
|
|
995
|
+
* @generated from field: string type = 5;
|
|
996
|
+
*/
|
|
997
|
+
type: string;
|
|
998
|
+
|
|
999
|
+
/**
|
|
1000
|
+
* @generated from field: string shop_alias = 6;
|
|
1001
|
+
*/
|
|
1002
|
+
shopAlias: string;
|
|
1003
|
+
|
|
1004
|
+
/**
|
|
1005
|
+
* @generated from field: int64 subscription_id = 7;
|
|
1006
|
+
*/
|
|
1007
|
+
subscriptionId: bigint;
|
|
1008
|
+
|
|
1009
|
+
/**
|
|
1010
|
+
* @generated from field: int64 ad_id = 8;
|
|
1011
|
+
*/
|
|
1012
|
+
adId: bigint;
|
|
1013
|
+
|
|
1014
|
+
/**
|
|
1015
|
+
* @generated from field: int64 price = 9;
|
|
1016
|
+
*/
|
|
1017
|
+
price: bigint;
|
|
1018
|
+
|
|
1019
|
+
constructor(data?: PartialMessage<ServiceIdWithDetailParam>);
|
|
1020
|
+
|
|
1021
|
+
static readonly runtime: typeof proto3;
|
|
1022
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ServiceIdWithDetailParam";
|
|
1023
|
+
static readonly fields: FieldList;
|
|
1024
|
+
|
|
1025
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ServiceIdWithDetailParam;
|
|
1026
|
+
|
|
1027
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ServiceIdWithDetailParam;
|
|
1028
|
+
|
|
1029
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ServiceIdWithDetailParam;
|
|
1030
|
+
|
|
1031
|
+
static equals(a: ServiceIdWithDetailParam | PlainMessage<ServiceIdWithDetailParam> | undefined, b: ServiceIdWithDetailParam | PlainMessage<ServiceIdWithDetailParam> | undefined): boolean;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
/**
|
|
1035
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetListOrdersByAccountIdAndOrderTypeRequest
|
|
1036
|
+
*/
|
|
1037
|
+
export declare class GetListOrdersByAccountIdAndOrderTypeRequest extends Message<GetListOrdersByAccountIdAndOrderTypeRequest> {
|
|
1038
|
+
/**
|
|
1039
|
+
* @generated from field: int64 limit = 1;
|
|
1040
|
+
*/
|
|
1041
|
+
limit: bigint;
|
|
1042
|
+
|
|
1043
|
+
/**
|
|
1044
|
+
* @generated from field: int64 offset = 2;
|
|
1045
|
+
*/
|
|
1046
|
+
offset: bigint;
|
|
1047
|
+
|
|
1048
|
+
/**
|
|
1049
|
+
* @generated from field: int64 account_id = 3;
|
|
1050
|
+
*/
|
|
1051
|
+
accountId: bigint;
|
|
1052
|
+
|
|
1053
|
+
/**
|
|
1054
|
+
* @generated from field: repeated string order_type = 4;
|
|
1055
|
+
*/
|
|
1056
|
+
orderType: string[];
|
|
1057
|
+
|
|
1058
|
+
constructor(data?: PartialMessage<GetListOrdersByAccountIdAndOrderTypeRequest>);
|
|
1059
|
+
|
|
1060
|
+
static readonly runtime: typeof proto3;
|
|
1061
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetListOrdersByAccountIdAndOrderTypeRequest";
|
|
1062
|
+
static readonly fields: FieldList;
|
|
1063
|
+
|
|
1064
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetListOrdersByAccountIdAndOrderTypeRequest;
|
|
1065
|
+
|
|
1066
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetListOrdersByAccountIdAndOrderTypeRequest;
|
|
1067
|
+
|
|
1068
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetListOrdersByAccountIdAndOrderTypeRequest;
|
|
1069
|
+
|
|
1070
|
+
static equals(a: GetListOrdersByAccountIdAndOrderTypeRequest | PlainMessage<GetListOrdersByAccountIdAndOrderTypeRequest> | undefined, b: GetListOrdersByAccountIdAndOrderTypeRequest | PlainMessage<GetListOrdersByAccountIdAndOrderTypeRequest> | undefined): boolean;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
/**
|
|
1074
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetListOrdersByAccountIdAndOrderTypeResponse
|
|
1075
|
+
*/
|
|
1076
|
+
export declare class GetListOrdersByAccountIdAndOrderTypeResponse extends Message<GetListOrdersByAccountIdAndOrderTypeResponse> {
|
|
1077
|
+
/**
|
|
1078
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.PaidOrderWithDetailServiceParam data = 1;
|
|
1079
|
+
*/
|
|
1080
|
+
data: PaidOrderWithDetailServiceParam[];
|
|
1081
|
+
|
|
1082
|
+
constructor(data?: PartialMessage<GetListOrdersByAccountIdAndOrderTypeResponse>);
|
|
1083
|
+
|
|
1084
|
+
static readonly runtime: typeof proto3;
|
|
1085
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetListOrdersByAccountIdAndOrderTypeResponse";
|
|
1086
|
+
static readonly fields: FieldList;
|
|
1087
|
+
|
|
1088
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetListOrdersByAccountIdAndOrderTypeResponse;
|
|
1089
|
+
|
|
1090
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetListOrdersByAccountIdAndOrderTypeResponse;
|
|
1091
|
+
|
|
1092
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetListOrdersByAccountIdAndOrderTypeResponse;
|
|
1093
|
+
|
|
1094
|
+
static equals(a: GetListOrdersByAccountIdAndOrderTypeResponse | PlainMessage<GetListOrdersByAccountIdAndOrderTypeResponse> | undefined, b: GetListOrdersByAccountIdAndOrderTypeResponse | PlainMessage<GetListOrdersByAccountIdAndOrderTypeResponse> | undefined): boolean;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
/**
|
|
1098
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetListServiceTypeToFilterBORequest
|
|
1099
|
+
*/
|
|
1100
|
+
export declare class GetListServiceTypeToFilterBORequest extends Message<GetListServiceTypeToFilterBORequest> {
|
|
1101
|
+
constructor(data?: PartialMessage<GetListServiceTypeToFilterBORequest>);
|
|
1102
|
+
|
|
1103
|
+
static readonly runtime: typeof proto3;
|
|
1104
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetListServiceTypeToFilterBORequest";
|
|
1105
|
+
static readonly fields: FieldList;
|
|
1106
|
+
|
|
1107
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetListServiceTypeToFilterBORequest;
|
|
1108
|
+
|
|
1109
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetListServiceTypeToFilterBORequest;
|
|
1110
|
+
|
|
1111
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetListServiceTypeToFilterBORequest;
|
|
1112
|
+
|
|
1113
|
+
static equals(a: GetListServiceTypeToFilterBORequest | PlainMessage<GetListServiceTypeToFilterBORequest> | undefined, b: GetListServiceTypeToFilterBORequest | PlainMessage<GetListServiceTypeToFilterBORequest> | undefined): boolean;
|
|
1114
|
+
}
|
|
1115
|
+
|
|
1116
|
+
/**
|
|
1117
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetListServiceTypeToFilterBOResponse
|
|
1118
|
+
*/
|
|
1119
|
+
export declare class GetListServiceTypeToFilterBOResponse extends Message<GetListServiceTypeToFilterBOResponse> {
|
|
1120
|
+
/**
|
|
1121
|
+
* @generated from field: repeated string data = 1;
|
|
1122
|
+
*/
|
|
1123
|
+
data: string[];
|
|
1124
|
+
|
|
1125
|
+
constructor(data?: PartialMessage<GetListServiceTypeToFilterBOResponse>);
|
|
1126
|
+
|
|
1127
|
+
static readonly runtime: typeof proto3;
|
|
1128
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetListServiceTypeToFilterBOResponse";
|
|
1129
|
+
static readonly fields: FieldList;
|
|
1130
|
+
|
|
1131
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetListServiceTypeToFilterBOResponse;
|
|
1132
|
+
|
|
1133
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetListServiceTypeToFilterBOResponse;
|
|
1134
|
+
|
|
1135
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetListServiceTypeToFilterBOResponse;
|
|
1136
|
+
|
|
1137
|
+
static equals(a: GetListServiceTypeToFilterBOResponse | PlainMessage<GetListServiceTypeToFilterBOResponse> | undefined, b: GetListServiceTypeToFilterBOResponse | PlainMessage<GetListServiceTypeToFilterBOResponse> | undefined): boolean;
|
|
1138
|
+
}
|
|
1139
|
+
|