@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,1030 @@
|
|
|
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/refund_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 } from "@bufbuild/protobuf";
|
|
9
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* buf:lint:ignore FIELD_LOWER_SNAKE_CASE
|
|
13
|
+
* legacy kM field name
|
|
14
|
+
*
|
|
15
|
+
* @generated from message ct_logic_uni_rev_order.v1.CreateManualRefundOrderRequest
|
|
16
|
+
*/
|
|
17
|
+
export declare class CreateManualRefundOrderRequest extends Message<CreateManualRefundOrderRequest> {
|
|
18
|
+
/**
|
|
19
|
+
* @generated from field: int64 failed_order_id = 1;
|
|
20
|
+
*/
|
|
21
|
+
failedOrderId: bigint;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: int64 service_id = 2;
|
|
25
|
+
*/
|
|
26
|
+
serviceId: bigint;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: repeated int64 list_service_ids = 3;
|
|
30
|
+
*/
|
|
31
|
+
listServiceIds: bigint[];
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @generated from field: int64 amount = 4;
|
|
35
|
+
*/
|
|
36
|
+
amount: bigint;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: string notes = 5;
|
|
40
|
+
*/
|
|
41
|
+
notes: string;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: string ticket_id = 6;
|
|
45
|
+
*/
|
|
46
|
+
ticketId: string;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @generated from field: string admin_id = 7;
|
|
50
|
+
*/
|
|
51
|
+
adminId: string;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @generated from field: int64 is_manual_bump_order = 8;
|
|
55
|
+
*/
|
|
56
|
+
isManualBumpOrder: bigint;
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @generated from field: string original_payment_method = 9;
|
|
60
|
+
*/
|
|
61
|
+
originalPaymentMethod: string;
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* @generated from field: int64 kM = 10;
|
|
65
|
+
*/
|
|
66
|
+
kM: bigint;
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* @generated from field: int64 is_auto_refund = 11;
|
|
70
|
+
*/
|
|
71
|
+
isAutoRefund: bigint;
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* @generated from field: string action = 12;
|
|
75
|
+
*/
|
|
76
|
+
action: string;
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @generated from field: repeated int64 list_bump_ads = 13;
|
|
80
|
+
*/
|
|
81
|
+
listBumpAds: bigint[];
|
|
82
|
+
|
|
83
|
+
constructor(data?: PartialMessage<CreateManualRefundOrderRequest>);
|
|
84
|
+
|
|
85
|
+
static readonly runtime: typeof proto3;
|
|
86
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CreateManualRefundOrderRequest";
|
|
87
|
+
static readonly fields: FieldList;
|
|
88
|
+
|
|
89
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateManualRefundOrderRequest;
|
|
90
|
+
|
|
91
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateManualRefundOrderRequest;
|
|
92
|
+
|
|
93
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateManualRefundOrderRequest;
|
|
94
|
+
|
|
95
|
+
static equals(a: CreateManualRefundOrderRequest | PlainMessage<CreateManualRefundOrderRequest> | undefined, b: CreateManualRefundOrderRequest | PlainMessage<CreateManualRefundOrderRequest> | undefined): boolean;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* @generated from message ct_logic_uni_rev_order.v1.CreateManualRefundOrderResponse
|
|
100
|
+
*/
|
|
101
|
+
export declare class CreateManualRefundOrderResponse extends Message<CreateManualRefundOrderResponse> {
|
|
102
|
+
/**
|
|
103
|
+
* @generated from field: int64 account_id = 1;
|
|
104
|
+
*/
|
|
105
|
+
accountId: bigint;
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* @generated from field: int64 new_order_id = 2;
|
|
109
|
+
*/
|
|
110
|
+
newOrderId: bigint;
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* legacy duplicate
|
|
114
|
+
*
|
|
115
|
+
* @generated from field: int64 order_id = 3;
|
|
116
|
+
*/
|
|
117
|
+
orderId: bigint;
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* @generated from field: int64 value = 4;
|
|
121
|
+
*/
|
|
122
|
+
value: bigint;
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* @generated from field: string pament_code = 5;
|
|
126
|
+
*/
|
|
127
|
+
pamentCode: string;
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* @generated from field: string phone = 6;
|
|
131
|
+
*/
|
|
132
|
+
phone: string;
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.CreateManualRefundOrderService services = 7;
|
|
136
|
+
*/
|
|
137
|
+
services: CreateManualRefundOrderService[];
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* @generated from field: string status = 8;
|
|
141
|
+
*/
|
|
142
|
+
status: string;
|
|
143
|
+
|
|
144
|
+
constructor(data?: PartialMessage<CreateManualRefundOrderResponse>);
|
|
145
|
+
|
|
146
|
+
static readonly runtime: typeof proto3;
|
|
147
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CreateManualRefundOrderResponse";
|
|
148
|
+
static readonly fields: FieldList;
|
|
149
|
+
|
|
150
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateManualRefundOrderResponse;
|
|
151
|
+
|
|
152
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateManualRefundOrderResponse;
|
|
153
|
+
|
|
154
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateManualRefundOrderResponse;
|
|
155
|
+
|
|
156
|
+
static equals(a: CreateManualRefundOrderResponse | PlainMessage<CreateManualRefundOrderResponse> | undefined, b: CreateManualRefundOrderResponse | PlainMessage<CreateManualRefundOrderResponse> | undefined): boolean;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* @generated from message ct_logic_uni_rev_order.v1.CreateManualRefundOrderService
|
|
161
|
+
*/
|
|
162
|
+
export declare class CreateManualRefundOrderService extends Message<CreateManualRefundOrderService> {
|
|
163
|
+
/**
|
|
164
|
+
* @generated from field: int64 service_id = 1;
|
|
165
|
+
*/
|
|
166
|
+
serviceId: bigint;
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* @generated from field: int64 price = 2;
|
|
170
|
+
*/
|
|
171
|
+
price: bigint;
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* @generated from field: string service_type = 3;
|
|
175
|
+
*/
|
|
176
|
+
serviceType: string;
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* @generated from field: string service_param = 4;
|
|
180
|
+
*/
|
|
181
|
+
serviceParam: string;
|
|
182
|
+
|
|
183
|
+
constructor(data?: PartialMessage<CreateManualRefundOrderService>);
|
|
184
|
+
|
|
185
|
+
static readonly runtime: typeof proto3;
|
|
186
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CreateManualRefundOrderService";
|
|
187
|
+
static readonly fields: FieldList;
|
|
188
|
+
|
|
189
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreateManualRefundOrderService;
|
|
190
|
+
|
|
191
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreateManualRefundOrderService;
|
|
192
|
+
|
|
193
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreateManualRefundOrderService;
|
|
194
|
+
|
|
195
|
+
static equals(a: CreateManualRefundOrderService | PlainMessage<CreateManualRefundOrderService> | undefined, b: CreateManualRefundOrderService | PlainMessage<CreateManualRefundOrderService> | undefined): boolean;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* @generated from message ct_logic_uni_rev_order.v1.ExecuteManualActionOnOrderRequest
|
|
200
|
+
*/
|
|
201
|
+
export declare class ExecuteManualActionOnOrderRequest extends Message<ExecuteManualActionOnOrderRequest> {
|
|
202
|
+
/**
|
|
203
|
+
* @generated from field: string action = 1;
|
|
204
|
+
*/
|
|
205
|
+
action: string;
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* @generated from field: int64 order_id = 2;
|
|
209
|
+
*/
|
|
210
|
+
orderId: bigint;
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* @generated from field: ct_logic_uni_rev_order.v1.ExecuteManualActionOnOrderParams params = 3;
|
|
214
|
+
*/
|
|
215
|
+
params?: ExecuteManualActionOnOrderParams;
|
|
216
|
+
|
|
217
|
+
constructor(data?: PartialMessage<ExecuteManualActionOnOrderRequest>);
|
|
218
|
+
|
|
219
|
+
static readonly runtime: typeof proto3;
|
|
220
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ExecuteManualActionOnOrderRequest";
|
|
221
|
+
static readonly fields: FieldList;
|
|
222
|
+
|
|
223
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExecuteManualActionOnOrderRequest;
|
|
224
|
+
|
|
225
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExecuteManualActionOnOrderRequest;
|
|
226
|
+
|
|
227
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExecuteManualActionOnOrderRequest;
|
|
228
|
+
|
|
229
|
+
static equals(a: ExecuteManualActionOnOrderRequest | PlainMessage<ExecuteManualActionOnOrderRequest> | undefined, b: ExecuteManualActionOnOrderRequest | PlainMessage<ExecuteManualActionOnOrderRequest> | undefined): boolean;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* @generated from message ct_logic_uni_rev_order.v1.ExecuteManualActionOnOrderParams
|
|
234
|
+
*/
|
|
235
|
+
export declare class ExecuteManualActionOnOrderParams extends Message<ExecuteManualActionOnOrderParams> {
|
|
236
|
+
/**
|
|
237
|
+
* @generated from field: string admin_id = 1;
|
|
238
|
+
*/
|
|
239
|
+
adminId: string;
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* @generated from field: int64 is_auto = 2;
|
|
243
|
+
*/
|
|
244
|
+
isAuto: bigint;
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* @generated from field: int64 is_paid = 3;
|
|
248
|
+
*/
|
|
249
|
+
isPaid: bigint;
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* @generated from field: string ticket_id = 4;
|
|
253
|
+
*/
|
|
254
|
+
ticketId: string;
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* @generated from field: string notes = 5;
|
|
258
|
+
*/
|
|
259
|
+
notes: string;
|
|
260
|
+
|
|
261
|
+
constructor(data?: PartialMessage<ExecuteManualActionOnOrderParams>);
|
|
262
|
+
|
|
263
|
+
static readonly runtime: typeof proto3;
|
|
264
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ExecuteManualActionOnOrderParams";
|
|
265
|
+
static readonly fields: FieldList;
|
|
266
|
+
|
|
267
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExecuteManualActionOnOrderParams;
|
|
268
|
+
|
|
269
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExecuteManualActionOnOrderParams;
|
|
270
|
+
|
|
271
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExecuteManualActionOnOrderParams;
|
|
272
|
+
|
|
273
|
+
static equals(a: ExecuteManualActionOnOrderParams | PlainMessage<ExecuteManualActionOnOrderParams> | undefined, b: ExecuteManualActionOnOrderParams | PlainMessage<ExecuteManualActionOnOrderParams> | undefined): boolean;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
/**
|
|
277
|
+
* @generated from message ct_logic_uni_rev_order.v1.ExecuteManualActionOnOrderResponse
|
|
278
|
+
*/
|
|
279
|
+
export declare class ExecuteManualActionOnOrderResponse extends Message<ExecuteManualActionOnOrderResponse> {
|
|
280
|
+
/**
|
|
281
|
+
* @generated from field: bool success = 1;
|
|
282
|
+
*/
|
|
283
|
+
success: boolean;
|
|
284
|
+
|
|
285
|
+
constructor(data?: PartialMessage<ExecuteManualActionOnOrderResponse>);
|
|
286
|
+
|
|
287
|
+
static readonly runtime: typeof proto3;
|
|
288
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ExecuteManualActionOnOrderResponse";
|
|
289
|
+
static readonly fields: FieldList;
|
|
290
|
+
|
|
291
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExecuteManualActionOnOrderResponse;
|
|
292
|
+
|
|
293
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExecuteManualActionOnOrderResponse;
|
|
294
|
+
|
|
295
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExecuteManualActionOnOrderResponse;
|
|
296
|
+
|
|
297
|
+
static equals(a: ExecuteManualActionOnOrderResponse | PlainMessage<ExecuteManualActionOnOrderResponse> | undefined, b: ExecuteManualActionOnOrderResponse | PlainMessage<ExecuteManualActionOnOrderResponse> | undefined): boolean;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
/**
|
|
301
|
+
* NEW
|
|
302
|
+
*
|
|
303
|
+
* @generated from message ct_logic_uni_rev_order.v1.CreatePaidProductRefundOrderRequest
|
|
304
|
+
*/
|
|
305
|
+
export declare class CreatePaidProductRefundOrderRequest extends Message<CreatePaidProductRefundOrderRequest> {
|
|
306
|
+
/**
|
|
307
|
+
* @generated from field: int64 failed_order_id = 1;
|
|
308
|
+
*/
|
|
309
|
+
failedOrderId: bigint;
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* @generated from field: repeated int64 service_ids = 2;
|
|
313
|
+
*/
|
|
314
|
+
serviceIds: bigint[];
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* @generated from field: int64 amount = 3;
|
|
318
|
+
*/
|
|
319
|
+
amount: bigint;
|
|
320
|
+
|
|
321
|
+
/**
|
|
322
|
+
* @generated from field: int64 is_auto_refund = 8;
|
|
323
|
+
*/
|
|
324
|
+
isAutoRefund: bigint;
|
|
325
|
+
|
|
326
|
+
/**
|
|
327
|
+
* @generated from field: ct_logic_uni_rev_order.v1.RefundOrderMetadata metadata = 9;
|
|
328
|
+
*/
|
|
329
|
+
metadata?: RefundOrderMetadata;
|
|
330
|
+
|
|
331
|
+
/**
|
|
332
|
+
* refund full amount, ignore amount field above
|
|
333
|
+
*
|
|
334
|
+
* @generated from field: bool refund_full = 10;
|
|
335
|
+
*/
|
|
336
|
+
refundFull: boolean;
|
|
337
|
+
|
|
338
|
+
constructor(data?: PartialMessage<CreatePaidProductRefundOrderRequest>);
|
|
339
|
+
|
|
340
|
+
static readonly runtime: typeof proto3;
|
|
341
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CreatePaidProductRefundOrderRequest";
|
|
342
|
+
static readonly fields: FieldList;
|
|
343
|
+
|
|
344
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePaidProductRefundOrderRequest;
|
|
345
|
+
|
|
346
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePaidProductRefundOrderRequest;
|
|
347
|
+
|
|
348
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePaidProductRefundOrderRequest;
|
|
349
|
+
|
|
350
|
+
static equals(a: CreatePaidProductRefundOrderRequest | PlainMessage<CreatePaidProductRefundOrderRequest> | undefined, b: CreatePaidProductRefundOrderRequest | PlainMessage<CreatePaidProductRefundOrderRequest> | undefined): boolean;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* @generated from message ct_logic_uni_rev_order.v1.RefundOrderMetadata
|
|
355
|
+
*/
|
|
356
|
+
export declare class RefundOrderMetadata extends Message<RefundOrderMetadata> {
|
|
357
|
+
/**
|
|
358
|
+
* @generated from field: string admin_id = 1;
|
|
359
|
+
*/
|
|
360
|
+
adminId: string;
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* @generated from field: string notes = 2;
|
|
364
|
+
*/
|
|
365
|
+
notes: string;
|
|
366
|
+
|
|
367
|
+
/**
|
|
368
|
+
* @generated from field: int32 is_paid = 3;
|
|
369
|
+
*/
|
|
370
|
+
isPaid: number;
|
|
371
|
+
|
|
372
|
+
/**
|
|
373
|
+
* @generated from field: string ticket_id = 4;
|
|
374
|
+
*/
|
|
375
|
+
ticketId: string;
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* deprecated, will use the faile_order_id's payment method
|
|
379
|
+
*
|
|
380
|
+
* @generated from field: string payment_method = 5;
|
|
381
|
+
*/
|
|
382
|
+
paymentMethod: string;
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* default to system_error if empty
|
|
386
|
+
*
|
|
387
|
+
* @generated from field: string refund_reason = 6;
|
|
388
|
+
*/
|
|
389
|
+
refundReason: string;
|
|
390
|
+
|
|
391
|
+
constructor(data?: PartialMessage<RefundOrderMetadata>);
|
|
392
|
+
|
|
393
|
+
static readonly runtime: typeof proto3;
|
|
394
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.RefundOrderMetadata";
|
|
395
|
+
static readonly fields: FieldList;
|
|
396
|
+
|
|
397
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RefundOrderMetadata;
|
|
398
|
+
|
|
399
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RefundOrderMetadata;
|
|
400
|
+
|
|
401
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RefundOrderMetadata;
|
|
402
|
+
|
|
403
|
+
static equals(a: RefundOrderMetadata | PlainMessage<RefundOrderMetadata> | undefined, b: RefundOrderMetadata | PlainMessage<RefundOrderMetadata> | undefined): boolean;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
/**
|
|
407
|
+
* @generated from message ct_logic_uni_rev_order.v1.CreatePaidProductRefundOrderResponse
|
|
408
|
+
*/
|
|
409
|
+
export declare class CreatePaidProductRefundOrderResponse extends Message<CreatePaidProductRefundOrderResponse> {
|
|
410
|
+
/**
|
|
411
|
+
* @generated from field: int64 account_id = 1;
|
|
412
|
+
*/
|
|
413
|
+
accountId: bigint;
|
|
414
|
+
|
|
415
|
+
/**
|
|
416
|
+
* @generated from field: string phone = 2;
|
|
417
|
+
*/
|
|
418
|
+
phone: string;
|
|
419
|
+
|
|
420
|
+
/**
|
|
421
|
+
* @generated from field: int64 order_id = 3;
|
|
422
|
+
*/
|
|
423
|
+
orderId: bigint;
|
|
424
|
+
|
|
425
|
+
/**
|
|
426
|
+
* @generated from field: int64 value = 4;
|
|
427
|
+
*/
|
|
428
|
+
value: bigint;
|
|
429
|
+
|
|
430
|
+
/**
|
|
431
|
+
* @generated from field: string payment_code = 5;
|
|
432
|
+
*/
|
|
433
|
+
paymentCode: string;
|
|
434
|
+
|
|
435
|
+
/**
|
|
436
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.CreatePaidProductRefundOrderService services = 6;
|
|
437
|
+
*/
|
|
438
|
+
services: CreatePaidProductRefundOrderService[];
|
|
439
|
+
|
|
440
|
+
/**
|
|
441
|
+
* @generated from field: string status = 7;
|
|
442
|
+
*/
|
|
443
|
+
status: string;
|
|
444
|
+
|
|
445
|
+
constructor(data?: PartialMessage<CreatePaidProductRefundOrderResponse>);
|
|
446
|
+
|
|
447
|
+
static readonly runtime: typeof proto3;
|
|
448
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CreatePaidProductRefundOrderResponse";
|
|
449
|
+
static readonly fields: FieldList;
|
|
450
|
+
|
|
451
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePaidProductRefundOrderResponse;
|
|
452
|
+
|
|
453
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePaidProductRefundOrderResponse;
|
|
454
|
+
|
|
455
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePaidProductRefundOrderResponse;
|
|
456
|
+
|
|
457
|
+
static equals(a: CreatePaidProductRefundOrderResponse | PlainMessage<CreatePaidProductRefundOrderResponse> | undefined, b: CreatePaidProductRefundOrderResponse | PlainMessage<CreatePaidProductRefundOrderResponse> | undefined): boolean;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
/**
|
|
461
|
+
* @generated from message ct_logic_uni_rev_order.v1.CreatePaidProductRefundOrderExternalRequest
|
|
462
|
+
*/
|
|
463
|
+
export declare class CreatePaidProductRefundOrderExternalRequest extends Message<CreatePaidProductRefundOrderExternalRequest> {
|
|
464
|
+
/**
|
|
465
|
+
* @generated from field: int64 failed_order_id = 1;
|
|
466
|
+
*/
|
|
467
|
+
failedOrderId: bigint;
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* @generated from field: int64 service_id = 2;
|
|
471
|
+
*/
|
|
472
|
+
serviceId: bigint;
|
|
473
|
+
|
|
474
|
+
/**
|
|
475
|
+
* @generated from field: int64 amount = 3;
|
|
476
|
+
*/
|
|
477
|
+
amount: bigint;
|
|
478
|
+
|
|
479
|
+
/**
|
|
480
|
+
* @generated from field: ct_logic_uni_rev_order.v1.RefundOrderMetadata metadata = 4;
|
|
481
|
+
*/
|
|
482
|
+
metadata?: RefundOrderMetadata;
|
|
483
|
+
|
|
484
|
+
constructor(data?: PartialMessage<CreatePaidProductRefundOrderExternalRequest>);
|
|
485
|
+
|
|
486
|
+
static readonly runtime: typeof proto3;
|
|
487
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CreatePaidProductRefundOrderExternalRequest";
|
|
488
|
+
static readonly fields: FieldList;
|
|
489
|
+
|
|
490
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePaidProductRefundOrderExternalRequest;
|
|
491
|
+
|
|
492
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePaidProductRefundOrderExternalRequest;
|
|
493
|
+
|
|
494
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePaidProductRefundOrderExternalRequest;
|
|
495
|
+
|
|
496
|
+
static equals(a: CreatePaidProductRefundOrderExternalRequest | PlainMessage<CreatePaidProductRefundOrderExternalRequest> | undefined, b: CreatePaidProductRefundOrderExternalRequest | PlainMessage<CreatePaidProductRefundOrderExternalRequest> | undefined): boolean;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
/**
|
|
500
|
+
* @generated from message ct_logic_uni_rev_order.v1.CreatePaidProductRefundOrderExternalResponse
|
|
501
|
+
*/
|
|
502
|
+
export declare class CreatePaidProductRefundOrderExternalResponse extends Message<CreatePaidProductRefundOrderExternalResponse> {
|
|
503
|
+
/**
|
|
504
|
+
* @generated from field: string status = 1;
|
|
505
|
+
*/
|
|
506
|
+
status: string;
|
|
507
|
+
|
|
508
|
+
constructor(data?: PartialMessage<CreatePaidProductRefundOrderExternalResponse>);
|
|
509
|
+
|
|
510
|
+
static readonly runtime: typeof proto3;
|
|
511
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CreatePaidProductRefundOrderExternalResponse";
|
|
512
|
+
static readonly fields: FieldList;
|
|
513
|
+
|
|
514
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePaidProductRefundOrderExternalResponse;
|
|
515
|
+
|
|
516
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePaidProductRefundOrderExternalResponse;
|
|
517
|
+
|
|
518
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePaidProductRefundOrderExternalResponse;
|
|
519
|
+
|
|
520
|
+
static equals(a: CreatePaidProductRefundOrderExternalResponse | PlainMessage<CreatePaidProductRefundOrderExternalResponse> | undefined, b: CreatePaidProductRefundOrderExternalResponse | PlainMessage<CreatePaidProductRefundOrderExternalResponse> | undefined): boolean;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
/**
|
|
524
|
+
* @generated from message ct_logic_uni_rev_order.v1.CreatePaidProductRefundOrderService
|
|
525
|
+
*/
|
|
526
|
+
export declare class CreatePaidProductRefundOrderService extends Message<CreatePaidProductRefundOrderService> {
|
|
527
|
+
/**
|
|
528
|
+
* @generated from field: int64 service_id = 1;
|
|
529
|
+
*/
|
|
530
|
+
serviceId: bigint;
|
|
531
|
+
|
|
532
|
+
/**
|
|
533
|
+
* @generated from field: int64 price = 2;
|
|
534
|
+
*/
|
|
535
|
+
price: bigint;
|
|
536
|
+
|
|
537
|
+
/**
|
|
538
|
+
* @generated from field: string service_type = 3;
|
|
539
|
+
*/
|
|
540
|
+
serviceType: string;
|
|
541
|
+
|
|
542
|
+
/**
|
|
543
|
+
* @generated from field: string service_param = 4;
|
|
544
|
+
*/
|
|
545
|
+
serviceParam: string;
|
|
546
|
+
|
|
547
|
+
constructor(data?: PartialMessage<CreatePaidProductRefundOrderService>);
|
|
548
|
+
|
|
549
|
+
static readonly runtime: typeof proto3;
|
|
550
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.CreatePaidProductRefundOrderService";
|
|
551
|
+
static readonly fields: FieldList;
|
|
552
|
+
|
|
553
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): CreatePaidProductRefundOrderService;
|
|
554
|
+
|
|
555
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): CreatePaidProductRefundOrderService;
|
|
556
|
+
|
|
557
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): CreatePaidProductRefundOrderService;
|
|
558
|
+
|
|
559
|
+
static equals(a: CreatePaidProductRefundOrderService | PlainMessage<CreatePaidProductRefundOrderService> | undefined, b: CreatePaidProductRefundOrderService | PlainMessage<CreatePaidProductRefundOrderService> | undefined): boolean;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
/**
|
|
563
|
+
* @generated from message ct_logic_uni_rev_order.v1.ApprovePaidProductRefundOrderRequest
|
|
564
|
+
*/
|
|
565
|
+
export declare class ApprovePaidProductRefundOrderRequest extends Message<ApprovePaidProductRefundOrderRequest> {
|
|
566
|
+
/**
|
|
567
|
+
* @generated from field: int64 order_id = 1;
|
|
568
|
+
*/
|
|
569
|
+
orderId: bigint;
|
|
570
|
+
|
|
571
|
+
/**
|
|
572
|
+
* @generated from field: string action = 2;
|
|
573
|
+
*/
|
|
574
|
+
action: string;
|
|
575
|
+
|
|
576
|
+
/**
|
|
577
|
+
* @generated from field: ct_logic_uni_rev_order.v1.ApproveMetadata approve_metadata = 3;
|
|
578
|
+
*/
|
|
579
|
+
approveMetadata?: ApproveMetadata;
|
|
580
|
+
|
|
581
|
+
constructor(data?: PartialMessage<ApprovePaidProductRefundOrderRequest>);
|
|
582
|
+
|
|
583
|
+
static readonly runtime: typeof proto3;
|
|
584
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ApprovePaidProductRefundOrderRequest";
|
|
585
|
+
static readonly fields: FieldList;
|
|
586
|
+
|
|
587
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApprovePaidProductRefundOrderRequest;
|
|
588
|
+
|
|
589
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ApprovePaidProductRefundOrderRequest;
|
|
590
|
+
|
|
591
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ApprovePaidProductRefundOrderRequest;
|
|
592
|
+
|
|
593
|
+
static equals(a: ApprovePaidProductRefundOrderRequest | PlainMessage<ApprovePaidProductRefundOrderRequest> | undefined, b: ApprovePaidProductRefundOrderRequest | PlainMessage<ApprovePaidProductRefundOrderRequest> | undefined): boolean;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
/**
|
|
597
|
+
* @generated from message ct_logic_uni_rev_order.v1.ApproveMetadata
|
|
598
|
+
*/
|
|
599
|
+
export declare class ApproveMetadata extends Message<ApproveMetadata> {
|
|
600
|
+
/**
|
|
601
|
+
* @generated from field: string admin_id = 1;
|
|
602
|
+
*/
|
|
603
|
+
adminId: string;
|
|
604
|
+
|
|
605
|
+
/**
|
|
606
|
+
* @generated from field: string notes = 2;
|
|
607
|
+
*/
|
|
608
|
+
notes: string;
|
|
609
|
+
|
|
610
|
+
/**
|
|
611
|
+
* @generated from field: int32 is_auto = 3;
|
|
612
|
+
*/
|
|
613
|
+
isAuto: number;
|
|
614
|
+
|
|
615
|
+
constructor(data?: PartialMessage<ApproveMetadata>);
|
|
616
|
+
|
|
617
|
+
static readonly runtime: typeof proto3;
|
|
618
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ApproveMetadata";
|
|
619
|
+
static readonly fields: FieldList;
|
|
620
|
+
|
|
621
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApproveMetadata;
|
|
622
|
+
|
|
623
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ApproveMetadata;
|
|
624
|
+
|
|
625
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ApproveMetadata;
|
|
626
|
+
|
|
627
|
+
static equals(a: ApproveMetadata | PlainMessage<ApproveMetadata> | undefined, b: ApproveMetadata | PlainMessage<ApproveMetadata> | undefined): boolean;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
/**
|
|
631
|
+
* @generated from message ct_logic_uni_rev_order.v1.ApprovePaidProductRefundOrderResponse
|
|
632
|
+
*/
|
|
633
|
+
export declare class ApprovePaidProductRefundOrderResponse extends Message<ApprovePaidProductRefundOrderResponse> {
|
|
634
|
+
/**
|
|
635
|
+
* @generated from field: bool success = 1;
|
|
636
|
+
*/
|
|
637
|
+
success: boolean;
|
|
638
|
+
|
|
639
|
+
constructor(data?: PartialMessage<ApprovePaidProductRefundOrderResponse>);
|
|
640
|
+
|
|
641
|
+
static readonly runtime: typeof proto3;
|
|
642
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ApprovePaidProductRefundOrderResponse";
|
|
643
|
+
static readonly fields: FieldList;
|
|
644
|
+
|
|
645
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ApprovePaidProductRefundOrderResponse;
|
|
646
|
+
|
|
647
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ApprovePaidProductRefundOrderResponse;
|
|
648
|
+
|
|
649
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ApprovePaidProductRefundOrderResponse;
|
|
650
|
+
|
|
651
|
+
static equals(a: ApprovePaidProductRefundOrderResponse | PlainMessage<ApprovePaidProductRefundOrderResponse> | undefined, b: ApprovePaidProductRefundOrderResponse | PlainMessage<ApprovePaidProductRefundOrderResponse> | undefined): boolean;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
/**
|
|
655
|
+
* @generated from message ct_logic_uni_rev_order.v1.RefundValueByOrderRequest
|
|
656
|
+
*/
|
|
657
|
+
export declare class RefundValueByOrderRequest extends Message<RefundValueByOrderRequest> {
|
|
658
|
+
/**
|
|
659
|
+
* @generated from field: int64 order_id = 1;
|
|
660
|
+
*/
|
|
661
|
+
orderId: bigint;
|
|
662
|
+
|
|
663
|
+
/**
|
|
664
|
+
* @generated from field: int64 refund_value = 2;
|
|
665
|
+
*/
|
|
666
|
+
refundValue: bigint;
|
|
667
|
+
|
|
668
|
+
constructor(data?: PartialMessage<RefundValueByOrderRequest>);
|
|
669
|
+
|
|
670
|
+
static readonly runtime: typeof proto3;
|
|
671
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.RefundValueByOrderRequest";
|
|
672
|
+
static readonly fields: FieldList;
|
|
673
|
+
|
|
674
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RefundValueByOrderRequest;
|
|
675
|
+
|
|
676
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RefundValueByOrderRequest;
|
|
677
|
+
|
|
678
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RefundValueByOrderRequest;
|
|
679
|
+
|
|
680
|
+
static equals(a: RefundValueByOrderRequest | PlainMessage<RefundValueByOrderRequest> | undefined, b: RefundValueByOrderRequest | PlainMessage<RefundValueByOrderRequest> | undefined): boolean;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
/**
|
|
684
|
+
* @generated from message ct_logic_uni_rev_order.v1.RefundValueByOrderResponse
|
|
685
|
+
*/
|
|
686
|
+
export declare class RefundValueByOrderResponse extends Message<RefundValueByOrderResponse> {
|
|
687
|
+
/**
|
|
688
|
+
* @generated from field: int64 order_id = 1;
|
|
689
|
+
*/
|
|
690
|
+
orderId: bigint;
|
|
691
|
+
|
|
692
|
+
/**
|
|
693
|
+
* @generated from field: int64 refund_value = 2;
|
|
694
|
+
*/
|
|
695
|
+
refundValue: bigint;
|
|
696
|
+
|
|
697
|
+
/**
|
|
698
|
+
* @generated from field: string payment_method = 3;
|
|
699
|
+
*/
|
|
700
|
+
paymentMethod: string;
|
|
701
|
+
|
|
702
|
+
/**
|
|
703
|
+
* @generated from field: int64 account_id_refunded = 4;
|
|
704
|
+
*/
|
|
705
|
+
accountIdRefunded: bigint;
|
|
706
|
+
|
|
707
|
+
constructor(data?: PartialMessage<RefundValueByOrderResponse>);
|
|
708
|
+
|
|
709
|
+
static readonly runtime: typeof proto3;
|
|
710
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.RefundValueByOrderResponse";
|
|
711
|
+
static readonly fields: FieldList;
|
|
712
|
+
|
|
713
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RefundValueByOrderResponse;
|
|
714
|
+
|
|
715
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RefundValueByOrderResponse;
|
|
716
|
+
|
|
717
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RefundValueByOrderResponse;
|
|
718
|
+
|
|
719
|
+
static equals(a: RefundValueByOrderResponse | PlainMessage<RefundValueByOrderResponse> | undefined, b: RefundValueByOrderResponse | PlainMessage<RefundValueByOrderResponse> | undefined): boolean;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
/**
|
|
723
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetRefundValuesByOrderListRequest
|
|
724
|
+
*/
|
|
725
|
+
export declare class GetRefundValuesByOrderListRequest extends Message<GetRefundValuesByOrderListRequest> {
|
|
726
|
+
/**
|
|
727
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.RefundValueByOrderRequest refund_value_list = 1;
|
|
728
|
+
*/
|
|
729
|
+
refundValueList: RefundValueByOrderRequest[];
|
|
730
|
+
|
|
731
|
+
constructor(data?: PartialMessage<GetRefundValuesByOrderListRequest>);
|
|
732
|
+
|
|
733
|
+
static readonly runtime: typeof proto3;
|
|
734
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetRefundValuesByOrderListRequest";
|
|
735
|
+
static readonly fields: FieldList;
|
|
736
|
+
|
|
737
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetRefundValuesByOrderListRequest;
|
|
738
|
+
|
|
739
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetRefundValuesByOrderListRequest;
|
|
740
|
+
|
|
741
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetRefundValuesByOrderListRequest;
|
|
742
|
+
|
|
743
|
+
static equals(a: GetRefundValuesByOrderListRequest | PlainMessage<GetRefundValuesByOrderListRequest> | undefined, b: GetRefundValuesByOrderListRequest | PlainMessage<GetRefundValuesByOrderListRequest> | undefined): boolean;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
/**
|
|
747
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetRefundValuesByOrderListResponse
|
|
748
|
+
*/
|
|
749
|
+
export declare class GetRefundValuesByOrderListResponse extends Message<GetRefundValuesByOrderListResponse> {
|
|
750
|
+
/**
|
|
751
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.RefundValueByOrderResponse refund_value_list = 1;
|
|
752
|
+
*/
|
|
753
|
+
refundValueList: RefundValueByOrderResponse[];
|
|
754
|
+
|
|
755
|
+
constructor(data?: PartialMessage<GetRefundValuesByOrderListResponse>);
|
|
756
|
+
|
|
757
|
+
static readonly runtime: typeof proto3;
|
|
758
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetRefundValuesByOrderListResponse";
|
|
759
|
+
static readonly fields: FieldList;
|
|
760
|
+
|
|
761
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetRefundValuesByOrderListResponse;
|
|
762
|
+
|
|
763
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetRefundValuesByOrderListResponse;
|
|
764
|
+
|
|
765
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetRefundValuesByOrderListResponse;
|
|
766
|
+
|
|
767
|
+
static equals(a: GetRefundValuesByOrderListResponse | PlainMessage<GetRefundValuesByOrderListResponse> | undefined, b: GetRefundValuesByOrderListResponse | PlainMessage<GetRefundValuesByOrderListResponse> | undefined): boolean;
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
/**
|
|
771
|
+
* @generated from message ct_logic_uni_rev_order.v1.BatchCreateRefundOrderRequest
|
|
772
|
+
*/
|
|
773
|
+
export declare class BatchCreateRefundOrderRequest extends Message<BatchCreateRefundOrderRequest> {
|
|
774
|
+
/**
|
|
775
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.BatchRefundOrder refund_orders = 1;
|
|
776
|
+
*/
|
|
777
|
+
refundOrders: BatchRefundOrder[];
|
|
778
|
+
|
|
779
|
+
constructor(data?: PartialMessage<BatchCreateRefundOrderRequest>);
|
|
780
|
+
|
|
781
|
+
static readonly runtime: typeof proto3;
|
|
782
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.BatchCreateRefundOrderRequest";
|
|
783
|
+
static readonly fields: FieldList;
|
|
784
|
+
|
|
785
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BatchCreateRefundOrderRequest;
|
|
786
|
+
|
|
787
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BatchCreateRefundOrderRequest;
|
|
788
|
+
|
|
789
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BatchCreateRefundOrderRequest;
|
|
790
|
+
|
|
791
|
+
static equals(a: BatchCreateRefundOrderRequest | PlainMessage<BatchCreateRefundOrderRequest> | undefined, b: BatchCreateRefundOrderRequest | PlainMessage<BatchCreateRefundOrderRequest> | undefined): boolean;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
/**
|
|
795
|
+
* @generated from message ct_logic_uni_rev_order.v1.BatchRefundOrder
|
|
796
|
+
*/
|
|
797
|
+
export declare class BatchRefundOrder extends Message<BatchRefundOrder> {
|
|
798
|
+
/**
|
|
799
|
+
* @generated from field: int64 failed_order_id = 1;
|
|
800
|
+
*/
|
|
801
|
+
failedOrderId: bigint;
|
|
802
|
+
|
|
803
|
+
/**
|
|
804
|
+
* @generated from field: int64 failed_service_id = 2;
|
|
805
|
+
*/
|
|
806
|
+
failedServiceId: bigint;
|
|
807
|
+
|
|
808
|
+
/**
|
|
809
|
+
* @generated from field: int64 refund_amount = 3;
|
|
810
|
+
*/
|
|
811
|
+
refundAmount: bigint;
|
|
812
|
+
|
|
813
|
+
/**
|
|
814
|
+
* @generated from field: string notes = 4;
|
|
815
|
+
*/
|
|
816
|
+
notes: string;
|
|
817
|
+
|
|
818
|
+
/**
|
|
819
|
+
* @generated from field: string ticket_id = 5;
|
|
820
|
+
*/
|
|
821
|
+
ticketId: string;
|
|
822
|
+
|
|
823
|
+
/**
|
|
824
|
+
* @generated from field: string admin_id = 6;
|
|
825
|
+
*/
|
|
826
|
+
adminId: string;
|
|
827
|
+
|
|
828
|
+
constructor(data?: PartialMessage<BatchRefundOrder>);
|
|
829
|
+
|
|
830
|
+
static readonly runtime: typeof proto3;
|
|
831
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.BatchRefundOrder";
|
|
832
|
+
static readonly fields: FieldList;
|
|
833
|
+
|
|
834
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BatchRefundOrder;
|
|
835
|
+
|
|
836
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BatchRefundOrder;
|
|
837
|
+
|
|
838
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BatchRefundOrder;
|
|
839
|
+
|
|
840
|
+
static equals(a: BatchRefundOrder | PlainMessage<BatchRefundOrder> | undefined, b: BatchRefundOrder | PlainMessage<BatchRefundOrder> | undefined): boolean;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
/**
|
|
844
|
+
* @generated from message ct_logic_uni_rev_order.v1.BatchCreateRefundOrderResponse
|
|
845
|
+
*/
|
|
846
|
+
export declare class BatchCreateRefundOrderResponse extends Message<BatchCreateRefundOrderResponse> {
|
|
847
|
+
/**
|
|
848
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.SuccessRefundOrder success_orders = 1;
|
|
849
|
+
*/
|
|
850
|
+
successOrders: SuccessRefundOrder[];
|
|
851
|
+
|
|
852
|
+
/**
|
|
853
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.FailedRefundOrder failed_orders = 2;
|
|
854
|
+
*/
|
|
855
|
+
failedOrders: FailedRefundOrder[];
|
|
856
|
+
|
|
857
|
+
constructor(data?: PartialMessage<BatchCreateRefundOrderResponse>);
|
|
858
|
+
|
|
859
|
+
static readonly runtime: typeof proto3;
|
|
860
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.BatchCreateRefundOrderResponse";
|
|
861
|
+
static readonly fields: FieldList;
|
|
862
|
+
|
|
863
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): BatchCreateRefundOrderResponse;
|
|
864
|
+
|
|
865
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): BatchCreateRefundOrderResponse;
|
|
866
|
+
|
|
867
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): BatchCreateRefundOrderResponse;
|
|
868
|
+
|
|
869
|
+
static equals(a: BatchCreateRefundOrderResponse | PlainMessage<BatchCreateRefundOrderResponse> | undefined, b: BatchCreateRefundOrderResponse | PlainMessage<BatchCreateRefundOrderResponse> | undefined): boolean;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
/**
|
|
873
|
+
* @generated from message ct_logic_uni_rev_order.v1.SuccessRefundOrder
|
|
874
|
+
*/
|
|
875
|
+
export declare class SuccessRefundOrder extends Message<SuccessRefundOrder> {
|
|
876
|
+
/**
|
|
877
|
+
* @generated from field: int64 failed_order_id = 1;
|
|
878
|
+
*/
|
|
879
|
+
failedOrderId: bigint;
|
|
880
|
+
|
|
881
|
+
/**
|
|
882
|
+
* @generated from field: int64 refund_order_id = 2;
|
|
883
|
+
*/
|
|
884
|
+
refundOrderId: bigint;
|
|
885
|
+
|
|
886
|
+
/**
|
|
887
|
+
* @generated from field: int64 refund_amount = 3;
|
|
888
|
+
*/
|
|
889
|
+
refundAmount: bigint;
|
|
890
|
+
|
|
891
|
+
constructor(data?: PartialMessage<SuccessRefundOrder>);
|
|
892
|
+
|
|
893
|
+
static readonly runtime: typeof proto3;
|
|
894
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.SuccessRefundOrder";
|
|
895
|
+
static readonly fields: FieldList;
|
|
896
|
+
|
|
897
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SuccessRefundOrder;
|
|
898
|
+
|
|
899
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SuccessRefundOrder;
|
|
900
|
+
|
|
901
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SuccessRefundOrder;
|
|
902
|
+
|
|
903
|
+
static equals(a: SuccessRefundOrder | PlainMessage<SuccessRefundOrder> | undefined, b: SuccessRefundOrder | PlainMessage<SuccessRefundOrder> | undefined): boolean;
|
|
904
|
+
}
|
|
905
|
+
|
|
906
|
+
/**
|
|
907
|
+
* @generated from message ct_logic_uni_rev_order.v1.FailedRefundOrder
|
|
908
|
+
*/
|
|
909
|
+
export declare class FailedRefundOrder extends Message<FailedRefundOrder> {
|
|
910
|
+
/**
|
|
911
|
+
* @generated from field: int64 failed_order_id = 1;
|
|
912
|
+
*/
|
|
913
|
+
failedOrderId: bigint;
|
|
914
|
+
|
|
915
|
+
/**
|
|
916
|
+
* @generated from field: string error_message = 2;
|
|
917
|
+
*/
|
|
918
|
+
errorMessage: string;
|
|
919
|
+
|
|
920
|
+
constructor(data?: PartialMessage<FailedRefundOrder>);
|
|
921
|
+
|
|
922
|
+
static readonly runtime: typeof proto3;
|
|
923
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.FailedRefundOrder";
|
|
924
|
+
static readonly fields: FieldList;
|
|
925
|
+
|
|
926
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FailedRefundOrder;
|
|
927
|
+
|
|
928
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FailedRefundOrder;
|
|
929
|
+
|
|
930
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FailedRefundOrder;
|
|
931
|
+
|
|
932
|
+
static equals(a: FailedRefundOrder | PlainMessage<FailedRefundOrder> | undefined, b: FailedRefundOrder | PlainMessage<FailedRefundOrder> | undefined): boolean;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
/**
|
|
936
|
+
* @generated from message ct_logic_uni_rev_order.v1.ValidateUnrecordedDongtotWithdrawalRequest
|
|
937
|
+
*/
|
|
938
|
+
export declare class ValidateUnrecordedDongtotWithdrawalRequest extends Message<ValidateUnrecordedDongtotWithdrawalRequest> {
|
|
939
|
+
/**
|
|
940
|
+
* @generated from field: int64 order_id = 1;
|
|
941
|
+
*/
|
|
942
|
+
orderId: bigint;
|
|
943
|
+
|
|
944
|
+
/**
|
|
945
|
+
* @generated from field: string transaction_id = 2;
|
|
946
|
+
*/
|
|
947
|
+
transactionId: string;
|
|
948
|
+
|
|
949
|
+
constructor(data?: PartialMessage<ValidateUnrecordedDongtotWithdrawalRequest>);
|
|
950
|
+
|
|
951
|
+
static readonly runtime: typeof proto3;
|
|
952
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ValidateUnrecordedDongtotWithdrawalRequest";
|
|
953
|
+
static readonly fields: FieldList;
|
|
954
|
+
|
|
955
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ValidateUnrecordedDongtotWithdrawalRequest;
|
|
956
|
+
|
|
957
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ValidateUnrecordedDongtotWithdrawalRequest;
|
|
958
|
+
|
|
959
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ValidateUnrecordedDongtotWithdrawalRequest;
|
|
960
|
+
|
|
961
|
+
static equals(a: ValidateUnrecordedDongtotWithdrawalRequest | PlainMessage<ValidateUnrecordedDongtotWithdrawalRequest> | undefined, b: ValidateUnrecordedDongtotWithdrawalRequest | PlainMessage<ValidateUnrecordedDongtotWithdrawalRequest> | undefined): boolean;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
/**
|
|
965
|
+
* @generated from message ct_logic_uni_rev_order.v1.ValidateUnrecordedDongtotWithdrawalResponse
|
|
966
|
+
*/
|
|
967
|
+
export declare class ValidateUnrecordedDongtotWithdrawalResponse extends Message<ValidateUnrecordedDongtotWithdrawalResponse> {
|
|
968
|
+
constructor(data?: PartialMessage<ValidateUnrecordedDongtotWithdrawalResponse>);
|
|
969
|
+
|
|
970
|
+
static readonly runtime: typeof proto3;
|
|
971
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ValidateUnrecordedDongtotWithdrawalResponse";
|
|
972
|
+
static readonly fields: FieldList;
|
|
973
|
+
|
|
974
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ValidateUnrecordedDongtotWithdrawalResponse;
|
|
975
|
+
|
|
976
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ValidateUnrecordedDongtotWithdrawalResponse;
|
|
977
|
+
|
|
978
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ValidateUnrecordedDongtotWithdrawalResponse;
|
|
979
|
+
|
|
980
|
+
static equals(a: ValidateUnrecordedDongtotWithdrawalResponse | PlainMessage<ValidateUnrecordedDongtotWithdrawalResponse> | undefined, b: ValidateUnrecordedDongtotWithdrawalResponse | PlainMessage<ValidateUnrecordedDongtotWithdrawalResponse> | undefined): boolean;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
/**
|
|
984
|
+
* @generated from message ct_logic_uni_rev_order.v1.TrackRefundUnrecordedDongtotWithdrawalRequest
|
|
985
|
+
*/
|
|
986
|
+
export declare class TrackRefundUnrecordedDongtotWithdrawalRequest extends Message<TrackRefundUnrecordedDongtotWithdrawalRequest> {
|
|
987
|
+
/**
|
|
988
|
+
* @generated from field: int64 order_id = 1;
|
|
989
|
+
*/
|
|
990
|
+
orderId: bigint;
|
|
991
|
+
|
|
992
|
+
/**
|
|
993
|
+
* @generated from field: string transaction_id = 2;
|
|
994
|
+
*/
|
|
995
|
+
transactionId: string;
|
|
996
|
+
|
|
997
|
+
constructor(data?: PartialMessage<TrackRefundUnrecordedDongtotWithdrawalRequest>);
|
|
998
|
+
|
|
999
|
+
static readonly runtime: typeof proto3;
|
|
1000
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.TrackRefundUnrecordedDongtotWithdrawalRequest";
|
|
1001
|
+
static readonly fields: FieldList;
|
|
1002
|
+
|
|
1003
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TrackRefundUnrecordedDongtotWithdrawalRequest;
|
|
1004
|
+
|
|
1005
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TrackRefundUnrecordedDongtotWithdrawalRequest;
|
|
1006
|
+
|
|
1007
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TrackRefundUnrecordedDongtotWithdrawalRequest;
|
|
1008
|
+
|
|
1009
|
+
static equals(a: TrackRefundUnrecordedDongtotWithdrawalRequest | PlainMessage<TrackRefundUnrecordedDongtotWithdrawalRequest> | undefined, b: TrackRefundUnrecordedDongtotWithdrawalRequest | PlainMessage<TrackRefundUnrecordedDongtotWithdrawalRequest> | undefined): boolean;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
/**
|
|
1013
|
+
* @generated from message ct_logic_uni_rev_order.v1.TrackRefundUnrecordedDongtotWithdrawalResponse
|
|
1014
|
+
*/
|
|
1015
|
+
export declare class TrackRefundUnrecordedDongtotWithdrawalResponse extends Message<TrackRefundUnrecordedDongtotWithdrawalResponse> {
|
|
1016
|
+
constructor(data?: PartialMessage<TrackRefundUnrecordedDongtotWithdrawalResponse>);
|
|
1017
|
+
|
|
1018
|
+
static readonly runtime: typeof proto3;
|
|
1019
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.TrackRefundUnrecordedDongtotWithdrawalResponse";
|
|
1020
|
+
static readonly fields: FieldList;
|
|
1021
|
+
|
|
1022
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): TrackRefundUnrecordedDongtotWithdrawalResponse;
|
|
1023
|
+
|
|
1024
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): TrackRefundUnrecordedDongtotWithdrawalResponse;
|
|
1025
|
+
|
|
1026
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): TrackRefundUnrecordedDongtotWithdrawalResponse;
|
|
1027
|
+
|
|
1028
|
+
static equals(a: TrackRefundUnrecordedDongtotWithdrawalResponse | PlainMessage<TrackRefundUnrecordedDongtotWithdrawalResponse> | undefined, b: TrackRefundUnrecordedDongtotWithdrawalResponse | PlainMessage<TrackRefundUnrecordedDongtotWithdrawalResponse> | undefined): boolean;
|
|
1029
|
+
}
|
|
1030
|
+
|