@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
package/invoice_pb.d.ts
ADDED
|
@@ -0,0 +1,2875 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v1.3.1 with parameter "target=js+dts"
|
|
2
|
+
// @generated from file ct-logic-uni-rev-order/v1/invoice.proto (package ct_logic_uni_rev_order.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
// @ts-nocheck
|
|
5
|
+
|
|
6
|
+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage, Timestamp } from "@bufbuild/protobuf";
|
|
7
|
+
import { Message, proto3 } from "@bufbuild/protobuf";
|
|
8
|
+
import type { Invoice, Invoicee, InvoiceType, Order } from "./invoice_entities_pb.js";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* @generated from message ct_logic_uni_rev_order.v1.FullInvoice
|
|
12
|
+
*/
|
|
13
|
+
export declare class FullInvoice extends Message<FullInvoice> {
|
|
14
|
+
/**
|
|
15
|
+
* @generated from field: ct_logic_uni_rev_order.v1.Invoice invoice = 1;
|
|
16
|
+
*/
|
|
17
|
+
invoice?: Invoice;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* @generated from field: ct_logic_uni_rev_order.v1.InvoiceType invoice_type = 2;
|
|
21
|
+
*/
|
|
22
|
+
invoiceType?: InvoiceType;
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* @generated from field: ct_logic_uni_rev_order.v1.Invoicee invoicee = 3;
|
|
26
|
+
*/
|
|
27
|
+
invoicee?: Invoicee;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.Order orders = 4;
|
|
31
|
+
*/
|
|
32
|
+
orders: Order[];
|
|
33
|
+
|
|
34
|
+
constructor(data?: PartialMessage<FullInvoice>);
|
|
35
|
+
|
|
36
|
+
static readonly runtime: typeof proto3;
|
|
37
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.FullInvoice";
|
|
38
|
+
static readonly fields: FieldList;
|
|
39
|
+
|
|
40
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FullInvoice;
|
|
41
|
+
|
|
42
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FullInvoice;
|
|
43
|
+
|
|
44
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FullInvoice;
|
|
45
|
+
|
|
46
|
+
static equals(a: FullInvoice | PlainMessage<FullInvoice> | undefined, b: FullInvoice | PlainMessage<FullInvoice> | undefined): boolean;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetFullInvoiceResponse
|
|
51
|
+
*/
|
|
52
|
+
export declare class GetFullInvoiceResponse extends Message<GetFullInvoiceResponse> {
|
|
53
|
+
/**
|
|
54
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.FullInvoice full_invoices = 1;
|
|
55
|
+
*/
|
|
56
|
+
fullInvoices: FullInvoice[];
|
|
57
|
+
|
|
58
|
+
constructor(data?: PartialMessage<GetFullInvoiceResponse>);
|
|
59
|
+
|
|
60
|
+
static readonly runtime: typeof proto3;
|
|
61
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetFullInvoiceResponse";
|
|
62
|
+
static readonly fields: FieldList;
|
|
63
|
+
|
|
64
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetFullInvoiceResponse;
|
|
65
|
+
|
|
66
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetFullInvoiceResponse;
|
|
67
|
+
|
|
68
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetFullInvoiceResponse;
|
|
69
|
+
|
|
70
|
+
static equals(a: GetFullInvoiceResponse | PlainMessage<GetFullInvoiceResponse> | undefined, b: GetFullInvoiceResponse | PlainMessage<GetFullInvoiceResponse> | undefined): boolean;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* @generated from message ct_logic_uni_rev_order.v1.InvoiceAndOrderReq
|
|
75
|
+
*/
|
|
76
|
+
export declare class InvoiceAndOrderReq extends Message<InvoiceAndOrderReq> {
|
|
77
|
+
/**
|
|
78
|
+
* @generated from field: int64 order_id = 1;
|
|
79
|
+
*/
|
|
80
|
+
orderId: bigint;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* @generated from field: ct_logic_uni_rev_order.v1.Invoicee invoicee = 2;
|
|
84
|
+
*/
|
|
85
|
+
invoicee?: Invoicee;
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* @generated from field: string requester = 3;
|
|
89
|
+
*/
|
|
90
|
+
requester: string;
|
|
91
|
+
|
|
92
|
+
constructor(data?: PartialMessage<InvoiceAndOrderReq>);
|
|
93
|
+
|
|
94
|
+
static readonly runtime: typeof proto3;
|
|
95
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.InvoiceAndOrderReq";
|
|
96
|
+
static readonly fields: FieldList;
|
|
97
|
+
|
|
98
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InvoiceAndOrderReq;
|
|
99
|
+
|
|
100
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InvoiceAndOrderReq;
|
|
101
|
+
|
|
102
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InvoiceAndOrderReq;
|
|
103
|
+
|
|
104
|
+
static equals(a: InvoiceAndOrderReq | PlainMessage<InvoiceAndOrderReq> | undefined, b: InvoiceAndOrderReq | PlainMessage<InvoiceAndOrderReq> | undefined): boolean;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/**
|
|
108
|
+
* @generated from message ct_logic_uni_rev_order.v1.IssuableOrder
|
|
109
|
+
*/
|
|
110
|
+
export declare class IssuableOrder extends Message<IssuableOrder> {
|
|
111
|
+
/**
|
|
112
|
+
* @generated from field: int64 order_id = 1;
|
|
113
|
+
*/
|
|
114
|
+
orderId: bigint;
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* @generated from field: ct_logic_uni_rev_order.v1.Invoicee invoicee = 2;
|
|
118
|
+
*/
|
|
119
|
+
invoicee?: Invoicee;
|
|
120
|
+
|
|
121
|
+
constructor(data?: PartialMessage<IssuableOrder>);
|
|
122
|
+
|
|
123
|
+
static readonly runtime: typeof proto3;
|
|
124
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.IssuableOrder";
|
|
125
|
+
static readonly fields: FieldList;
|
|
126
|
+
|
|
127
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): IssuableOrder;
|
|
128
|
+
|
|
129
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): IssuableOrder;
|
|
130
|
+
|
|
131
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): IssuableOrder;
|
|
132
|
+
|
|
133
|
+
static equals(a: IssuableOrder | PlainMessage<IssuableOrder> | undefined, b: IssuableOrder | PlainMessage<IssuableOrder> | undefined): boolean;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* @generated from message ct_logic_uni_rev_order.v1.EInvoiceSettingConfig
|
|
138
|
+
*/
|
|
139
|
+
export declare class EInvoiceSettingConfig extends Message<EInvoiceSettingConfig> {
|
|
140
|
+
/**
|
|
141
|
+
* @generated from field: string pattern_number = 1;
|
|
142
|
+
*/
|
|
143
|
+
patternNumber: string;
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* @generated from field: string pattern_sign = 2;
|
|
147
|
+
*/
|
|
148
|
+
patternSign: string;
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* @generated from field: string invoice_type_id = 3;
|
|
152
|
+
*/
|
|
153
|
+
invoiceTypeId: string;
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* @generated from field: string invoice_type_name = 4;
|
|
157
|
+
*/
|
|
158
|
+
invoiceTypeName: string;
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* @generated from field: int64 modify_date = 5;
|
|
162
|
+
*/
|
|
163
|
+
modifyDate: bigint;
|
|
164
|
+
|
|
165
|
+
constructor(data?: PartialMessage<EInvoiceSettingConfig>);
|
|
166
|
+
|
|
167
|
+
static readonly runtime: typeof proto3;
|
|
168
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.EInvoiceSettingConfig";
|
|
169
|
+
static readonly fields: FieldList;
|
|
170
|
+
|
|
171
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EInvoiceSettingConfig;
|
|
172
|
+
|
|
173
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EInvoiceSettingConfig;
|
|
174
|
+
|
|
175
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EInvoiceSettingConfig;
|
|
176
|
+
|
|
177
|
+
static equals(a: EInvoiceSettingConfig | PlainMessage<EInvoiceSettingConfig> | undefined, b: EInvoiceSettingConfig | PlainMessage<EInvoiceSettingConfig> | undefined): boolean;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* @generated from message ct_logic_uni_rev_order.v1.EInvoiceSetting
|
|
182
|
+
*/
|
|
183
|
+
export declare class EInvoiceSetting extends Message<EInvoiceSetting> {
|
|
184
|
+
/**
|
|
185
|
+
* @generated from field: repeated string payment_method = 1;
|
|
186
|
+
*/
|
|
187
|
+
paymentMethod: string[];
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* @generated from field: string key = 2;
|
|
191
|
+
*/
|
|
192
|
+
key: string;
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* @generated from field: bool status = 3;
|
|
196
|
+
*/
|
|
197
|
+
status: boolean;
|
|
198
|
+
|
|
199
|
+
/**
|
|
200
|
+
* @generated from field: ct_logic_uni_rev_order.v1.EInvoiceSettingConfig config = 4;
|
|
201
|
+
*/
|
|
202
|
+
config?: EInvoiceSettingConfig;
|
|
203
|
+
|
|
204
|
+
constructor(data?: PartialMessage<EInvoiceSetting>);
|
|
205
|
+
|
|
206
|
+
static readonly runtime: typeof proto3;
|
|
207
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.EInvoiceSetting";
|
|
208
|
+
static readonly fields: FieldList;
|
|
209
|
+
|
|
210
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EInvoiceSetting;
|
|
211
|
+
|
|
212
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EInvoiceSetting;
|
|
213
|
+
|
|
214
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EInvoiceSetting;
|
|
215
|
+
|
|
216
|
+
static equals(a: EInvoiceSetting | PlainMessage<EInvoiceSetting> | undefined, b: EInvoiceSetting | PlainMessage<EInvoiceSetting> | undefined): boolean;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* @generated from message ct_logic_uni_rev_order.v1.EInvoiceOrderDB
|
|
221
|
+
*/
|
|
222
|
+
export declare class EInvoiceOrderDB extends Message<EInvoiceOrderDB> {
|
|
223
|
+
/**
|
|
224
|
+
* @generated from field: int64 id = 1;
|
|
225
|
+
*/
|
|
226
|
+
id: bigint;
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* @generated from field: string invoice_id = 2;
|
|
230
|
+
*/
|
|
231
|
+
invoiceId: string;
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* @generated from field: int64 account_id = 3;
|
|
235
|
+
*/
|
|
236
|
+
accountId: bigint;
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* @generated from field: string tax_id = 4;
|
|
240
|
+
*/
|
|
241
|
+
taxId: string;
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* @generated from field: string bank_id = 5;
|
|
245
|
+
*/
|
|
246
|
+
bankId: string;
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* @generated from field: string company_name = 6;
|
|
250
|
+
*/
|
|
251
|
+
companyName: string;
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* @generated from field: string invoice_address = 7;
|
|
255
|
+
*/
|
|
256
|
+
invoiceAddress: string;
|
|
257
|
+
|
|
258
|
+
/**
|
|
259
|
+
* @generated from field: string invoice_email = 8;
|
|
260
|
+
*/
|
|
261
|
+
invoiceEmail: string;
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* @generated from field: string invoice_phone = 9;
|
|
265
|
+
*/
|
|
266
|
+
invoicePhone: string;
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* @generated from field: int64 invoice_amount = 10;
|
|
270
|
+
*/
|
|
271
|
+
invoiceAmount: bigint;
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* @generated from field: string payment_method = 11;
|
|
275
|
+
*/
|
|
276
|
+
paymentMethod: string;
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* @generated from field: string payment_code = 12;
|
|
280
|
+
*/
|
|
281
|
+
paymentCode: string;
|
|
282
|
+
|
|
283
|
+
/**
|
|
284
|
+
* @generated from field: string paid_date = 13;
|
|
285
|
+
*/
|
|
286
|
+
paidDate: string;
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* @generated from field: string addition_params = 14;
|
|
290
|
+
*/
|
|
291
|
+
additionParams: string;
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* @generated from field: bool is_require_invoice = 15;
|
|
295
|
+
*/
|
|
296
|
+
isRequireInvoice: boolean;
|
|
297
|
+
|
|
298
|
+
/**
|
|
299
|
+
* @generated from field: int64 created_date = 16;
|
|
300
|
+
*/
|
|
301
|
+
createdDate: bigint;
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* @generated from field: string error_text = 17;
|
|
305
|
+
*/
|
|
306
|
+
errorText: string;
|
|
307
|
+
|
|
308
|
+
/**
|
|
309
|
+
* @generated from field: string invoice_setting_key = 18;
|
|
310
|
+
*/
|
|
311
|
+
invoiceSettingKey: string;
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* @generated from field: string invoice_sign = 19;
|
|
315
|
+
*/
|
|
316
|
+
invoiceSign: string;
|
|
317
|
+
|
|
318
|
+
/**
|
|
319
|
+
* @generated from field: int64 shard_paid_date = 20;
|
|
320
|
+
*/
|
|
321
|
+
shardPaidDate: bigint;
|
|
322
|
+
|
|
323
|
+
/**
|
|
324
|
+
* @generated from field: int64 failed_order_id = 21;
|
|
325
|
+
*/
|
|
326
|
+
failedOrderId: bigint;
|
|
327
|
+
|
|
328
|
+
/**
|
|
329
|
+
* @generated from field: bool is_cs_request = 22;
|
|
330
|
+
*/
|
|
331
|
+
isCsRequest: boolean;
|
|
332
|
+
|
|
333
|
+
constructor(data?: PartialMessage<EInvoiceOrderDB>);
|
|
334
|
+
|
|
335
|
+
static readonly runtime: typeof proto3;
|
|
336
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.EInvoiceOrderDB";
|
|
337
|
+
static readonly fields: FieldList;
|
|
338
|
+
|
|
339
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EInvoiceOrderDB;
|
|
340
|
+
|
|
341
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EInvoiceOrderDB;
|
|
342
|
+
|
|
343
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EInvoiceOrderDB;
|
|
344
|
+
|
|
345
|
+
static equals(a: EInvoiceOrderDB | PlainMessage<EInvoiceOrderDB> | undefined, b: EInvoiceOrderDB | PlainMessage<EInvoiceOrderDB> | undefined): boolean;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetFullInvoicesForCSRequest
|
|
350
|
+
*/
|
|
351
|
+
export declare class GetFullInvoicesForCSRequest extends Message<GetFullInvoicesForCSRequest> {
|
|
352
|
+
/**
|
|
353
|
+
* @generated from field: int64 start_date = 1;
|
|
354
|
+
*/
|
|
355
|
+
startDate: bigint;
|
|
356
|
+
|
|
357
|
+
/**
|
|
358
|
+
* @generated from field: int64 end_date = 2;
|
|
359
|
+
*/
|
|
360
|
+
endDate: bigint;
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* @generated from field: string key = 3;
|
|
364
|
+
*/
|
|
365
|
+
key: string;
|
|
366
|
+
|
|
367
|
+
/**
|
|
368
|
+
* @generated from field: int64 page = 4;
|
|
369
|
+
*/
|
|
370
|
+
page: bigint;
|
|
371
|
+
|
|
372
|
+
/**
|
|
373
|
+
* @generated from field: int64 limit = 5;
|
|
374
|
+
*/
|
|
375
|
+
limit: bigint;
|
|
376
|
+
|
|
377
|
+
/**
|
|
378
|
+
* @generated from field: bool load_issued_invoice_only = 6;
|
|
379
|
+
*/
|
|
380
|
+
loadIssuedInvoiceOnly: boolean;
|
|
381
|
+
|
|
382
|
+
constructor(data?: PartialMessage<GetFullInvoicesForCSRequest>);
|
|
383
|
+
|
|
384
|
+
static readonly runtime: typeof proto3;
|
|
385
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetFullInvoicesForCSRequest";
|
|
386
|
+
static readonly fields: FieldList;
|
|
387
|
+
|
|
388
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetFullInvoicesForCSRequest;
|
|
389
|
+
|
|
390
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetFullInvoicesForCSRequest;
|
|
391
|
+
|
|
392
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetFullInvoicesForCSRequest;
|
|
393
|
+
|
|
394
|
+
static equals(a: GetFullInvoicesForCSRequest | PlainMessage<GetFullInvoicesForCSRequest> | undefined, b: GetFullInvoicesForCSRequest | PlainMessage<GetFullInvoicesForCSRequest> | undefined): boolean;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
/**
|
|
398
|
+
* @generated from message ct_logic_uni_rev_order.v1.ResponseInvoiceForCS
|
|
399
|
+
*/
|
|
400
|
+
export declare class ResponseInvoiceForCS extends Message<ResponseInvoiceForCS> {
|
|
401
|
+
/**
|
|
402
|
+
* @generated from field: int64 order_id = 1;
|
|
403
|
+
*/
|
|
404
|
+
orderId: bigint;
|
|
405
|
+
|
|
406
|
+
/**
|
|
407
|
+
* @generated from field: string invoice_id = 2;
|
|
408
|
+
*/
|
|
409
|
+
invoiceId: string;
|
|
410
|
+
|
|
411
|
+
/**
|
|
412
|
+
* @generated from field: int64 account_id = 3;
|
|
413
|
+
*/
|
|
414
|
+
accountId: bigint;
|
|
415
|
+
|
|
416
|
+
/**
|
|
417
|
+
* @generated from field: string tax_id = 4;
|
|
418
|
+
*/
|
|
419
|
+
taxId: string;
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* @generated from field: string company_name = 5;
|
|
423
|
+
*/
|
|
424
|
+
companyName: string;
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* @generated from field: string invoice_address = 6;
|
|
428
|
+
*/
|
|
429
|
+
invoiceAddress: string;
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* @generated from field: string invoice_email = 7;
|
|
433
|
+
*/
|
|
434
|
+
invoiceEmail: string;
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* @generated from field: string invoice_phone = 8;
|
|
438
|
+
*/
|
|
439
|
+
invoicePhone: string;
|
|
440
|
+
|
|
441
|
+
/**
|
|
442
|
+
* @generated from field: int64 invoice_amount = 9;
|
|
443
|
+
*/
|
|
444
|
+
invoiceAmount: bigint;
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* @generated from field: string payment_method = 10;
|
|
448
|
+
*/
|
|
449
|
+
paymentMethod: string;
|
|
450
|
+
|
|
451
|
+
/**
|
|
452
|
+
* @generated from field: string payment_code = 11;
|
|
453
|
+
*/
|
|
454
|
+
paymentCode: string;
|
|
455
|
+
|
|
456
|
+
/**
|
|
457
|
+
* @generated from field: string paid_date = 12;
|
|
458
|
+
*/
|
|
459
|
+
paidDate: string;
|
|
460
|
+
|
|
461
|
+
/**
|
|
462
|
+
* @generated from field: string sign = 13;
|
|
463
|
+
*/
|
|
464
|
+
sign: string;
|
|
465
|
+
|
|
466
|
+
/**
|
|
467
|
+
* @generated from field: string invoice_settings_key = 14;
|
|
468
|
+
*/
|
|
469
|
+
invoiceSettingsKey: string;
|
|
470
|
+
|
|
471
|
+
/**
|
|
472
|
+
* @generated from field: string created_at = 15;
|
|
473
|
+
*/
|
|
474
|
+
createdAt: string;
|
|
475
|
+
|
|
476
|
+
/**
|
|
477
|
+
* @generated from field: int64 tax_amount = 16;
|
|
478
|
+
*/
|
|
479
|
+
taxAmount: bigint;
|
|
480
|
+
|
|
481
|
+
/**
|
|
482
|
+
* @generated from field: int64 net_amount = 17;
|
|
483
|
+
*/
|
|
484
|
+
netAmount: bigint;
|
|
485
|
+
|
|
486
|
+
constructor(data?: PartialMessage<ResponseInvoiceForCS>);
|
|
487
|
+
|
|
488
|
+
static readonly runtime: typeof proto3;
|
|
489
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ResponseInvoiceForCS";
|
|
490
|
+
static readonly fields: FieldList;
|
|
491
|
+
|
|
492
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ResponseInvoiceForCS;
|
|
493
|
+
|
|
494
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ResponseInvoiceForCS;
|
|
495
|
+
|
|
496
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ResponseInvoiceForCS;
|
|
497
|
+
|
|
498
|
+
static equals(a: ResponseInvoiceForCS | PlainMessage<ResponseInvoiceForCS> | undefined, b: ResponseInvoiceForCS | PlainMessage<ResponseInvoiceForCS> | undefined): boolean;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
/**
|
|
502
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetFullInvoicesForCSResponse
|
|
503
|
+
*/
|
|
504
|
+
export declare class GetFullInvoicesForCSResponse extends Message<GetFullInvoicesForCSResponse> {
|
|
505
|
+
/**
|
|
506
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.ResponseInvoiceForCS data = 1;
|
|
507
|
+
*/
|
|
508
|
+
data: ResponseInvoiceForCS[];
|
|
509
|
+
|
|
510
|
+
/**
|
|
511
|
+
* @generated from field: ct_logic_uni_rev_order.v1.GetAllInvoiceTypeResponse invoice_settings = 2;
|
|
512
|
+
*/
|
|
513
|
+
invoiceSettings?: GetAllInvoiceTypeResponse;
|
|
514
|
+
|
|
515
|
+
/**
|
|
516
|
+
* @generated from field: int64 offset = 3;
|
|
517
|
+
*/
|
|
518
|
+
offset: bigint;
|
|
519
|
+
|
|
520
|
+
/**
|
|
521
|
+
* @generated from field: int64 limit = 4;
|
|
522
|
+
*/
|
|
523
|
+
limit: bigint;
|
|
524
|
+
|
|
525
|
+
/**
|
|
526
|
+
* @generated from field: int64 total = 5;
|
|
527
|
+
*/
|
|
528
|
+
total: bigint;
|
|
529
|
+
|
|
530
|
+
constructor(data?: PartialMessage<GetFullInvoicesForCSResponse>);
|
|
531
|
+
|
|
532
|
+
static readonly runtime: typeof proto3;
|
|
533
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetFullInvoicesForCSResponse";
|
|
534
|
+
static readonly fields: FieldList;
|
|
535
|
+
|
|
536
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetFullInvoicesForCSResponse;
|
|
537
|
+
|
|
538
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetFullInvoicesForCSResponse;
|
|
539
|
+
|
|
540
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetFullInvoicesForCSResponse;
|
|
541
|
+
|
|
542
|
+
static equals(a: GetFullInvoicesForCSResponse | PlainMessage<GetFullInvoicesForCSResponse> | undefined, b: GetFullInvoicesForCSResponse | PlainMessage<GetFullInvoicesForCSResponse> | undefined): boolean;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
/**
|
|
546
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetOrdersByDateRequest
|
|
547
|
+
*/
|
|
548
|
+
export declare class GetOrdersByDateRequest extends Message<GetOrdersByDateRequest> {
|
|
549
|
+
/**
|
|
550
|
+
* @generated from field: int64 start_date = 1;
|
|
551
|
+
*/
|
|
552
|
+
startDate: bigint;
|
|
553
|
+
|
|
554
|
+
/**
|
|
555
|
+
* @generated from field: int64 end_date = 2;
|
|
556
|
+
*/
|
|
557
|
+
endDate: bigint;
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* @generated from field: int64 page = 3;
|
|
561
|
+
*/
|
|
562
|
+
page: bigint;
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* @generated from field: int64 limit = 4;
|
|
566
|
+
*/
|
|
567
|
+
limit: bigint;
|
|
568
|
+
|
|
569
|
+
/**
|
|
570
|
+
* @generated from field: string payment_method = 5;
|
|
571
|
+
*/
|
|
572
|
+
paymentMethod: string;
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* @generated from field: bool load_issued_invoice_only = 6;
|
|
576
|
+
*/
|
|
577
|
+
loadIssuedInvoiceOnly: boolean;
|
|
578
|
+
|
|
579
|
+
constructor(data?: PartialMessage<GetOrdersByDateRequest>);
|
|
580
|
+
|
|
581
|
+
static readonly runtime: typeof proto3;
|
|
582
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetOrdersByDateRequest";
|
|
583
|
+
static readonly fields: FieldList;
|
|
584
|
+
|
|
585
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOrdersByDateRequest;
|
|
586
|
+
|
|
587
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOrdersByDateRequest;
|
|
588
|
+
|
|
589
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOrdersByDateRequest;
|
|
590
|
+
|
|
591
|
+
static equals(a: GetOrdersByDateRequest | PlainMessage<GetOrdersByDateRequest> | undefined, b: GetOrdersByDateRequest | PlainMessage<GetOrdersByDateRequest> | undefined): boolean;
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
/**
|
|
595
|
+
* @generated from message ct_logic_uni_rev_order.v1.RespInvoice
|
|
596
|
+
*/
|
|
597
|
+
export declare class RespInvoice extends Message<RespInvoice> {
|
|
598
|
+
/**
|
|
599
|
+
* @generated from field: string invoice_id = 1;
|
|
600
|
+
*/
|
|
601
|
+
invoiceId: string;
|
|
602
|
+
|
|
603
|
+
/**
|
|
604
|
+
* @generated from field: string invoice_date = 2;
|
|
605
|
+
*/
|
|
606
|
+
invoiceDate: string;
|
|
607
|
+
|
|
608
|
+
/**
|
|
609
|
+
* @generated from field: int64 invoice_amount = 3;
|
|
610
|
+
*/
|
|
611
|
+
invoiceAmount: bigint;
|
|
612
|
+
|
|
613
|
+
/**
|
|
614
|
+
* @generated from field: int64 number_of_order = 4;
|
|
615
|
+
*/
|
|
616
|
+
numberOfOrder: bigint;
|
|
617
|
+
|
|
618
|
+
/**
|
|
619
|
+
* @generated from field: string issue_date = 5;
|
|
620
|
+
*/
|
|
621
|
+
issueDate: string;
|
|
622
|
+
|
|
623
|
+
/**
|
|
624
|
+
* @generated from field: int64 tax_amount = 6;
|
|
625
|
+
*/
|
|
626
|
+
taxAmount: bigint;
|
|
627
|
+
|
|
628
|
+
/**
|
|
629
|
+
* @generated from field: int64 net_amount = 7;
|
|
630
|
+
*/
|
|
631
|
+
netAmount: bigint;
|
|
632
|
+
|
|
633
|
+
constructor(data?: PartialMessage<RespInvoice>);
|
|
634
|
+
|
|
635
|
+
static readonly runtime: typeof proto3;
|
|
636
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.RespInvoice";
|
|
637
|
+
static readonly fields: FieldList;
|
|
638
|
+
|
|
639
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RespInvoice;
|
|
640
|
+
|
|
641
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RespInvoice;
|
|
642
|
+
|
|
643
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RespInvoice;
|
|
644
|
+
|
|
645
|
+
static equals(a: RespInvoice | PlainMessage<RespInvoice> | undefined, b: RespInvoice | PlainMessage<RespInvoice> | undefined): boolean;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
/**
|
|
649
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetOrdersByDateResponse
|
|
650
|
+
*/
|
|
651
|
+
export declare class GetOrdersByDateResponse extends Message<GetOrdersByDateResponse> {
|
|
652
|
+
/**
|
|
653
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.RespInvoice data = 1;
|
|
654
|
+
*/
|
|
655
|
+
data: RespInvoice[];
|
|
656
|
+
|
|
657
|
+
/**
|
|
658
|
+
* @generated from field: int64 offset = 2;
|
|
659
|
+
*/
|
|
660
|
+
offset: bigint;
|
|
661
|
+
|
|
662
|
+
/**
|
|
663
|
+
* @generated from field: int64 limit = 3;
|
|
664
|
+
*/
|
|
665
|
+
limit: bigint;
|
|
666
|
+
|
|
667
|
+
/**
|
|
668
|
+
* @generated from field: int64 total = 4;
|
|
669
|
+
*/
|
|
670
|
+
total: bigint;
|
|
671
|
+
|
|
672
|
+
constructor(data?: PartialMessage<GetOrdersByDateResponse>);
|
|
673
|
+
|
|
674
|
+
static readonly runtime: typeof proto3;
|
|
675
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetOrdersByDateResponse";
|
|
676
|
+
static readonly fields: FieldList;
|
|
677
|
+
|
|
678
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetOrdersByDateResponse;
|
|
679
|
+
|
|
680
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetOrdersByDateResponse;
|
|
681
|
+
|
|
682
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetOrdersByDateResponse;
|
|
683
|
+
|
|
684
|
+
static equals(a: GetOrdersByDateResponse | PlainMessage<GetOrdersByDateResponse> | undefined, b: GetOrdersByDateResponse | PlainMessage<GetOrdersByDateResponse> | undefined): boolean;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
/**
|
|
688
|
+
* @generated from message ct_logic_uni_rev_order.v1.IssueCombinedInvoiceByDateRequest
|
|
689
|
+
*/
|
|
690
|
+
export declare class IssueCombinedInvoiceByDateRequest extends Message<IssueCombinedInvoiceByDateRequest> {
|
|
691
|
+
/**
|
|
692
|
+
* @generated from field: string publish_date = 1;
|
|
693
|
+
*/
|
|
694
|
+
publishDate: string;
|
|
695
|
+
|
|
696
|
+
/**
|
|
697
|
+
* @generated from field: string invoice_key = 2;
|
|
698
|
+
*/
|
|
699
|
+
invoiceKey: string;
|
|
700
|
+
|
|
701
|
+
/**
|
|
702
|
+
* @generated from field: string logged_user = 3;
|
|
703
|
+
*/
|
|
704
|
+
loggedUser: string;
|
|
705
|
+
|
|
706
|
+
/**
|
|
707
|
+
* @generated from field: string require_from = 4;
|
|
708
|
+
*/
|
|
709
|
+
requireFrom: string;
|
|
710
|
+
|
|
711
|
+
constructor(data?: PartialMessage<IssueCombinedInvoiceByDateRequest>);
|
|
712
|
+
|
|
713
|
+
static readonly runtime: typeof proto3;
|
|
714
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.IssueCombinedInvoiceByDateRequest";
|
|
715
|
+
static readonly fields: FieldList;
|
|
716
|
+
|
|
717
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): IssueCombinedInvoiceByDateRequest;
|
|
718
|
+
|
|
719
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): IssueCombinedInvoiceByDateRequest;
|
|
720
|
+
|
|
721
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): IssueCombinedInvoiceByDateRequest;
|
|
722
|
+
|
|
723
|
+
static equals(a: IssueCombinedInvoiceByDateRequest | PlainMessage<IssueCombinedInvoiceByDateRequest> | undefined, b: IssueCombinedInvoiceByDateRequest | PlainMessage<IssueCombinedInvoiceByDateRequest> | undefined): boolean;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
/**
|
|
727
|
+
* @generated from message ct_logic_uni_rev_order.v1.IssueCombinedInvoiceByDateResponse
|
|
728
|
+
*/
|
|
729
|
+
export declare class IssueCombinedInvoiceByDateResponse extends Message<IssueCombinedInvoiceByDateResponse> {
|
|
730
|
+
/**
|
|
731
|
+
* @generated from field: string invoice_id = 1;
|
|
732
|
+
*/
|
|
733
|
+
invoiceId: string;
|
|
734
|
+
|
|
735
|
+
constructor(data?: PartialMessage<IssueCombinedInvoiceByDateResponse>);
|
|
736
|
+
|
|
737
|
+
static readonly runtime: typeof proto3;
|
|
738
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.IssueCombinedInvoiceByDateResponse";
|
|
739
|
+
static readonly fields: FieldList;
|
|
740
|
+
|
|
741
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): IssueCombinedInvoiceByDateResponse;
|
|
742
|
+
|
|
743
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): IssueCombinedInvoiceByDateResponse;
|
|
744
|
+
|
|
745
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): IssueCombinedInvoiceByDateResponse;
|
|
746
|
+
|
|
747
|
+
static equals(a: IssueCombinedInvoiceByDateResponse | PlainMessage<IssueCombinedInvoiceByDateResponse> | undefined, b: IssueCombinedInvoiceByDateResponse | PlainMessage<IssueCombinedInvoiceByDateResponse> | undefined): boolean;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
/**
|
|
751
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetAllInvoiceTypeRequest
|
|
752
|
+
*/
|
|
753
|
+
export declare class GetAllInvoiceTypeRequest extends Message<GetAllInvoiceTypeRequest> {
|
|
754
|
+
constructor(data?: PartialMessage<GetAllInvoiceTypeRequest>);
|
|
755
|
+
|
|
756
|
+
static readonly runtime: typeof proto3;
|
|
757
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetAllInvoiceTypeRequest";
|
|
758
|
+
static readonly fields: FieldList;
|
|
759
|
+
|
|
760
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetAllInvoiceTypeRequest;
|
|
761
|
+
|
|
762
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetAllInvoiceTypeRequest;
|
|
763
|
+
|
|
764
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetAllInvoiceTypeRequest;
|
|
765
|
+
|
|
766
|
+
static equals(a: GetAllInvoiceTypeRequest | PlainMessage<GetAllInvoiceTypeRequest> | undefined, b: GetAllInvoiceTypeRequest | PlainMessage<GetAllInvoiceTypeRequest> | undefined): boolean;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
/**
|
|
770
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetAllInvoiceTypeResponse
|
|
771
|
+
*/
|
|
772
|
+
export declare class GetAllInvoiceTypeResponse extends Message<GetAllInvoiceTypeResponse> {
|
|
773
|
+
/**
|
|
774
|
+
* @generated from field: ct_logic_uni_rev_order.v1.EInvoiceSetting group_invoice = 1;
|
|
775
|
+
*/
|
|
776
|
+
groupInvoice?: EInvoiceSetting;
|
|
777
|
+
|
|
778
|
+
/**
|
|
779
|
+
* @generated from field: ct_logic_uni_rev_order.v1.EInvoiceSetting require_invoice = 2;
|
|
780
|
+
*/
|
|
781
|
+
requireInvoice?: EInvoiceSetting;
|
|
782
|
+
|
|
783
|
+
/**
|
|
784
|
+
* @generated from field: ct_logic_uni_rev_order.v1.EInvoiceSetting manual_invoice = 3;
|
|
785
|
+
*/
|
|
786
|
+
manualInvoice?: EInvoiceSetting;
|
|
787
|
+
|
|
788
|
+
/**
|
|
789
|
+
* @generated from field: ct_logic_uni_rev_order.v1.EInvoiceSetting econtract_invoice = 4;
|
|
790
|
+
*/
|
|
791
|
+
econtractInvoice?: EInvoiceSetting;
|
|
792
|
+
|
|
793
|
+
/**
|
|
794
|
+
* @generated from field: ct_logic_uni_rev_order.v1.EInvoiceSetting internal_invoice = 5;
|
|
795
|
+
*/
|
|
796
|
+
internalInvoice?: EInvoiceSetting;
|
|
797
|
+
|
|
798
|
+
constructor(data?: PartialMessage<GetAllInvoiceTypeResponse>);
|
|
799
|
+
|
|
800
|
+
static readonly runtime: typeof proto3;
|
|
801
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetAllInvoiceTypeResponse";
|
|
802
|
+
static readonly fields: FieldList;
|
|
803
|
+
|
|
804
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetAllInvoiceTypeResponse;
|
|
805
|
+
|
|
806
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetAllInvoiceTypeResponse;
|
|
807
|
+
|
|
808
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetAllInvoiceTypeResponse;
|
|
809
|
+
|
|
810
|
+
static equals(a: GetAllInvoiceTypeResponse | PlainMessage<GetAllInvoiceTypeResponse> | undefined, b: GetAllInvoiceTypeResponse | PlainMessage<GetAllInvoiceTypeResponse> | undefined): boolean;
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
/**
|
|
814
|
+
* @generated from message ct_logic_uni_rev_order.v1.InputSubInvoiceSetting
|
|
815
|
+
*/
|
|
816
|
+
export declare class InputSubInvoiceSetting extends Message<InputSubInvoiceSetting> {
|
|
817
|
+
/**
|
|
818
|
+
* @generated from field: string pattern_number = 1;
|
|
819
|
+
*/
|
|
820
|
+
patternNumber: string;
|
|
821
|
+
|
|
822
|
+
/**
|
|
823
|
+
* @generated from field: string pattern_sign = 2;
|
|
824
|
+
*/
|
|
825
|
+
patternSign: string;
|
|
826
|
+
|
|
827
|
+
/**
|
|
828
|
+
* @generated from field: string modify_user_id = 3;
|
|
829
|
+
*/
|
|
830
|
+
modifyUserId: string;
|
|
831
|
+
|
|
832
|
+
/**
|
|
833
|
+
* @generated from field: string invoicestype_id = 4;
|
|
834
|
+
*/
|
|
835
|
+
invoicestypeId: string;
|
|
836
|
+
|
|
837
|
+
/**
|
|
838
|
+
* @generated from field: string invoice_type_name = 5;
|
|
839
|
+
*/
|
|
840
|
+
invoiceTypeName: string;
|
|
841
|
+
|
|
842
|
+
/**
|
|
843
|
+
* @generated from field: string activity_name = 6;
|
|
844
|
+
*/
|
|
845
|
+
activityName: string;
|
|
846
|
+
|
|
847
|
+
constructor(data?: PartialMessage<InputSubInvoiceSetting>);
|
|
848
|
+
|
|
849
|
+
static readonly runtime: typeof proto3;
|
|
850
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.InputSubInvoiceSetting";
|
|
851
|
+
static readonly fields: FieldList;
|
|
852
|
+
|
|
853
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InputSubInvoiceSetting;
|
|
854
|
+
|
|
855
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InputSubInvoiceSetting;
|
|
856
|
+
|
|
857
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InputSubInvoiceSetting;
|
|
858
|
+
|
|
859
|
+
static equals(a: InputSubInvoiceSetting | PlainMessage<InputSubInvoiceSetting> | undefined, b: InputSubInvoiceSetting | PlainMessage<InputSubInvoiceSetting> | undefined): boolean;
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
/**
|
|
863
|
+
* @generated from message ct_logic_uni_rev_order.v1.UpdateInvoiceTypeRequest
|
|
864
|
+
*/
|
|
865
|
+
export declare class UpdateInvoiceTypeRequest extends Message<UpdateInvoiceTypeRequest> {
|
|
866
|
+
/**
|
|
867
|
+
* @generated from field: ct_logic_uni_rev_order.v1.InputSubInvoiceSetting config = 1;
|
|
868
|
+
*/
|
|
869
|
+
config?: InputSubInvoiceSetting;
|
|
870
|
+
|
|
871
|
+
/**
|
|
872
|
+
* @generated from field: bool status = 2;
|
|
873
|
+
*/
|
|
874
|
+
status: boolean;
|
|
875
|
+
|
|
876
|
+
/**
|
|
877
|
+
* @generated from field: string key = 3;
|
|
878
|
+
*/
|
|
879
|
+
key: string;
|
|
880
|
+
|
|
881
|
+
constructor(data?: PartialMessage<UpdateInvoiceTypeRequest>);
|
|
882
|
+
|
|
883
|
+
static readonly runtime: typeof proto3;
|
|
884
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.UpdateInvoiceTypeRequest";
|
|
885
|
+
static readonly fields: FieldList;
|
|
886
|
+
|
|
887
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateInvoiceTypeRequest;
|
|
888
|
+
|
|
889
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateInvoiceTypeRequest;
|
|
890
|
+
|
|
891
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateInvoiceTypeRequest;
|
|
892
|
+
|
|
893
|
+
static equals(a: UpdateInvoiceTypeRequest | PlainMessage<UpdateInvoiceTypeRequest> | undefined, b: UpdateInvoiceTypeRequest | PlainMessage<UpdateInvoiceTypeRequest> | undefined): boolean;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
/**
|
|
897
|
+
* @generated from message ct_logic_uni_rev_order.v1.UpdateInvoiceTypeResponse
|
|
898
|
+
*/
|
|
899
|
+
export declare class UpdateInvoiceTypeResponse extends Message<UpdateInvoiceTypeResponse> {
|
|
900
|
+
/**
|
|
901
|
+
* @generated from field: bool success = 1;
|
|
902
|
+
*/
|
|
903
|
+
success: boolean;
|
|
904
|
+
|
|
905
|
+
/**
|
|
906
|
+
* @generated from field: string error = 2;
|
|
907
|
+
*/
|
|
908
|
+
error: string;
|
|
909
|
+
|
|
910
|
+
constructor(data?: PartialMessage<UpdateInvoiceTypeResponse>);
|
|
911
|
+
|
|
912
|
+
static readonly runtime: typeof proto3;
|
|
913
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.UpdateInvoiceTypeResponse";
|
|
914
|
+
static readonly fields: FieldList;
|
|
915
|
+
|
|
916
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateInvoiceTypeResponse;
|
|
917
|
+
|
|
918
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateInvoiceTypeResponse;
|
|
919
|
+
|
|
920
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): UpdateInvoiceTypeResponse;
|
|
921
|
+
|
|
922
|
+
static equals(a: UpdateInvoiceTypeResponse | PlainMessage<UpdateInvoiceTypeResponse> | undefined, b: UpdateInvoiceTypeResponse | PlainMessage<UpdateInvoiceTypeResponse> | undefined): boolean;
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
/**
|
|
926
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetInvoiceRequest
|
|
927
|
+
*/
|
|
928
|
+
export declare class GetInvoiceRequest extends Message<GetInvoiceRequest> {
|
|
929
|
+
/**
|
|
930
|
+
* @generated from field: string id = 1;
|
|
931
|
+
*/
|
|
932
|
+
id: string;
|
|
933
|
+
|
|
934
|
+
constructor(data?: PartialMessage<GetInvoiceRequest>);
|
|
935
|
+
|
|
936
|
+
static readonly runtime: typeof proto3;
|
|
937
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetInvoiceRequest";
|
|
938
|
+
static readonly fields: FieldList;
|
|
939
|
+
|
|
940
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetInvoiceRequest;
|
|
941
|
+
|
|
942
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetInvoiceRequest;
|
|
943
|
+
|
|
944
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetInvoiceRequest;
|
|
945
|
+
|
|
946
|
+
static equals(a: GetInvoiceRequest | PlainMessage<GetInvoiceRequest> | undefined, b: GetInvoiceRequest | PlainMessage<GetInvoiceRequest> | undefined): boolean;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
/**
|
|
950
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetInvoiceResponse
|
|
951
|
+
*/
|
|
952
|
+
export declare class GetInvoiceResponse extends Message<GetInvoiceResponse> {
|
|
953
|
+
/**
|
|
954
|
+
* @generated from field: string id = 1;
|
|
955
|
+
*/
|
|
956
|
+
id: string;
|
|
957
|
+
|
|
958
|
+
/**
|
|
959
|
+
* @generated from field: int64 number_of_orders = 2;
|
|
960
|
+
*/
|
|
961
|
+
numberOfOrders: bigint;
|
|
962
|
+
|
|
963
|
+
/**
|
|
964
|
+
* @generated from field: int64 account_id = 3;
|
|
965
|
+
*/
|
|
966
|
+
accountId: bigint;
|
|
967
|
+
|
|
968
|
+
/**
|
|
969
|
+
* @generated from field: string tax_id = 4;
|
|
970
|
+
*/
|
|
971
|
+
taxId: string;
|
|
972
|
+
|
|
973
|
+
/**
|
|
974
|
+
* @generated from field: string company_name = 5;
|
|
975
|
+
*/
|
|
976
|
+
companyName: string;
|
|
977
|
+
|
|
978
|
+
/**
|
|
979
|
+
* @generated from field: string invoice_id = 6;
|
|
980
|
+
*/
|
|
981
|
+
invoiceId: string;
|
|
982
|
+
|
|
983
|
+
/**
|
|
984
|
+
* @generated from field: string invoice_address = 7;
|
|
985
|
+
*/
|
|
986
|
+
invoiceAddress: string;
|
|
987
|
+
|
|
988
|
+
/**
|
|
989
|
+
* @generated from field: string invoice_email = 8;
|
|
990
|
+
*/
|
|
991
|
+
invoiceEmail: string;
|
|
992
|
+
|
|
993
|
+
/**
|
|
994
|
+
* @generated from field: string invoice_phone = 9;
|
|
995
|
+
*/
|
|
996
|
+
invoicePhone: string;
|
|
997
|
+
|
|
998
|
+
/**
|
|
999
|
+
* @generated from field: int64 invoice_amount = 10;
|
|
1000
|
+
*/
|
|
1001
|
+
invoiceAmount: bigint;
|
|
1002
|
+
|
|
1003
|
+
/**
|
|
1004
|
+
* @generated from field: string paid_date = 11;
|
|
1005
|
+
*/
|
|
1006
|
+
paidDate: string;
|
|
1007
|
+
|
|
1008
|
+
/**
|
|
1009
|
+
* @generated from field: string addition_params = 12;
|
|
1010
|
+
*/
|
|
1011
|
+
additionParams: string;
|
|
1012
|
+
|
|
1013
|
+
/**
|
|
1014
|
+
* @generated from field: string invoice_settings_key = 13;
|
|
1015
|
+
*/
|
|
1016
|
+
invoiceSettingsKey: string;
|
|
1017
|
+
|
|
1018
|
+
/**
|
|
1019
|
+
* @generated from field: int64 created_date = 14;
|
|
1020
|
+
*/
|
|
1021
|
+
createdDate: bigint;
|
|
1022
|
+
|
|
1023
|
+
/**
|
|
1024
|
+
* @generated from field: string invoice_sign = 15;
|
|
1025
|
+
*/
|
|
1026
|
+
invoiceSign: string;
|
|
1027
|
+
|
|
1028
|
+
/**
|
|
1029
|
+
* @generated from field: int64 shard_create_date = 16;
|
|
1030
|
+
*/
|
|
1031
|
+
shardCreateDate: bigint;
|
|
1032
|
+
|
|
1033
|
+
/**
|
|
1034
|
+
* @generated from field: int64 tax_amount = 17;
|
|
1035
|
+
*/
|
|
1036
|
+
taxAmount: bigint;
|
|
1037
|
+
|
|
1038
|
+
/**
|
|
1039
|
+
* @generated from field: int64 net_amount = 18;
|
|
1040
|
+
*/
|
|
1041
|
+
netAmount: bigint;
|
|
1042
|
+
|
|
1043
|
+
constructor(data?: PartialMessage<GetInvoiceResponse>);
|
|
1044
|
+
|
|
1045
|
+
static readonly runtime: typeof proto3;
|
|
1046
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetInvoiceResponse";
|
|
1047
|
+
static readonly fields: FieldList;
|
|
1048
|
+
|
|
1049
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetInvoiceResponse;
|
|
1050
|
+
|
|
1051
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetInvoiceResponse;
|
|
1052
|
+
|
|
1053
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetInvoiceResponse;
|
|
1054
|
+
|
|
1055
|
+
static equals(a: GetInvoiceResponse | PlainMessage<GetInvoiceResponse> | undefined, b: GetInvoiceResponse | PlainMessage<GetInvoiceResponse> | undefined): boolean;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
/**
|
|
1059
|
+
* @generated from message ct_logic_uni_rev_order.v1.IssueInvoiceForOrderRequest
|
|
1060
|
+
*/
|
|
1061
|
+
export declare class IssueInvoiceForOrderRequest extends Message<IssueInvoiceForOrderRequest> {
|
|
1062
|
+
/**
|
|
1063
|
+
* @generated from field: int64 order_id = 1;
|
|
1064
|
+
*/
|
|
1065
|
+
orderId: bigint;
|
|
1066
|
+
|
|
1067
|
+
/**
|
|
1068
|
+
* @generated from field: string company_name = 2;
|
|
1069
|
+
*/
|
|
1070
|
+
companyName: string;
|
|
1071
|
+
|
|
1072
|
+
/**
|
|
1073
|
+
* @generated from field: string tax = 3;
|
|
1074
|
+
*/
|
|
1075
|
+
tax: string;
|
|
1076
|
+
|
|
1077
|
+
/**
|
|
1078
|
+
* @generated from field: string tax_id = 4;
|
|
1079
|
+
*/
|
|
1080
|
+
taxId: string;
|
|
1081
|
+
|
|
1082
|
+
/**
|
|
1083
|
+
* @generated from field: string company_address = 5;
|
|
1084
|
+
*/
|
|
1085
|
+
companyAddress: string;
|
|
1086
|
+
|
|
1087
|
+
/**
|
|
1088
|
+
* @generated from field: string email = 6;
|
|
1089
|
+
*/
|
|
1090
|
+
email: string;
|
|
1091
|
+
|
|
1092
|
+
/**
|
|
1093
|
+
* @generated from field: string activity_name = 7;
|
|
1094
|
+
*/
|
|
1095
|
+
activityName: string;
|
|
1096
|
+
|
|
1097
|
+
/**
|
|
1098
|
+
* @generated from field: string logged_user = 8;
|
|
1099
|
+
*/
|
|
1100
|
+
loggedUser: string;
|
|
1101
|
+
|
|
1102
|
+
/**
|
|
1103
|
+
* @generated from field: string require_from = 9;
|
|
1104
|
+
*/
|
|
1105
|
+
requireFrom: string;
|
|
1106
|
+
|
|
1107
|
+
/**
|
|
1108
|
+
* @generated from field: bool is_cs_request = 10;
|
|
1109
|
+
*/
|
|
1110
|
+
isCsRequest: boolean;
|
|
1111
|
+
|
|
1112
|
+
/**
|
|
1113
|
+
* @generated from field: int64 account_id = 11;
|
|
1114
|
+
*/
|
|
1115
|
+
accountId: bigint;
|
|
1116
|
+
|
|
1117
|
+
/**
|
|
1118
|
+
* @generated from field: string buyer_name = 12;
|
|
1119
|
+
*/
|
|
1120
|
+
buyerName: string;
|
|
1121
|
+
|
|
1122
|
+
constructor(data?: PartialMessage<IssueInvoiceForOrderRequest>);
|
|
1123
|
+
|
|
1124
|
+
static readonly runtime: typeof proto3;
|
|
1125
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.IssueInvoiceForOrderRequest";
|
|
1126
|
+
static readonly fields: FieldList;
|
|
1127
|
+
|
|
1128
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): IssueInvoiceForOrderRequest;
|
|
1129
|
+
|
|
1130
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): IssueInvoiceForOrderRequest;
|
|
1131
|
+
|
|
1132
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): IssueInvoiceForOrderRequest;
|
|
1133
|
+
|
|
1134
|
+
static equals(a: IssueInvoiceForOrderRequest | PlainMessage<IssueInvoiceForOrderRequest> | undefined, b: IssueInvoiceForOrderRequest | PlainMessage<IssueInvoiceForOrderRequest> | undefined): boolean;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
/**
|
|
1138
|
+
* @generated from message ct_logic_uni_rev_order.v1.IssueInvoiceForOrderResponse
|
|
1139
|
+
*/
|
|
1140
|
+
export declare class IssueInvoiceForOrderResponse extends Message<IssueInvoiceForOrderResponse> {
|
|
1141
|
+
/**
|
|
1142
|
+
* @generated from field: string invoice_id = 1;
|
|
1143
|
+
*/
|
|
1144
|
+
invoiceId: string;
|
|
1145
|
+
|
|
1146
|
+
/**
|
|
1147
|
+
* @generated from field: string invoice_code = 2;
|
|
1148
|
+
*/
|
|
1149
|
+
invoiceCode: string;
|
|
1150
|
+
|
|
1151
|
+
/**
|
|
1152
|
+
* @generated from field: string error = 3;
|
|
1153
|
+
*/
|
|
1154
|
+
error: string;
|
|
1155
|
+
|
|
1156
|
+
constructor(data?: PartialMessage<IssueInvoiceForOrderResponse>);
|
|
1157
|
+
|
|
1158
|
+
static readonly runtime: typeof proto3;
|
|
1159
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.IssueInvoiceForOrderResponse";
|
|
1160
|
+
static readonly fields: FieldList;
|
|
1161
|
+
|
|
1162
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): IssueInvoiceForOrderResponse;
|
|
1163
|
+
|
|
1164
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): IssueInvoiceForOrderResponse;
|
|
1165
|
+
|
|
1166
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): IssueInvoiceForOrderResponse;
|
|
1167
|
+
|
|
1168
|
+
static equals(a: IssueInvoiceForOrderResponse | PlainMessage<IssueInvoiceForOrderResponse> | undefined, b: IssueInvoiceForOrderResponse | PlainMessage<IssueInvoiceForOrderResponse> | undefined): boolean;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
/**
|
|
1172
|
+
* @generated from message ct_logic_uni_rev_order.v1.AddInvoiceRequest
|
|
1173
|
+
*/
|
|
1174
|
+
export declare class AddInvoiceRequest extends Message<AddInvoiceRequest> {
|
|
1175
|
+
/**
|
|
1176
|
+
* @generated from field: string id = 1;
|
|
1177
|
+
*/
|
|
1178
|
+
id: string;
|
|
1179
|
+
|
|
1180
|
+
/**
|
|
1181
|
+
* @generated from field: int64 order_id = 2;
|
|
1182
|
+
*/
|
|
1183
|
+
orderId: bigint;
|
|
1184
|
+
|
|
1185
|
+
/**
|
|
1186
|
+
* @generated from field: string company_name = 3;
|
|
1187
|
+
*/
|
|
1188
|
+
companyName: string;
|
|
1189
|
+
|
|
1190
|
+
/**
|
|
1191
|
+
* @generated from field: string tax_id = 4;
|
|
1192
|
+
*/
|
|
1193
|
+
taxId: string;
|
|
1194
|
+
|
|
1195
|
+
/**
|
|
1196
|
+
* @generated from field: string company_address = 5;
|
|
1197
|
+
*/
|
|
1198
|
+
companyAddress: string;
|
|
1199
|
+
|
|
1200
|
+
/**
|
|
1201
|
+
* @generated from field: string email = 6;
|
|
1202
|
+
*/
|
|
1203
|
+
email: string;
|
|
1204
|
+
|
|
1205
|
+
/**
|
|
1206
|
+
* @generated from field: string invoice_settings_key = 7;
|
|
1207
|
+
*/
|
|
1208
|
+
invoiceSettingsKey: string;
|
|
1209
|
+
|
|
1210
|
+
/**
|
|
1211
|
+
* @generated from field: string activity_name = 8;
|
|
1212
|
+
*/
|
|
1213
|
+
activityName: string;
|
|
1214
|
+
|
|
1215
|
+
/**
|
|
1216
|
+
* @generated from field: string logged_user = 9;
|
|
1217
|
+
*/
|
|
1218
|
+
loggedUser: string;
|
|
1219
|
+
|
|
1220
|
+
/**
|
|
1221
|
+
* @generated from field: string require_from = 10;
|
|
1222
|
+
*/
|
|
1223
|
+
requireFrom: string;
|
|
1224
|
+
|
|
1225
|
+
constructor(data?: PartialMessage<AddInvoiceRequest>);
|
|
1226
|
+
|
|
1227
|
+
static readonly runtime: typeof proto3;
|
|
1228
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.AddInvoiceRequest";
|
|
1229
|
+
static readonly fields: FieldList;
|
|
1230
|
+
|
|
1231
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AddInvoiceRequest;
|
|
1232
|
+
|
|
1233
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AddInvoiceRequest;
|
|
1234
|
+
|
|
1235
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AddInvoiceRequest;
|
|
1236
|
+
|
|
1237
|
+
static equals(a: AddInvoiceRequest | PlainMessage<AddInvoiceRequest> | undefined, b: AddInvoiceRequest | PlainMessage<AddInvoiceRequest> | undefined): boolean;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
/**
|
|
1241
|
+
* @generated from message ct_logic_uni_rev_order.v1.AddInvoiceResponse
|
|
1242
|
+
*/
|
|
1243
|
+
export declare class AddInvoiceResponse extends Message<AddInvoiceResponse> {
|
|
1244
|
+
/**
|
|
1245
|
+
* @generated from field: string status = 1;
|
|
1246
|
+
*/
|
|
1247
|
+
status: string;
|
|
1248
|
+
|
|
1249
|
+
constructor(data?: PartialMessage<AddInvoiceResponse>);
|
|
1250
|
+
|
|
1251
|
+
static readonly runtime: typeof proto3;
|
|
1252
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.AddInvoiceResponse";
|
|
1253
|
+
static readonly fields: FieldList;
|
|
1254
|
+
|
|
1255
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): AddInvoiceResponse;
|
|
1256
|
+
|
|
1257
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): AddInvoiceResponse;
|
|
1258
|
+
|
|
1259
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): AddInvoiceResponse;
|
|
1260
|
+
|
|
1261
|
+
static equals(a: AddInvoiceResponse | PlainMessage<AddInvoiceResponse> | undefined, b: AddInvoiceResponse | PlainMessage<AddInvoiceResponse> | undefined): boolean;
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
/**
|
|
1265
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetInvoiceHistoriesRequest
|
|
1266
|
+
*/
|
|
1267
|
+
export declare class GetInvoiceHistoriesRequest extends Message<GetInvoiceHistoriesRequest> {
|
|
1268
|
+
/**
|
|
1269
|
+
* @generated from field: int64 page = 1;
|
|
1270
|
+
*/
|
|
1271
|
+
page: bigint;
|
|
1272
|
+
|
|
1273
|
+
/**
|
|
1274
|
+
* @generated from field: int64 limit = 2;
|
|
1275
|
+
*/
|
|
1276
|
+
limit: bigint;
|
|
1277
|
+
|
|
1278
|
+
constructor(data?: PartialMessage<GetInvoiceHistoriesRequest>);
|
|
1279
|
+
|
|
1280
|
+
static readonly runtime: typeof proto3;
|
|
1281
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetInvoiceHistoriesRequest";
|
|
1282
|
+
static readonly fields: FieldList;
|
|
1283
|
+
|
|
1284
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetInvoiceHistoriesRequest;
|
|
1285
|
+
|
|
1286
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetInvoiceHistoriesRequest;
|
|
1287
|
+
|
|
1288
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetInvoiceHistoriesRequest;
|
|
1289
|
+
|
|
1290
|
+
static equals(a: GetInvoiceHistoriesRequest | PlainMessage<GetInvoiceHistoriesRequest> | undefined, b: GetInvoiceHistoriesRequest | PlainMessage<GetInvoiceHistoriesRequest> | undefined): boolean;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
/**
|
|
1294
|
+
* @generated from message ct_logic_uni_rev_order.v1.EInvoiceLogStruct
|
|
1295
|
+
*/
|
|
1296
|
+
export declare class EInvoiceLogStruct extends Message<EInvoiceLogStruct> {
|
|
1297
|
+
/**
|
|
1298
|
+
* @generated from field: string activity_name = 1;
|
|
1299
|
+
*/
|
|
1300
|
+
activityName: string;
|
|
1301
|
+
|
|
1302
|
+
/**
|
|
1303
|
+
* @generated from field: string status = 2;
|
|
1304
|
+
*/
|
|
1305
|
+
status: string;
|
|
1306
|
+
|
|
1307
|
+
/**
|
|
1308
|
+
* @generated from field: string old_info = 3;
|
|
1309
|
+
*/
|
|
1310
|
+
oldInfo: string;
|
|
1311
|
+
|
|
1312
|
+
/**
|
|
1313
|
+
* @generated from field: string new_info = 4;
|
|
1314
|
+
*/
|
|
1315
|
+
newInfo: string;
|
|
1316
|
+
|
|
1317
|
+
/**
|
|
1318
|
+
* @generated from field: int64 created_date = 5;
|
|
1319
|
+
*/
|
|
1320
|
+
createdDate: bigint;
|
|
1321
|
+
|
|
1322
|
+
constructor(data?: PartialMessage<EInvoiceLogStruct>);
|
|
1323
|
+
|
|
1324
|
+
static readonly runtime: typeof proto3;
|
|
1325
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.EInvoiceLogStruct";
|
|
1326
|
+
static readonly fields: FieldList;
|
|
1327
|
+
|
|
1328
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): EInvoiceLogStruct;
|
|
1329
|
+
|
|
1330
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): EInvoiceLogStruct;
|
|
1331
|
+
|
|
1332
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): EInvoiceLogStruct;
|
|
1333
|
+
|
|
1334
|
+
static equals(a: EInvoiceLogStruct | PlainMessage<EInvoiceLogStruct> | undefined, b: EInvoiceLogStruct | PlainMessage<EInvoiceLogStruct> | undefined): boolean;
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
/**
|
|
1338
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetInvoiceHistoriesResponse
|
|
1339
|
+
*/
|
|
1340
|
+
export declare class GetInvoiceHistoriesResponse extends Message<GetInvoiceHistoriesResponse> {
|
|
1341
|
+
/**
|
|
1342
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.EInvoiceLogStruct data = 1;
|
|
1343
|
+
*/
|
|
1344
|
+
data: EInvoiceLogStruct[];
|
|
1345
|
+
|
|
1346
|
+
/**
|
|
1347
|
+
* @generated from field: int64 offset = 2;
|
|
1348
|
+
*/
|
|
1349
|
+
offset: bigint;
|
|
1350
|
+
|
|
1351
|
+
/**
|
|
1352
|
+
* @generated from field: int64 limit = 3;
|
|
1353
|
+
*/
|
|
1354
|
+
limit: bigint;
|
|
1355
|
+
|
|
1356
|
+
/**
|
|
1357
|
+
* @generated from field: int64 total = 4;
|
|
1358
|
+
*/
|
|
1359
|
+
total: bigint;
|
|
1360
|
+
|
|
1361
|
+
constructor(data?: PartialMessage<GetInvoiceHistoriesResponse>);
|
|
1362
|
+
|
|
1363
|
+
static readonly runtime: typeof proto3;
|
|
1364
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetInvoiceHistoriesResponse";
|
|
1365
|
+
static readonly fields: FieldList;
|
|
1366
|
+
|
|
1367
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetInvoiceHistoriesResponse;
|
|
1368
|
+
|
|
1369
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetInvoiceHistoriesResponse;
|
|
1370
|
+
|
|
1371
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetInvoiceHistoriesResponse;
|
|
1372
|
+
|
|
1373
|
+
static equals(a: GetInvoiceHistoriesResponse | PlainMessage<GetInvoiceHistoriesResponse> | undefined, b: GetInvoiceHistoriesResponse | PlainMessage<GetInvoiceHistoriesResponse> | undefined): boolean;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
/**
|
|
1377
|
+
* @generated from message ct_logic_uni_rev_order.v1.ValidateIssuableOrdersRequest
|
|
1378
|
+
*/
|
|
1379
|
+
export declare class ValidateIssuableOrdersRequest extends Message<ValidateIssuableOrdersRequest> {
|
|
1380
|
+
/**
|
|
1381
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.ImportInvoicesReq invoices = 1;
|
|
1382
|
+
*/
|
|
1383
|
+
invoices: ImportInvoicesReq[];
|
|
1384
|
+
|
|
1385
|
+
constructor(data?: PartialMessage<ValidateIssuableOrdersRequest>);
|
|
1386
|
+
|
|
1387
|
+
static readonly runtime: typeof proto3;
|
|
1388
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ValidateIssuableOrdersRequest";
|
|
1389
|
+
static readonly fields: FieldList;
|
|
1390
|
+
|
|
1391
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ValidateIssuableOrdersRequest;
|
|
1392
|
+
|
|
1393
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ValidateIssuableOrdersRequest;
|
|
1394
|
+
|
|
1395
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ValidateIssuableOrdersRequest;
|
|
1396
|
+
|
|
1397
|
+
static equals(a: ValidateIssuableOrdersRequest | PlainMessage<ValidateIssuableOrdersRequest> | undefined, b: ValidateIssuableOrdersRequest | PlainMessage<ValidateIssuableOrdersRequest> | undefined): boolean;
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
/**
|
|
1401
|
+
* @generated from message ct_logic_uni_rev_order.v1.ImportInvoicesReq
|
|
1402
|
+
*/
|
|
1403
|
+
export declare class ImportInvoicesReq extends Message<ImportInvoicesReq> {
|
|
1404
|
+
/**
|
|
1405
|
+
* @generated from field: int64 order_id = 1;
|
|
1406
|
+
*/
|
|
1407
|
+
orderId: bigint;
|
|
1408
|
+
|
|
1409
|
+
/**
|
|
1410
|
+
* @generated from field: string company_name = 2;
|
|
1411
|
+
*/
|
|
1412
|
+
companyName: string;
|
|
1413
|
+
|
|
1414
|
+
/**
|
|
1415
|
+
* @generated from field: string tax = 3;
|
|
1416
|
+
*/
|
|
1417
|
+
tax: string;
|
|
1418
|
+
|
|
1419
|
+
/**
|
|
1420
|
+
* @generated from field: string company_address = 4;
|
|
1421
|
+
*/
|
|
1422
|
+
companyAddress: string;
|
|
1423
|
+
|
|
1424
|
+
/**
|
|
1425
|
+
* @generated from field: string email = 5;
|
|
1426
|
+
*/
|
|
1427
|
+
email: string;
|
|
1428
|
+
|
|
1429
|
+
/**
|
|
1430
|
+
* @generated from field: string phone = 6;
|
|
1431
|
+
*/
|
|
1432
|
+
phone: string;
|
|
1433
|
+
|
|
1434
|
+
/**
|
|
1435
|
+
* @generated from field: string status = 7;
|
|
1436
|
+
*/
|
|
1437
|
+
status: string;
|
|
1438
|
+
|
|
1439
|
+
/**
|
|
1440
|
+
* @generated from field: string message = 8;
|
|
1441
|
+
*/
|
|
1442
|
+
message: string;
|
|
1443
|
+
|
|
1444
|
+
/**
|
|
1445
|
+
* @generated from field: string sign = 9;
|
|
1446
|
+
*/
|
|
1447
|
+
sign: string;
|
|
1448
|
+
|
|
1449
|
+
constructor(data?: PartialMessage<ImportInvoicesReq>);
|
|
1450
|
+
|
|
1451
|
+
static readonly runtime: typeof proto3;
|
|
1452
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ImportInvoicesReq";
|
|
1453
|
+
static readonly fields: FieldList;
|
|
1454
|
+
|
|
1455
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ImportInvoicesReq;
|
|
1456
|
+
|
|
1457
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ImportInvoicesReq;
|
|
1458
|
+
|
|
1459
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ImportInvoicesReq;
|
|
1460
|
+
|
|
1461
|
+
static equals(a: ImportInvoicesReq | PlainMessage<ImportInvoicesReq> | undefined, b: ImportInvoicesReq | PlainMessage<ImportInvoicesReq> | undefined): boolean;
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
/**
|
|
1465
|
+
* @generated from message ct_logic_uni_rev_order.v1.ValidateIssuableOrdersResponse
|
|
1466
|
+
*/
|
|
1467
|
+
export declare class ValidateIssuableOrdersResponse extends Message<ValidateIssuableOrdersResponse> {
|
|
1468
|
+
/**
|
|
1469
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.ImportInvoicesReq data = 1;
|
|
1470
|
+
*/
|
|
1471
|
+
data: ImportInvoicesReq[];
|
|
1472
|
+
|
|
1473
|
+
constructor(data?: PartialMessage<ValidateIssuableOrdersResponse>);
|
|
1474
|
+
|
|
1475
|
+
static readonly runtime: typeof proto3;
|
|
1476
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ValidateIssuableOrdersResponse";
|
|
1477
|
+
static readonly fields: FieldList;
|
|
1478
|
+
|
|
1479
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ValidateIssuableOrdersResponse;
|
|
1480
|
+
|
|
1481
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ValidateIssuableOrdersResponse;
|
|
1482
|
+
|
|
1483
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ValidateIssuableOrdersResponse;
|
|
1484
|
+
|
|
1485
|
+
static equals(a: ValidateIssuableOrdersResponse | PlainMessage<ValidateIssuableOrdersResponse> | undefined, b: ValidateIssuableOrdersResponse | PlainMessage<ValidateIssuableOrdersResponse> | undefined): boolean;
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
/**
|
|
1489
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetFullInvoicesRequest
|
|
1490
|
+
*/
|
|
1491
|
+
export declare class GetFullInvoicesRequest extends Message<GetFullInvoicesRequest> {
|
|
1492
|
+
/**
|
|
1493
|
+
* @generated from field: int64 start_date = 1;
|
|
1494
|
+
*/
|
|
1495
|
+
startDate: bigint;
|
|
1496
|
+
|
|
1497
|
+
/**
|
|
1498
|
+
* @generated from field: int64 end_date = 2;
|
|
1499
|
+
*/
|
|
1500
|
+
endDate: bigint;
|
|
1501
|
+
|
|
1502
|
+
/**
|
|
1503
|
+
* @generated from field: string paid_date = 3;
|
|
1504
|
+
*/
|
|
1505
|
+
paidDate: string;
|
|
1506
|
+
|
|
1507
|
+
/**
|
|
1508
|
+
* @generated from field: string invoice_id = 4;
|
|
1509
|
+
*/
|
|
1510
|
+
invoiceId: string;
|
|
1511
|
+
|
|
1512
|
+
/**
|
|
1513
|
+
* @generated from field: int64 order_id = 5;
|
|
1514
|
+
*/
|
|
1515
|
+
orderId: bigint;
|
|
1516
|
+
|
|
1517
|
+
/**
|
|
1518
|
+
* @generated from field: bool is_require_invoice = 6;
|
|
1519
|
+
*/
|
|
1520
|
+
isRequireInvoice: boolean;
|
|
1521
|
+
|
|
1522
|
+
/**
|
|
1523
|
+
* @generated from field: string key = 7;
|
|
1524
|
+
*/
|
|
1525
|
+
key: string;
|
|
1526
|
+
|
|
1527
|
+
/**
|
|
1528
|
+
* @generated from field: string payment_method = 8;
|
|
1529
|
+
*/
|
|
1530
|
+
paymentMethod: string;
|
|
1531
|
+
|
|
1532
|
+
/**
|
|
1533
|
+
* @generated from field: int64 page = 9;
|
|
1534
|
+
*/
|
|
1535
|
+
page: bigint;
|
|
1536
|
+
|
|
1537
|
+
/**
|
|
1538
|
+
* @generated from field: int64 limit = 10;
|
|
1539
|
+
*/
|
|
1540
|
+
limit: bigint;
|
|
1541
|
+
|
|
1542
|
+
/**
|
|
1543
|
+
* @generated from field: bool load_issued_invoice_only = 11;
|
|
1544
|
+
*/
|
|
1545
|
+
loadIssuedInvoiceOnly: boolean;
|
|
1546
|
+
|
|
1547
|
+
constructor(data?: PartialMessage<GetFullInvoicesRequest>);
|
|
1548
|
+
|
|
1549
|
+
static readonly runtime: typeof proto3;
|
|
1550
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetFullInvoicesRequest";
|
|
1551
|
+
static readonly fields: FieldList;
|
|
1552
|
+
|
|
1553
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetFullInvoicesRequest;
|
|
1554
|
+
|
|
1555
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetFullInvoicesRequest;
|
|
1556
|
+
|
|
1557
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetFullInvoicesRequest;
|
|
1558
|
+
|
|
1559
|
+
static equals(a: GetFullInvoicesRequest | PlainMessage<GetFullInvoicesRequest> | undefined, b: GetFullInvoicesRequest | PlainMessage<GetFullInvoicesRequest> | undefined): boolean;
|
|
1560
|
+
}
|
|
1561
|
+
|
|
1562
|
+
/**
|
|
1563
|
+
* @generated from message ct_logic_uni_rev_order.v1.ResponseEInvoiceOrder
|
|
1564
|
+
*/
|
|
1565
|
+
export declare class ResponseEInvoiceOrder extends Message<ResponseEInvoiceOrder> {
|
|
1566
|
+
/**
|
|
1567
|
+
* @generated from field: int64 id = 1;
|
|
1568
|
+
*/
|
|
1569
|
+
id: bigint;
|
|
1570
|
+
|
|
1571
|
+
/**
|
|
1572
|
+
* @generated from field: string invoice_id = 2;
|
|
1573
|
+
*/
|
|
1574
|
+
invoiceId: string;
|
|
1575
|
+
|
|
1576
|
+
/**
|
|
1577
|
+
* @generated from field: int64 account_id = 3;
|
|
1578
|
+
*/
|
|
1579
|
+
accountId: bigint;
|
|
1580
|
+
|
|
1581
|
+
/**
|
|
1582
|
+
* @generated from field: string tax_id = 4;
|
|
1583
|
+
*/
|
|
1584
|
+
taxId: string;
|
|
1585
|
+
|
|
1586
|
+
/**
|
|
1587
|
+
* @generated from field: string bank_id = 5;
|
|
1588
|
+
*/
|
|
1589
|
+
bankId: string;
|
|
1590
|
+
|
|
1591
|
+
/**
|
|
1592
|
+
* @generated from field: string company_name = 6;
|
|
1593
|
+
*/
|
|
1594
|
+
companyName: string;
|
|
1595
|
+
|
|
1596
|
+
/**
|
|
1597
|
+
* @generated from field: string invoice_address = 7;
|
|
1598
|
+
*/
|
|
1599
|
+
invoiceAddress: string;
|
|
1600
|
+
|
|
1601
|
+
/**
|
|
1602
|
+
* @generated from field: string invoice_email = 8;
|
|
1603
|
+
*/
|
|
1604
|
+
invoiceEmail: string;
|
|
1605
|
+
|
|
1606
|
+
/**
|
|
1607
|
+
* @generated from field: string invoice_phone = 9;
|
|
1608
|
+
*/
|
|
1609
|
+
invoicePhone: string;
|
|
1610
|
+
|
|
1611
|
+
/**
|
|
1612
|
+
* @generated from field: int64 invoice_amount = 10;
|
|
1613
|
+
*/
|
|
1614
|
+
invoiceAmount: bigint;
|
|
1615
|
+
|
|
1616
|
+
/**
|
|
1617
|
+
* @generated from field: string payment_method = 11;
|
|
1618
|
+
*/
|
|
1619
|
+
paymentMethod: string;
|
|
1620
|
+
|
|
1621
|
+
/**
|
|
1622
|
+
* @generated from field: string payment_code = 12;
|
|
1623
|
+
*/
|
|
1624
|
+
paymentCode: string;
|
|
1625
|
+
|
|
1626
|
+
/**
|
|
1627
|
+
* @generated from field: string paid_date = 13;
|
|
1628
|
+
*/
|
|
1629
|
+
paidDate: string;
|
|
1630
|
+
|
|
1631
|
+
/**
|
|
1632
|
+
* @generated from field: string addition_params = 14;
|
|
1633
|
+
*/
|
|
1634
|
+
additionParams: string;
|
|
1635
|
+
|
|
1636
|
+
/**
|
|
1637
|
+
* @generated from field: bool is_require_invoice = 15;
|
|
1638
|
+
*/
|
|
1639
|
+
isRequireInvoice: boolean;
|
|
1640
|
+
|
|
1641
|
+
/**
|
|
1642
|
+
* @generated from field: int64 created_date = 16;
|
|
1643
|
+
*/
|
|
1644
|
+
createdDate: bigint;
|
|
1645
|
+
|
|
1646
|
+
/**
|
|
1647
|
+
* @generated from field: string error_text = 17;
|
|
1648
|
+
*/
|
|
1649
|
+
errorText: string;
|
|
1650
|
+
|
|
1651
|
+
/**
|
|
1652
|
+
* @generated from field: string invoice_setting_key = 18;
|
|
1653
|
+
*/
|
|
1654
|
+
invoiceSettingKey: string;
|
|
1655
|
+
|
|
1656
|
+
/**
|
|
1657
|
+
* @generated from field: string invoice_sign = 19;
|
|
1658
|
+
*/
|
|
1659
|
+
invoiceSign: string;
|
|
1660
|
+
|
|
1661
|
+
/**
|
|
1662
|
+
* @generated from field: int64 shard_paid_date = 20;
|
|
1663
|
+
*/
|
|
1664
|
+
shardPaidDate: bigint;
|
|
1665
|
+
|
|
1666
|
+
/**
|
|
1667
|
+
* @generated from field: int64 failed_order_id = 21;
|
|
1668
|
+
*/
|
|
1669
|
+
failedOrderId: bigint;
|
|
1670
|
+
|
|
1671
|
+
/**
|
|
1672
|
+
* @generated from field: bool is_cs_request = 22;
|
|
1673
|
+
*/
|
|
1674
|
+
isCsRequest: boolean;
|
|
1675
|
+
|
|
1676
|
+
/**
|
|
1677
|
+
* @generated from field: int64 order_id = 23;
|
|
1678
|
+
*/
|
|
1679
|
+
orderId: bigint;
|
|
1680
|
+
|
|
1681
|
+
/**
|
|
1682
|
+
* @generated from field: int64 tax_amount = 24;
|
|
1683
|
+
*/
|
|
1684
|
+
taxAmount: bigint;
|
|
1685
|
+
|
|
1686
|
+
/**
|
|
1687
|
+
* @generated from field: int64 net_amount = 25;
|
|
1688
|
+
*/
|
|
1689
|
+
netAmount: bigint;
|
|
1690
|
+
|
|
1691
|
+
/**
|
|
1692
|
+
* @generated from field: string invoice_status = 26;
|
|
1693
|
+
*/
|
|
1694
|
+
invoiceStatus: string;
|
|
1695
|
+
|
|
1696
|
+
/**
|
|
1697
|
+
* @generated from field: string buyer_name = 27;
|
|
1698
|
+
*/
|
|
1699
|
+
buyerName: string;
|
|
1700
|
+
|
|
1701
|
+
/**
|
|
1702
|
+
* @generated from field: string invoice_status_desc = 28;
|
|
1703
|
+
*/
|
|
1704
|
+
invoiceStatusDesc: string;
|
|
1705
|
+
|
|
1706
|
+
/**
|
|
1707
|
+
* @generated from field: string invoice_prefix = 29;
|
|
1708
|
+
*/
|
|
1709
|
+
invoicePrefix: string;
|
|
1710
|
+
|
|
1711
|
+
constructor(data?: PartialMessage<ResponseEInvoiceOrder>);
|
|
1712
|
+
|
|
1713
|
+
static readonly runtime: typeof proto3;
|
|
1714
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ResponseEInvoiceOrder";
|
|
1715
|
+
static readonly fields: FieldList;
|
|
1716
|
+
|
|
1717
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ResponseEInvoiceOrder;
|
|
1718
|
+
|
|
1719
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ResponseEInvoiceOrder;
|
|
1720
|
+
|
|
1721
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ResponseEInvoiceOrder;
|
|
1722
|
+
|
|
1723
|
+
static equals(a: ResponseEInvoiceOrder | PlainMessage<ResponseEInvoiceOrder> | undefined, b: ResponseEInvoiceOrder | PlainMessage<ResponseEInvoiceOrder> | undefined): boolean;
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
/**
|
|
1727
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetFullInvoicesResponse
|
|
1728
|
+
*/
|
|
1729
|
+
export declare class GetFullInvoicesResponse extends Message<GetFullInvoicesResponse> {
|
|
1730
|
+
/**
|
|
1731
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.ResponseEInvoiceOrder data = 1;
|
|
1732
|
+
*/
|
|
1733
|
+
data: ResponseEInvoiceOrder[];
|
|
1734
|
+
|
|
1735
|
+
/**
|
|
1736
|
+
* @generated from field: ct_logic_uni_rev_order.v1.GetAllInvoiceTypeResponse invoice_settings = 2;
|
|
1737
|
+
*/
|
|
1738
|
+
invoiceSettings?: GetAllInvoiceTypeResponse;
|
|
1739
|
+
|
|
1740
|
+
/**
|
|
1741
|
+
* @generated from field: int64 offset = 3;
|
|
1742
|
+
*/
|
|
1743
|
+
offset: bigint;
|
|
1744
|
+
|
|
1745
|
+
/**
|
|
1746
|
+
* @generated from field: int64 limit = 4;
|
|
1747
|
+
*/
|
|
1748
|
+
limit: bigint;
|
|
1749
|
+
|
|
1750
|
+
/**
|
|
1751
|
+
* @generated from field: int64 total = 5;
|
|
1752
|
+
*/
|
|
1753
|
+
total: bigint;
|
|
1754
|
+
|
|
1755
|
+
constructor(data?: PartialMessage<GetFullInvoicesResponse>);
|
|
1756
|
+
|
|
1757
|
+
static readonly runtime: typeof proto3;
|
|
1758
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetFullInvoicesResponse";
|
|
1759
|
+
static readonly fields: FieldList;
|
|
1760
|
+
|
|
1761
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetFullInvoicesResponse;
|
|
1762
|
+
|
|
1763
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetFullInvoicesResponse;
|
|
1764
|
+
|
|
1765
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetFullInvoicesResponse;
|
|
1766
|
+
|
|
1767
|
+
static equals(a: GetFullInvoicesResponse | PlainMessage<GetFullInvoicesResponse> | undefined, b: GetFullInvoicesResponse | PlainMessage<GetFullInvoicesResponse> | undefined): boolean;
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
/**
|
|
1771
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetInvoiceeRequest
|
|
1772
|
+
*/
|
|
1773
|
+
export declare class GetInvoiceeRequest extends Message<GetInvoiceeRequest> {
|
|
1774
|
+
/**
|
|
1775
|
+
* @generated from field: string account_id = 1;
|
|
1776
|
+
*/
|
|
1777
|
+
accountId: string;
|
|
1778
|
+
|
|
1779
|
+
constructor(data?: PartialMessage<GetInvoiceeRequest>);
|
|
1780
|
+
|
|
1781
|
+
static readonly runtime: typeof proto3;
|
|
1782
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetInvoiceeRequest";
|
|
1783
|
+
static readonly fields: FieldList;
|
|
1784
|
+
|
|
1785
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetInvoiceeRequest;
|
|
1786
|
+
|
|
1787
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetInvoiceeRequest;
|
|
1788
|
+
|
|
1789
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetInvoiceeRequest;
|
|
1790
|
+
|
|
1791
|
+
static equals(a: GetInvoiceeRequest | PlainMessage<GetInvoiceeRequest> | undefined, b: GetInvoiceeRequest | PlainMessage<GetInvoiceeRequest> | undefined): boolean;
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1794
|
+
/**
|
|
1795
|
+
* @generated from message ct_logic_uni_rev_order.v1.OpapiInvoiceByAccount
|
|
1796
|
+
*/
|
|
1797
|
+
export declare class OpapiInvoiceByAccount extends Message<OpapiInvoiceByAccount> {
|
|
1798
|
+
/**
|
|
1799
|
+
* @generated from field: string company_address = 1;
|
|
1800
|
+
*/
|
|
1801
|
+
companyAddress: string;
|
|
1802
|
+
|
|
1803
|
+
/**
|
|
1804
|
+
* @generated from field: string company_name = 2;
|
|
1805
|
+
*/
|
|
1806
|
+
companyName: string;
|
|
1807
|
+
|
|
1808
|
+
/**
|
|
1809
|
+
* @generated from field: string company_phone = 3;
|
|
1810
|
+
*/
|
|
1811
|
+
companyPhone: string;
|
|
1812
|
+
|
|
1813
|
+
/**
|
|
1814
|
+
* @generated from field: string company_taxcode = 4;
|
|
1815
|
+
*/
|
|
1816
|
+
companyTaxcode: string;
|
|
1817
|
+
|
|
1818
|
+
/**
|
|
1819
|
+
* @generated from field: string company_email = 5;
|
|
1820
|
+
*/
|
|
1821
|
+
companyEmail: string;
|
|
1822
|
+
|
|
1823
|
+
/**
|
|
1824
|
+
* @generated from field: int64 account_id = 6;
|
|
1825
|
+
*/
|
|
1826
|
+
accountId: bigint;
|
|
1827
|
+
|
|
1828
|
+
/**
|
|
1829
|
+
* @generated from field: string buyer_name = 7;
|
|
1830
|
+
*/
|
|
1831
|
+
buyerName: string;
|
|
1832
|
+
|
|
1833
|
+
constructor(data?: PartialMessage<OpapiInvoiceByAccount>);
|
|
1834
|
+
|
|
1835
|
+
static readonly runtime: typeof proto3;
|
|
1836
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.OpapiInvoiceByAccount";
|
|
1837
|
+
static readonly fields: FieldList;
|
|
1838
|
+
|
|
1839
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OpapiInvoiceByAccount;
|
|
1840
|
+
|
|
1841
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OpapiInvoiceByAccount;
|
|
1842
|
+
|
|
1843
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OpapiInvoiceByAccount;
|
|
1844
|
+
|
|
1845
|
+
static equals(a: OpapiInvoiceByAccount | PlainMessage<OpapiInvoiceByAccount> | undefined, b: OpapiInvoiceByAccount | PlainMessage<OpapiInvoiceByAccount> | undefined): boolean;
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
/**
|
|
1849
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetInvoiceeResponse
|
|
1850
|
+
*/
|
|
1851
|
+
export declare class GetInvoiceeResponse extends Message<GetInvoiceeResponse> {
|
|
1852
|
+
/**
|
|
1853
|
+
* @generated from field: ct_logic_uni_rev_order.v1.OpapiInvoiceByAccount invoicee = 1;
|
|
1854
|
+
*/
|
|
1855
|
+
invoicee?: OpapiInvoiceByAccount;
|
|
1856
|
+
|
|
1857
|
+
constructor(data?: PartialMessage<GetInvoiceeResponse>);
|
|
1858
|
+
|
|
1859
|
+
static readonly runtime: typeof proto3;
|
|
1860
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetInvoiceeResponse";
|
|
1861
|
+
static readonly fields: FieldList;
|
|
1862
|
+
|
|
1863
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetInvoiceeResponse;
|
|
1864
|
+
|
|
1865
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetInvoiceeResponse;
|
|
1866
|
+
|
|
1867
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetInvoiceeResponse;
|
|
1868
|
+
|
|
1869
|
+
static equals(a: GetInvoiceeResponse | PlainMessage<GetInvoiceeResponse> | undefined, b: GetInvoiceeResponse | PlainMessage<GetInvoiceeResponse> | undefined): boolean;
|
|
1870
|
+
}
|
|
1871
|
+
|
|
1872
|
+
/**
|
|
1873
|
+
* @generated from message ct_logic_uni_rev_order.v1.InsertInvoiceForOrderRequest
|
|
1874
|
+
*/
|
|
1875
|
+
export declare class InsertInvoiceForOrderRequest extends Message<InsertInvoiceForOrderRequest> {
|
|
1876
|
+
/**
|
|
1877
|
+
* @generated from field: int64 account_id = 1;
|
|
1878
|
+
*/
|
|
1879
|
+
accountId: bigint;
|
|
1880
|
+
|
|
1881
|
+
/**
|
|
1882
|
+
* @generated from field: int64 order_id = 2;
|
|
1883
|
+
*/
|
|
1884
|
+
orderId: bigint;
|
|
1885
|
+
|
|
1886
|
+
/**
|
|
1887
|
+
* @generated from field: ct_logic_uni_rev_order.v1.OpapiInvoiceByAccount params = 3;
|
|
1888
|
+
*/
|
|
1889
|
+
params?: OpapiInvoiceByAccount;
|
|
1890
|
+
|
|
1891
|
+
constructor(data?: PartialMessage<InsertInvoiceForOrderRequest>);
|
|
1892
|
+
|
|
1893
|
+
static readonly runtime: typeof proto3;
|
|
1894
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.InsertInvoiceForOrderRequest";
|
|
1895
|
+
static readonly fields: FieldList;
|
|
1896
|
+
|
|
1897
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InsertInvoiceForOrderRequest;
|
|
1898
|
+
|
|
1899
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InsertInvoiceForOrderRequest;
|
|
1900
|
+
|
|
1901
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InsertInvoiceForOrderRequest;
|
|
1902
|
+
|
|
1903
|
+
static equals(a: InsertInvoiceForOrderRequest | PlainMessage<InsertInvoiceForOrderRequest> | undefined, b: InsertInvoiceForOrderRequest | PlainMessage<InsertInvoiceForOrderRequest> | undefined): boolean;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
/**
|
|
1907
|
+
* @generated from message ct_logic_uni_rev_order.v1.InsertInvoiceForOrderResponse
|
|
1908
|
+
*/
|
|
1909
|
+
export declare class InsertInvoiceForOrderResponse extends Message<InsertInvoiceForOrderResponse> {
|
|
1910
|
+
/**
|
|
1911
|
+
* invoicee id
|
|
1912
|
+
*
|
|
1913
|
+
* @generated from field: string id = 1;
|
|
1914
|
+
*/
|
|
1915
|
+
id: string;
|
|
1916
|
+
|
|
1917
|
+
/**
|
|
1918
|
+
* @generated from field: string error = 2;
|
|
1919
|
+
*/
|
|
1920
|
+
error: string;
|
|
1921
|
+
|
|
1922
|
+
constructor(data?: PartialMessage<InsertInvoiceForOrderResponse>);
|
|
1923
|
+
|
|
1924
|
+
static readonly runtime: typeof proto3;
|
|
1925
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.InsertInvoiceForOrderResponse";
|
|
1926
|
+
static readonly fields: FieldList;
|
|
1927
|
+
|
|
1928
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InsertInvoiceForOrderResponse;
|
|
1929
|
+
|
|
1930
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InsertInvoiceForOrderResponse;
|
|
1931
|
+
|
|
1932
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InsertInvoiceForOrderResponse;
|
|
1933
|
+
|
|
1934
|
+
static equals(a: InsertInvoiceForOrderResponse | PlainMessage<InsertInvoiceForOrderResponse> | undefined, b: InsertInvoiceForOrderResponse | PlainMessage<InsertInvoiceForOrderResponse> | undefined): boolean;
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
/**
|
|
1938
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetInvoiceeByOrderRequest
|
|
1939
|
+
*/
|
|
1940
|
+
export declare class GetInvoiceeByOrderRequest extends Message<GetInvoiceeByOrderRequest> {
|
|
1941
|
+
/**
|
|
1942
|
+
* @generated from field: int64 order_id = 1;
|
|
1943
|
+
*/
|
|
1944
|
+
orderId: bigint;
|
|
1945
|
+
|
|
1946
|
+
constructor(data?: PartialMessage<GetInvoiceeByOrderRequest>);
|
|
1947
|
+
|
|
1948
|
+
static readonly runtime: typeof proto3;
|
|
1949
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetInvoiceeByOrderRequest";
|
|
1950
|
+
static readonly fields: FieldList;
|
|
1951
|
+
|
|
1952
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetInvoiceeByOrderRequest;
|
|
1953
|
+
|
|
1954
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetInvoiceeByOrderRequest;
|
|
1955
|
+
|
|
1956
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetInvoiceeByOrderRequest;
|
|
1957
|
+
|
|
1958
|
+
static equals(a: GetInvoiceeByOrderRequest | PlainMessage<GetInvoiceeByOrderRequest> | undefined, b: GetInvoiceeByOrderRequest | PlainMessage<GetInvoiceeByOrderRequest> | undefined): boolean;
|
|
1959
|
+
}
|
|
1960
|
+
|
|
1961
|
+
/**
|
|
1962
|
+
* @generated from message ct_logic_uni_rev_order.v1.OxOrderExtendInfo
|
|
1963
|
+
*/
|
|
1964
|
+
export declare class OxOrderExtendInfo extends Message<OxOrderExtendInfo> {
|
|
1965
|
+
/**
|
|
1966
|
+
* @generated from field: string id = 1;
|
|
1967
|
+
*/
|
|
1968
|
+
id: string;
|
|
1969
|
+
|
|
1970
|
+
/**
|
|
1971
|
+
* @generated from field: int64 account_id = 2;
|
|
1972
|
+
*/
|
|
1973
|
+
accountId: bigint;
|
|
1974
|
+
|
|
1975
|
+
/**
|
|
1976
|
+
* @generated from field: int64 order_id = 3;
|
|
1977
|
+
*/
|
|
1978
|
+
orderId: bigint;
|
|
1979
|
+
|
|
1980
|
+
/**
|
|
1981
|
+
* @generated from field: string params = 4;
|
|
1982
|
+
*/
|
|
1983
|
+
params: string;
|
|
1984
|
+
|
|
1985
|
+
/**
|
|
1986
|
+
* @generated from field: string invoice_account_id = 5;
|
|
1987
|
+
*/
|
|
1988
|
+
invoiceAccountId: string;
|
|
1989
|
+
|
|
1990
|
+
/**
|
|
1991
|
+
* @generated from field: int64 created_date = 6;
|
|
1992
|
+
*/
|
|
1993
|
+
createdDate: bigint;
|
|
1994
|
+
|
|
1995
|
+
/**
|
|
1996
|
+
* @generated from field: int64 updated_date = 7;
|
|
1997
|
+
*/
|
|
1998
|
+
updatedDate: bigint;
|
|
1999
|
+
|
|
2000
|
+
constructor(data?: PartialMessage<OxOrderExtendInfo>);
|
|
2001
|
+
|
|
2002
|
+
static readonly runtime: typeof proto3;
|
|
2003
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.OxOrderExtendInfo";
|
|
2004
|
+
static readonly fields: FieldList;
|
|
2005
|
+
|
|
2006
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OxOrderExtendInfo;
|
|
2007
|
+
|
|
2008
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OxOrderExtendInfo;
|
|
2009
|
+
|
|
2010
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OxOrderExtendInfo;
|
|
2011
|
+
|
|
2012
|
+
static equals(a: OxOrderExtendInfo | PlainMessage<OxOrderExtendInfo> | undefined, b: OxOrderExtendInfo | PlainMessage<OxOrderExtendInfo> | undefined): boolean;
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
/**
|
|
2016
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetInvoiceeByOrderResponse
|
|
2017
|
+
*/
|
|
2018
|
+
export declare class GetInvoiceeByOrderResponse extends Message<GetInvoiceeByOrderResponse> {
|
|
2019
|
+
/**
|
|
2020
|
+
* @generated from field: ct_logic_uni_rev_order.v1.OxOrderExtendInfo invoicee = 1;
|
|
2021
|
+
*/
|
|
2022
|
+
invoicee?: OxOrderExtendInfo;
|
|
2023
|
+
|
|
2024
|
+
constructor(data?: PartialMessage<GetInvoiceeByOrderResponse>);
|
|
2025
|
+
|
|
2026
|
+
static readonly runtime: typeof proto3;
|
|
2027
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetInvoiceeByOrderResponse";
|
|
2028
|
+
static readonly fields: FieldList;
|
|
2029
|
+
|
|
2030
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetInvoiceeByOrderResponse;
|
|
2031
|
+
|
|
2032
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetInvoiceeByOrderResponse;
|
|
2033
|
+
|
|
2034
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetInvoiceeByOrderResponse;
|
|
2035
|
+
|
|
2036
|
+
static equals(a: GetInvoiceeByOrderResponse | PlainMessage<GetInvoiceeByOrderResponse> | undefined, b: GetInvoiceeByOrderResponse | PlainMessage<GetInvoiceeByOrderResponse> | undefined): boolean;
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
/**
|
|
2040
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetInvoiceesAndOrdersRequest
|
|
2041
|
+
*/
|
|
2042
|
+
export declare class GetInvoiceesAndOrdersRequest extends Message<GetInvoiceesAndOrdersRequest> {
|
|
2043
|
+
/**
|
|
2044
|
+
* @generated from field: int64 order_id = 1;
|
|
2045
|
+
*/
|
|
2046
|
+
orderId: bigint;
|
|
2047
|
+
|
|
2048
|
+
/**
|
|
2049
|
+
* @generated from field: int64 offset = 2;
|
|
2050
|
+
*/
|
|
2051
|
+
offset: bigint;
|
|
2052
|
+
|
|
2053
|
+
/**
|
|
2054
|
+
* @generated from field: int64 limit = 3;
|
|
2055
|
+
*/
|
|
2056
|
+
limit: bigint;
|
|
2057
|
+
|
|
2058
|
+
/**
|
|
2059
|
+
* @generated from field: int64 start_at = 4;
|
|
2060
|
+
*/
|
|
2061
|
+
startAt: bigint;
|
|
2062
|
+
|
|
2063
|
+
/**
|
|
2064
|
+
* @generated from field: int64 end_at = 5;
|
|
2065
|
+
*/
|
|
2066
|
+
endAt: bigint;
|
|
2067
|
+
|
|
2068
|
+
constructor(data?: PartialMessage<GetInvoiceesAndOrdersRequest>);
|
|
2069
|
+
|
|
2070
|
+
static readonly runtime: typeof proto3;
|
|
2071
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetInvoiceesAndOrdersRequest";
|
|
2072
|
+
static readonly fields: FieldList;
|
|
2073
|
+
|
|
2074
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetInvoiceesAndOrdersRequest;
|
|
2075
|
+
|
|
2076
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetInvoiceesAndOrdersRequest;
|
|
2077
|
+
|
|
2078
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetInvoiceesAndOrdersRequest;
|
|
2079
|
+
|
|
2080
|
+
static equals(a: GetInvoiceesAndOrdersRequest | PlainMessage<GetInvoiceesAndOrdersRequest> | undefined, b: GetInvoiceesAndOrdersRequest | PlainMessage<GetInvoiceesAndOrdersRequest> | undefined): boolean;
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
/**
|
|
2084
|
+
* @generated from message ct_logic_uni_rev_order.v1.OxOrderExtendInfoExtended
|
|
2085
|
+
*/
|
|
2086
|
+
export declare class OxOrderExtendInfoExtended extends Message<OxOrderExtendInfoExtended> {
|
|
2087
|
+
/**
|
|
2088
|
+
* @generated from field: int64 account_id = 1;
|
|
2089
|
+
*/
|
|
2090
|
+
accountId: bigint;
|
|
2091
|
+
|
|
2092
|
+
/**
|
|
2093
|
+
* @generated from field: int64 order_id = 2;
|
|
2094
|
+
*/
|
|
2095
|
+
orderId: bigint;
|
|
2096
|
+
|
|
2097
|
+
/**
|
|
2098
|
+
* @generated from field: string invoice_account_id = 3;
|
|
2099
|
+
*/
|
|
2100
|
+
invoiceAccountId: string;
|
|
2101
|
+
|
|
2102
|
+
/**
|
|
2103
|
+
* @generated from field: string company_address = 4;
|
|
2104
|
+
*/
|
|
2105
|
+
companyAddress: string;
|
|
2106
|
+
|
|
2107
|
+
/**
|
|
2108
|
+
* @generated from field: string company_name = 5;
|
|
2109
|
+
*/
|
|
2110
|
+
companyName: string;
|
|
2111
|
+
|
|
2112
|
+
/**
|
|
2113
|
+
* @generated from field: string company_phone = 6;
|
|
2114
|
+
*/
|
|
2115
|
+
companyPhone: string;
|
|
2116
|
+
|
|
2117
|
+
/**
|
|
2118
|
+
* @generated from field: string company_taxcode = 7;
|
|
2119
|
+
*/
|
|
2120
|
+
companyTaxcode: string;
|
|
2121
|
+
|
|
2122
|
+
/**
|
|
2123
|
+
* @generated from field: string company_email = 8;
|
|
2124
|
+
*/
|
|
2125
|
+
companyEmail: string;
|
|
2126
|
+
|
|
2127
|
+
/**
|
|
2128
|
+
* @generated from field: string buyer_name = 9;
|
|
2129
|
+
*/
|
|
2130
|
+
buyerName: string;
|
|
2131
|
+
|
|
2132
|
+
constructor(data?: PartialMessage<OxOrderExtendInfoExtended>);
|
|
2133
|
+
|
|
2134
|
+
static readonly runtime: typeof proto3;
|
|
2135
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.OxOrderExtendInfoExtended";
|
|
2136
|
+
static readonly fields: FieldList;
|
|
2137
|
+
|
|
2138
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OxOrderExtendInfoExtended;
|
|
2139
|
+
|
|
2140
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OxOrderExtendInfoExtended;
|
|
2141
|
+
|
|
2142
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OxOrderExtendInfoExtended;
|
|
2143
|
+
|
|
2144
|
+
static equals(a: OxOrderExtendInfoExtended | PlainMessage<OxOrderExtendInfoExtended> | undefined, b: OxOrderExtendInfoExtended | PlainMessage<OxOrderExtendInfoExtended> | undefined): boolean;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
/**
|
|
2148
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetInvoiceesAndOrdersResponse
|
|
2149
|
+
*/
|
|
2150
|
+
export declare class GetInvoiceesAndOrdersResponse extends Message<GetInvoiceesAndOrdersResponse> {
|
|
2151
|
+
/**
|
|
2152
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.OxOrderExtendInfoExtended invoicees = 1;
|
|
2153
|
+
*/
|
|
2154
|
+
invoicees: OxOrderExtendInfoExtended[];
|
|
2155
|
+
|
|
2156
|
+
constructor(data?: PartialMessage<GetInvoiceesAndOrdersResponse>);
|
|
2157
|
+
|
|
2158
|
+
static readonly runtime: typeof proto3;
|
|
2159
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetInvoiceesAndOrdersResponse";
|
|
2160
|
+
static readonly fields: FieldList;
|
|
2161
|
+
|
|
2162
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetInvoiceesAndOrdersResponse;
|
|
2163
|
+
|
|
2164
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetInvoiceesAndOrdersResponse;
|
|
2165
|
+
|
|
2166
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetInvoiceesAndOrdersResponse;
|
|
2167
|
+
|
|
2168
|
+
static equals(a: GetInvoiceesAndOrdersResponse | PlainMessage<GetInvoiceesAndOrdersResponse> | undefined, b: GetInvoiceesAndOrdersResponse | PlainMessage<GetInvoiceesAndOrdersResponse> | undefined): boolean;
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
/**
|
|
2172
|
+
* @generated from message ct_logic_uni_rev_order.v1.IssueInvoiceForOrdersRequest
|
|
2173
|
+
*/
|
|
2174
|
+
export declare class IssueInvoiceForOrdersRequest extends Message<IssueInvoiceForOrdersRequest> {
|
|
2175
|
+
/**
|
|
2176
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.ImportInvoicesReq invoices = 1;
|
|
2177
|
+
*/
|
|
2178
|
+
invoices: ImportInvoicesReq[];
|
|
2179
|
+
|
|
2180
|
+
/**
|
|
2181
|
+
* @generated from field: string required_from = 2;
|
|
2182
|
+
*/
|
|
2183
|
+
requiredFrom: string;
|
|
2184
|
+
|
|
2185
|
+
/**
|
|
2186
|
+
* @generated from field: string logged_user = 3;
|
|
2187
|
+
*/
|
|
2188
|
+
loggedUser: string;
|
|
2189
|
+
|
|
2190
|
+
/**
|
|
2191
|
+
* @generated from field: bool is_cs_request = 4;
|
|
2192
|
+
*/
|
|
2193
|
+
isCsRequest: boolean;
|
|
2194
|
+
|
|
2195
|
+
constructor(data?: PartialMessage<IssueInvoiceForOrdersRequest>);
|
|
2196
|
+
|
|
2197
|
+
static readonly runtime: typeof proto3;
|
|
2198
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.IssueInvoiceForOrdersRequest";
|
|
2199
|
+
static readonly fields: FieldList;
|
|
2200
|
+
|
|
2201
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): IssueInvoiceForOrdersRequest;
|
|
2202
|
+
|
|
2203
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): IssueInvoiceForOrdersRequest;
|
|
2204
|
+
|
|
2205
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): IssueInvoiceForOrdersRequest;
|
|
2206
|
+
|
|
2207
|
+
static equals(a: IssueInvoiceForOrdersRequest | PlainMessage<IssueInvoiceForOrdersRequest> | undefined, b: IssueInvoiceForOrdersRequest | PlainMessage<IssueInvoiceForOrdersRequest> | undefined): boolean;
|
|
2208
|
+
}
|
|
2209
|
+
|
|
2210
|
+
/**
|
|
2211
|
+
* @generated from message ct_logic_uni_rev_order.v1.IssueInvoiceForOrdersResponse
|
|
2212
|
+
*/
|
|
2213
|
+
export declare class IssueInvoiceForOrdersResponse extends Message<IssueInvoiceForOrdersResponse> {
|
|
2214
|
+
/**
|
|
2215
|
+
* @generated from field: int64 last_order_id = 1;
|
|
2216
|
+
*/
|
|
2217
|
+
lastOrderId: bigint;
|
|
2218
|
+
|
|
2219
|
+
/**
|
|
2220
|
+
* @generated from field: string status = 2;
|
|
2221
|
+
*/
|
|
2222
|
+
status: string;
|
|
2223
|
+
|
|
2224
|
+
/**
|
|
2225
|
+
* @generated from field: string message = 3;
|
|
2226
|
+
*/
|
|
2227
|
+
message: string;
|
|
2228
|
+
|
|
2229
|
+
constructor(data?: PartialMessage<IssueInvoiceForOrdersResponse>);
|
|
2230
|
+
|
|
2231
|
+
static readonly runtime: typeof proto3;
|
|
2232
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.IssueInvoiceForOrdersResponse";
|
|
2233
|
+
static readonly fields: FieldList;
|
|
2234
|
+
|
|
2235
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): IssueInvoiceForOrdersResponse;
|
|
2236
|
+
|
|
2237
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): IssueInvoiceForOrdersResponse;
|
|
2238
|
+
|
|
2239
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): IssueInvoiceForOrdersResponse;
|
|
2240
|
+
|
|
2241
|
+
static equals(a: IssueInvoiceForOrdersResponse | PlainMessage<IssueInvoiceForOrdersResponse> | undefined, b: IssueInvoiceForOrdersResponse | PlainMessage<IssueInvoiceForOrdersResponse> | undefined): boolean;
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
/**
|
|
2245
|
+
* @generated from message ct_logic_uni_rev_order.v1.SaveInvoiceeRequest
|
|
2246
|
+
*/
|
|
2247
|
+
export declare class SaveInvoiceeRequest extends Message<SaveInvoiceeRequest> {
|
|
2248
|
+
/**
|
|
2249
|
+
* @generated from field: string company_address = 1;
|
|
2250
|
+
*/
|
|
2251
|
+
companyAddress: string;
|
|
2252
|
+
|
|
2253
|
+
/**
|
|
2254
|
+
* @generated from field: string company_name = 2;
|
|
2255
|
+
*/
|
|
2256
|
+
companyName: string;
|
|
2257
|
+
|
|
2258
|
+
/**
|
|
2259
|
+
* @generated from field: string company_phone = 3;
|
|
2260
|
+
*/
|
|
2261
|
+
companyPhone: string;
|
|
2262
|
+
|
|
2263
|
+
/**
|
|
2264
|
+
* @generated from field: string company_taxcode = 4;
|
|
2265
|
+
*/
|
|
2266
|
+
companyTaxcode: string;
|
|
2267
|
+
|
|
2268
|
+
/**
|
|
2269
|
+
* @generated from field: string company_email = 5;
|
|
2270
|
+
*/
|
|
2271
|
+
companyEmail: string;
|
|
2272
|
+
|
|
2273
|
+
/**
|
|
2274
|
+
* @generated from field: int64 account_id = 6;
|
|
2275
|
+
*/
|
|
2276
|
+
accountId: bigint;
|
|
2277
|
+
|
|
2278
|
+
/**
|
|
2279
|
+
* @generated from field: string buyer_name = 7;
|
|
2280
|
+
*/
|
|
2281
|
+
buyerName: string;
|
|
2282
|
+
|
|
2283
|
+
constructor(data?: PartialMessage<SaveInvoiceeRequest>);
|
|
2284
|
+
|
|
2285
|
+
static readonly runtime: typeof proto3;
|
|
2286
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.SaveInvoiceeRequest";
|
|
2287
|
+
static readonly fields: FieldList;
|
|
2288
|
+
|
|
2289
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SaveInvoiceeRequest;
|
|
2290
|
+
|
|
2291
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SaveInvoiceeRequest;
|
|
2292
|
+
|
|
2293
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SaveInvoiceeRequest;
|
|
2294
|
+
|
|
2295
|
+
static equals(a: SaveInvoiceeRequest | PlainMessage<SaveInvoiceeRequest> | undefined, b: SaveInvoiceeRequest | PlainMessage<SaveInvoiceeRequest> | undefined): boolean;
|
|
2296
|
+
}
|
|
2297
|
+
|
|
2298
|
+
/**
|
|
2299
|
+
* @generated from message ct_logic_uni_rev_order.v1.SaveInvoiceeResponse
|
|
2300
|
+
*/
|
|
2301
|
+
export declare class SaveInvoiceeResponse extends Message<SaveInvoiceeResponse> {
|
|
2302
|
+
/**
|
|
2303
|
+
* @generated from field: string id = 1;
|
|
2304
|
+
*/
|
|
2305
|
+
id: string;
|
|
2306
|
+
|
|
2307
|
+
/**
|
|
2308
|
+
* @generated from field: string status = 2;
|
|
2309
|
+
*/
|
|
2310
|
+
status: string;
|
|
2311
|
+
|
|
2312
|
+
/**
|
|
2313
|
+
* @generated from field: string error = 3;
|
|
2314
|
+
*/
|
|
2315
|
+
error: string;
|
|
2316
|
+
|
|
2317
|
+
constructor(data?: PartialMessage<SaveInvoiceeResponse>);
|
|
2318
|
+
|
|
2319
|
+
static readonly runtime: typeof proto3;
|
|
2320
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.SaveInvoiceeResponse";
|
|
2321
|
+
static readonly fields: FieldList;
|
|
2322
|
+
|
|
2323
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SaveInvoiceeResponse;
|
|
2324
|
+
|
|
2325
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SaveInvoiceeResponse;
|
|
2326
|
+
|
|
2327
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SaveInvoiceeResponse;
|
|
2328
|
+
|
|
2329
|
+
static equals(a: SaveInvoiceeResponse | PlainMessage<SaveInvoiceeResponse> | undefined, b: SaveInvoiceeResponse | PlainMessage<SaveInvoiceeResponse> | undefined): boolean;
|
|
2330
|
+
}
|
|
2331
|
+
|
|
2332
|
+
/**
|
|
2333
|
+
* @generated from message ct_logic_uni_rev_order.v1.InvoiceCheckIssuanceRequest
|
|
2334
|
+
*/
|
|
2335
|
+
export declare class InvoiceCheckIssuanceRequest extends Message<InvoiceCheckIssuanceRequest> {
|
|
2336
|
+
/**
|
|
2337
|
+
* @generated from field: repeated int64 order_ids = 1;
|
|
2338
|
+
*/
|
|
2339
|
+
orderIds: bigint[];
|
|
2340
|
+
|
|
2341
|
+
/**
|
|
2342
|
+
* @generated from field: int64 account_id = 2;
|
|
2343
|
+
*/
|
|
2344
|
+
accountId: bigint;
|
|
2345
|
+
|
|
2346
|
+
constructor(data?: PartialMessage<InvoiceCheckIssuanceRequest>);
|
|
2347
|
+
|
|
2348
|
+
static readonly runtime: typeof proto3;
|
|
2349
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.InvoiceCheckIssuanceRequest";
|
|
2350
|
+
static readonly fields: FieldList;
|
|
2351
|
+
|
|
2352
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InvoiceCheckIssuanceRequest;
|
|
2353
|
+
|
|
2354
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InvoiceCheckIssuanceRequest;
|
|
2355
|
+
|
|
2356
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InvoiceCheckIssuanceRequest;
|
|
2357
|
+
|
|
2358
|
+
static equals(a: InvoiceCheckIssuanceRequest | PlainMessage<InvoiceCheckIssuanceRequest> | undefined, b: InvoiceCheckIssuanceRequest | PlainMessage<InvoiceCheckIssuanceRequest> | undefined): boolean;
|
|
2359
|
+
}
|
|
2360
|
+
|
|
2361
|
+
/**
|
|
2362
|
+
* @generated from message ct_logic_uni_rev_order.v1.InvoiceCheckIssuance
|
|
2363
|
+
*/
|
|
2364
|
+
export declare class InvoiceCheckIssuance extends Message<InvoiceCheckIssuance> {
|
|
2365
|
+
/**
|
|
2366
|
+
* @generated from field: int64 order_id = 1;
|
|
2367
|
+
*/
|
|
2368
|
+
orderId: bigint;
|
|
2369
|
+
|
|
2370
|
+
/**
|
|
2371
|
+
* @generated from field: string status = 2;
|
|
2372
|
+
*/
|
|
2373
|
+
status: string;
|
|
2374
|
+
|
|
2375
|
+
constructor(data?: PartialMessage<InvoiceCheckIssuance>);
|
|
2376
|
+
|
|
2377
|
+
static readonly runtime: typeof proto3;
|
|
2378
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.InvoiceCheckIssuance";
|
|
2379
|
+
static readonly fields: FieldList;
|
|
2380
|
+
|
|
2381
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InvoiceCheckIssuance;
|
|
2382
|
+
|
|
2383
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InvoiceCheckIssuance;
|
|
2384
|
+
|
|
2385
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InvoiceCheckIssuance;
|
|
2386
|
+
|
|
2387
|
+
static equals(a: InvoiceCheckIssuance | PlainMessage<InvoiceCheckIssuance> | undefined, b: InvoiceCheckIssuance | PlainMessage<InvoiceCheckIssuance> | undefined): boolean;
|
|
2388
|
+
}
|
|
2389
|
+
|
|
2390
|
+
/**
|
|
2391
|
+
* @generated from message ct_logic_uni_rev_order.v1.InvoiceCheckIssuanceResponse
|
|
2392
|
+
*/
|
|
2393
|
+
export declare class InvoiceCheckIssuanceResponse extends Message<InvoiceCheckIssuanceResponse> {
|
|
2394
|
+
/**
|
|
2395
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.InvoiceCheckIssuance data = 1;
|
|
2396
|
+
*/
|
|
2397
|
+
data: InvoiceCheckIssuance[];
|
|
2398
|
+
|
|
2399
|
+
constructor(data?: PartialMessage<InvoiceCheckIssuanceResponse>);
|
|
2400
|
+
|
|
2401
|
+
static readonly runtime: typeof proto3;
|
|
2402
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.InvoiceCheckIssuanceResponse";
|
|
2403
|
+
static readonly fields: FieldList;
|
|
2404
|
+
|
|
2405
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InvoiceCheckIssuanceResponse;
|
|
2406
|
+
|
|
2407
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InvoiceCheckIssuanceResponse;
|
|
2408
|
+
|
|
2409
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InvoiceCheckIssuanceResponse;
|
|
2410
|
+
|
|
2411
|
+
static equals(a: InvoiceCheckIssuanceResponse | PlainMessage<InvoiceCheckIssuanceResponse> | undefined, b: InvoiceCheckIssuanceResponse | PlainMessage<InvoiceCheckIssuanceResponse> | undefined): boolean;
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
/**
|
|
2415
|
+
* @generated from message ct_logic_uni_rev_order.v1.FindFullInvoicesByCondsRequest
|
|
2416
|
+
*/
|
|
2417
|
+
export declare class FindFullInvoicesByCondsRequest extends Message<FindFullInvoicesByCondsRequest> {
|
|
2418
|
+
/**
|
|
2419
|
+
* @generated from field: string invoice_type_name = 1;
|
|
2420
|
+
*/
|
|
2421
|
+
invoiceTypeName: string;
|
|
2422
|
+
|
|
2423
|
+
/**
|
|
2424
|
+
* @generated from field: string payment_method = 2;
|
|
2425
|
+
*/
|
|
2426
|
+
paymentMethod: string;
|
|
2427
|
+
|
|
2428
|
+
/**
|
|
2429
|
+
* @generated from field: int64 page = 3;
|
|
2430
|
+
*/
|
|
2431
|
+
page: bigint;
|
|
2432
|
+
|
|
2433
|
+
/**
|
|
2434
|
+
* @generated from field: int64 page_size = 4;
|
|
2435
|
+
*/
|
|
2436
|
+
pageSize: bigint;
|
|
2437
|
+
|
|
2438
|
+
/**
|
|
2439
|
+
* @generated from field: google.protobuf.Timestamp from_date = 5;
|
|
2440
|
+
*/
|
|
2441
|
+
fromDate?: Timestamp;
|
|
2442
|
+
|
|
2443
|
+
/**
|
|
2444
|
+
* @generated from field: google.protobuf.Timestamp to_date = 6;
|
|
2445
|
+
*/
|
|
2446
|
+
toDate?: Timestamp;
|
|
2447
|
+
|
|
2448
|
+
/**
|
|
2449
|
+
* @generated from field: google.protobuf.Timestamp paid_date = 7;
|
|
2450
|
+
*/
|
|
2451
|
+
paidDate?: Timestamp;
|
|
2452
|
+
|
|
2453
|
+
/**
|
|
2454
|
+
* @generated from field: repeated string requesters = 8;
|
|
2455
|
+
*/
|
|
2456
|
+
requesters: string[];
|
|
2457
|
+
|
|
2458
|
+
/**
|
|
2459
|
+
* @generated from field: bool load_issued_invoice_only = 9;
|
|
2460
|
+
*/
|
|
2461
|
+
loadIssuedInvoiceOnly: boolean;
|
|
2462
|
+
|
|
2463
|
+
/**
|
|
2464
|
+
* @generated from field: int64 account_id = 10;
|
|
2465
|
+
*/
|
|
2466
|
+
accountId: bigint;
|
|
2467
|
+
|
|
2468
|
+
constructor(data?: PartialMessage<FindFullInvoicesByCondsRequest>);
|
|
2469
|
+
|
|
2470
|
+
static readonly runtime: typeof proto3;
|
|
2471
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.FindFullInvoicesByCondsRequest";
|
|
2472
|
+
static readonly fields: FieldList;
|
|
2473
|
+
|
|
2474
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FindFullInvoicesByCondsRequest;
|
|
2475
|
+
|
|
2476
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FindFullInvoicesByCondsRequest;
|
|
2477
|
+
|
|
2478
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FindFullInvoicesByCondsRequest;
|
|
2479
|
+
|
|
2480
|
+
static equals(a: FindFullInvoicesByCondsRequest | PlainMessage<FindFullInvoicesByCondsRequest> | undefined, b: FindFullInvoicesByCondsRequest | PlainMessage<FindFullInvoicesByCondsRequest> | undefined): boolean;
|
|
2481
|
+
}
|
|
2482
|
+
|
|
2483
|
+
/**
|
|
2484
|
+
* @generated from message ct_logic_uni_rev_order.v1.FindFullInvoicesByCondsResponse
|
|
2485
|
+
*/
|
|
2486
|
+
export declare class FindFullInvoicesByCondsResponse extends Message<FindFullInvoicesByCondsResponse> {
|
|
2487
|
+
/**
|
|
2488
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.FullInvoice full_invoices = 1;
|
|
2489
|
+
*/
|
|
2490
|
+
fullInvoices: FullInvoice[];
|
|
2491
|
+
|
|
2492
|
+
/**
|
|
2493
|
+
* @generated from field: int64 count_total = 2;
|
|
2494
|
+
*/
|
|
2495
|
+
countTotal: bigint;
|
|
2496
|
+
|
|
2497
|
+
constructor(data?: PartialMessage<FindFullInvoicesByCondsResponse>);
|
|
2498
|
+
|
|
2499
|
+
static readonly runtime: typeof proto3;
|
|
2500
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.FindFullInvoicesByCondsResponse";
|
|
2501
|
+
static readonly fields: FieldList;
|
|
2502
|
+
|
|
2503
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): FindFullInvoicesByCondsResponse;
|
|
2504
|
+
|
|
2505
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): FindFullInvoicesByCondsResponse;
|
|
2506
|
+
|
|
2507
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): FindFullInvoicesByCondsResponse;
|
|
2508
|
+
|
|
2509
|
+
static equals(a: FindFullInvoicesByCondsResponse | PlainMessage<FindFullInvoicesByCondsResponse> | undefined, b: FindFullInvoicesByCondsResponse | PlainMessage<FindFullInvoicesByCondsResponse> | undefined): boolean;
|
|
2510
|
+
}
|
|
2511
|
+
|
|
2512
|
+
/**
|
|
2513
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetInvoiceValidationRulesRequest
|
|
2514
|
+
*/
|
|
2515
|
+
export declare class GetInvoiceValidationRulesRequest extends Message<GetInvoiceValidationRulesRequest> {
|
|
2516
|
+
/**
|
|
2517
|
+
* @generated from field: int64 account_id = 1;
|
|
2518
|
+
*/
|
|
2519
|
+
accountId: bigint;
|
|
2520
|
+
|
|
2521
|
+
constructor(data?: PartialMessage<GetInvoiceValidationRulesRequest>);
|
|
2522
|
+
|
|
2523
|
+
static readonly runtime: typeof proto3;
|
|
2524
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetInvoiceValidationRulesRequest";
|
|
2525
|
+
static readonly fields: FieldList;
|
|
2526
|
+
|
|
2527
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetInvoiceValidationRulesRequest;
|
|
2528
|
+
|
|
2529
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetInvoiceValidationRulesRequest;
|
|
2530
|
+
|
|
2531
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetInvoiceValidationRulesRequest;
|
|
2532
|
+
|
|
2533
|
+
static equals(a: GetInvoiceValidationRulesRequest | PlainMessage<GetInvoiceValidationRulesRequest> | undefined, b: GetInvoiceValidationRulesRequest | PlainMessage<GetInvoiceValidationRulesRequest> | undefined): boolean;
|
|
2534
|
+
}
|
|
2535
|
+
|
|
2536
|
+
/**
|
|
2537
|
+
* @generated from message ct_logic_uni_rev_order.v1.InvoiceValidationBasicRule
|
|
2538
|
+
*/
|
|
2539
|
+
export declare class InvoiceValidationBasicRule extends Message<InvoiceValidationBasicRule> {
|
|
2540
|
+
/**
|
|
2541
|
+
* @generated from field: string field = 1;
|
|
2542
|
+
*/
|
|
2543
|
+
field: string;
|
|
2544
|
+
|
|
2545
|
+
/**
|
|
2546
|
+
* @generated from field: bool is_required = 2;
|
|
2547
|
+
*/
|
|
2548
|
+
isRequired: boolean;
|
|
2549
|
+
|
|
2550
|
+
/**
|
|
2551
|
+
* @generated from field: int64 min_length = 3;
|
|
2552
|
+
*/
|
|
2553
|
+
minLength: bigint;
|
|
2554
|
+
|
|
2555
|
+
/**
|
|
2556
|
+
* @generated from field: int64 max_length = 4;
|
|
2557
|
+
*/
|
|
2558
|
+
maxLength: bigint;
|
|
2559
|
+
|
|
2560
|
+
constructor(data?: PartialMessage<InvoiceValidationBasicRule>);
|
|
2561
|
+
|
|
2562
|
+
static readonly runtime: typeof proto3;
|
|
2563
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.InvoiceValidationBasicRule";
|
|
2564
|
+
static readonly fields: FieldList;
|
|
2565
|
+
|
|
2566
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InvoiceValidationBasicRule;
|
|
2567
|
+
|
|
2568
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InvoiceValidationBasicRule;
|
|
2569
|
+
|
|
2570
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InvoiceValidationBasicRule;
|
|
2571
|
+
|
|
2572
|
+
static equals(a: InvoiceValidationBasicRule | PlainMessage<InvoiceValidationBasicRule> | undefined, b: InvoiceValidationBasicRule | PlainMessage<InvoiceValidationBasicRule> | undefined): boolean;
|
|
2573
|
+
}
|
|
2574
|
+
|
|
2575
|
+
/**
|
|
2576
|
+
* @generated from message ct_logic_uni_rev_order.v1.GetInvoiceValidationRulesResponse
|
|
2577
|
+
*/
|
|
2578
|
+
export declare class GetInvoiceValidationRulesResponse extends Message<GetInvoiceValidationRulesResponse> {
|
|
2579
|
+
/**
|
|
2580
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.InvoiceValidationBasicRule basic_rules = 1;
|
|
2581
|
+
*/
|
|
2582
|
+
basicRules: InvoiceValidationBasicRule[];
|
|
2583
|
+
|
|
2584
|
+
constructor(data?: PartialMessage<GetInvoiceValidationRulesResponse>);
|
|
2585
|
+
|
|
2586
|
+
static readonly runtime: typeof proto3;
|
|
2587
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.GetInvoiceValidationRulesResponse";
|
|
2588
|
+
static readonly fields: FieldList;
|
|
2589
|
+
|
|
2590
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetInvoiceValidationRulesResponse;
|
|
2591
|
+
|
|
2592
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetInvoiceValidationRulesResponse;
|
|
2593
|
+
|
|
2594
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): GetInvoiceValidationRulesResponse;
|
|
2595
|
+
|
|
2596
|
+
static equals(a: GetInvoiceValidationRulesResponse | PlainMessage<GetInvoiceValidationRulesResponse> | undefined, b: GetInvoiceValidationRulesResponse | PlainMessage<GetInvoiceValidationRulesResponse> | undefined): boolean;
|
|
2597
|
+
}
|
|
2598
|
+
|
|
2599
|
+
/**
|
|
2600
|
+
* @generated from message ct_logic_uni_rev_order.v1.InvoiceFormItem
|
|
2601
|
+
*/
|
|
2602
|
+
export declare class InvoiceFormItem extends Message<InvoiceFormItem> {
|
|
2603
|
+
/**
|
|
2604
|
+
* @generated from field: string field = 1;
|
|
2605
|
+
*/
|
|
2606
|
+
field: string;
|
|
2607
|
+
|
|
2608
|
+
/**
|
|
2609
|
+
* @generated from field: string value = 2;
|
|
2610
|
+
*/
|
|
2611
|
+
value: string;
|
|
2612
|
+
|
|
2613
|
+
constructor(data?: PartialMessage<InvoiceFormItem>);
|
|
2614
|
+
|
|
2615
|
+
static readonly runtime: typeof proto3;
|
|
2616
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.InvoiceFormItem";
|
|
2617
|
+
static readonly fields: FieldList;
|
|
2618
|
+
|
|
2619
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InvoiceFormItem;
|
|
2620
|
+
|
|
2621
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InvoiceFormItem;
|
|
2622
|
+
|
|
2623
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InvoiceFormItem;
|
|
2624
|
+
|
|
2625
|
+
static equals(a: InvoiceFormItem | PlainMessage<InvoiceFormItem> | undefined, b: InvoiceFormItem | PlainMessage<InvoiceFormItem> | undefined): boolean;
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2628
|
+
/**
|
|
2629
|
+
* @generated from message ct_logic_uni_rev_order.v1.PreValidateInvoiceRequest
|
|
2630
|
+
*/
|
|
2631
|
+
export declare class PreValidateInvoiceRequest extends Message<PreValidateInvoiceRequest> {
|
|
2632
|
+
/**
|
|
2633
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.InvoiceFormItem payload = 1;
|
|
2634
|
+
*/
|
|
2635
|
+
payload: InvoiceFormItem[];
|
|
2636
|
+
|
|
2637
|
+
/**
|
|
2638
|
+
* @generated from field: int64 account_id = 2;
|
|
2639
|
+
*/
|
|
2640
|
+
accountId: bigint;
|
|
2641
|
+
|
|
2642
|
+
/**
|
|
2643
|
+
* @generated from field: int64 order_id = 3;
|
|
2644
|
+
*/
|
|
2645
|
+
orderId: bigint;
|
|
2646
|
+
|
|
2647
|
+
constructor(data?: PartialMessage<PreValidateInvoiceRequest>);
|
|
2648
|
+
|
|
2649
|
+
static readonly runtime: typeof proto3;
|
|
2650
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.PreValidateInvoiceRequest";
|
|
2651
|
+
static readonly fields: FieldList;
|
|
2652
|
+
|
|
2653
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PreValidateInvoiceRequest;
|
|
2654
|
+
|
|
2655
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PreValidateInvoiceRequest;
|
|
2656
|
+
|
|
2657
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PreValidateInvoiceRequest;
|
|
2658
|
+
|
|
2659
|
+
static equals(a: PreValidateInvoiceRequest | PlainMessage<PreValidateInvoiceRequest> | undefined, b: PreValidateInvoiceRequest | PlainMessage<PreValidateInvoiceRequest> | undefined): boolean;
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2662
|
+
/**
|
|
2663
|
+
* @generated from message ct_logic_uni_rev_order.v1.InvoiceFormItemValidationResponse
|
|
2664
|
+
*/
|
|
2665
|
+
export declare class InvoiceFormItemValidationResponse extends Message<InvoiceFormItemValidationResponse> {
|
|
2666
|
+
/**
|
|
2667
|
+
* @generated from field: string field = 1;
|
|
2668
|
+
*/
|
|
2669
|
+
field: string;
|
|
2670
|
+
|
|
2671
|
+
/**
|
|
2672
|
+
* @generated from field: bool is_valid = 2;
|
|
2673
|
+
*/
|
|
2674
|
+
isValid: boolean;
|
|
2675
|
+
|
|
2676
|
+
/**
|
|
2677
|
+
* @generated from field: string message = 3;
|
|
2678
|
+
*/
|
|
2679
|
+
message: string;
|
|
2680
|
+
|
|
2681
|
+
constructor(data?: PartialMessage<InvoiceFormItemValidationResponse>);
|
|
2682
|
+
|
|
2683
|
+
static readonly runtime: typeof proto3;
|
|
2684
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.InvoiceFormItemValidationResponse";
|
|
2685
|
+
static readonly fields: FieldList;
|
|
2686
|
+
|
|
2687
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): InvoiceFormItemValidationResponse;
|
|
2688
|
+
|
|
2689
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): InvoiceFormItemValidationResponse;
|
|
2690
|
+
|
|
2691
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): InvoiceFormItemValidationResponse;
|
|
2692
|
+
|
|
2693
|
+
static equals(a: InvoiceFormItemValidationResponse | PlainMessage<InvoiceFormItemValidationResponse> | undefined, b: InvoiceFormItemValidationResponse | PlainMessage<InvoiceFormItemValidationResponse> | undefined): boolean;
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
/**
|
|
2697
|
+
* @generated from message ct_logic_uni_rev_order.v1.PreValidateInvoiceResponse
|
|
2698
|
+
*/
|
|
2699
|
+
export declare class PreValidateInvoiceResponse extends Message<PreValidateInvoiceResponse> {
|
|
2700
|
+
/**
|
|
2701
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.InvoiceFormItemValidationResponse data = 1;
|
|
2702
|
+
*/
|
|
2703
|
+
data: InvoiceFormItemValidationResponse[];
|
|
2704
|
+
|
|
2705
|
+
constructor(data?: PartialMessage<PreValidateInvoiceResponse>);
|
|
2706
|
+
|
|
2707
|
+
static readonly runtime: typeof proto3;
|
|
2708
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.PreValidateInvoiceResponse";
|
|
2709
|
+
static readonly fields: FieldList;
|
|
2710
|
+
|
|
2711
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): PreValidateInvoiceResponse;
|
|
2712
|
+
|
|
2713
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): PreValidateInvoiceResponse;
|
|
2714
|
+
|
|
2715
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): PreValidateInvoiceResponse;
|
|
2716
|
+
|
|
2717
|
+
static equals(a: PreValidateInvoiceResponse | PlainMessage<PreValidateInvoiceResponse> | undefined, b: PreValidateInvoiceResponse | PlainMessage<PreValidateInvoiceResponse> | undefined): boolean;
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
/**
|
|
2721
|
+
* @generated from message ct_logic_uni_rev_order.v1.ExportInvoicesByDateRequest
|
|
2722
|
+
*/
|
|
2723
|
+
export declare class ExportInvoicesByDateRequest extends Message<ExportInvoicesByDateRequest> {
|
|
2724
|
+
/**
|
|
2725
|
+
* This token represents order_id - the last order_id from previous call, and func similarly to an offset.
|
|
2726
|
+
*
|
|
2727
|
+
* @generated from field: int64 next_token = 1;
|
|
2728
|
+
*/
|
|
2729
|
+
nextToken: bigint;
|
|
2730
|
+
|
|
2731
|
+
/**
|
|
2732
|
+
* @generated from field: google.protobuf.Timestamp from_date = 2;
|
|
2733
|
+
*/
|
|
2734
|
+
fromDate?: Timestamp;
|
|
2735
|
+
|
|
2736
|
+
/**
|
|
2737
|
+
* @generated from field: google.protobuf.Timestamp to_date = 3;
|
|
2738
|
+
*/
|
|
2739
|
+
toDate?: Timestamp;
|
|
2740
|
+
|
|
2741
|
+
constructor(data?: PartialMessage<ExportInvoicesByDateRequest>);
|
|
2742
|
+
|
|
2743
|
+
static readonly runtime: typeof proto3;
|
|
2744
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ExportInvoicesByDateRequest";
|
|
2745
|
+
static readonly fields: FieldList;
|
|
2746
|
+
|
|
2747
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExportInvoicesByDateRequest;
|
|
2748
|
+
|
|
2749
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExportInvoicesByDateRequest;
|
|
2750
|
+
|
|
2751
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExportInvoicesByDateRequest;
|
|
2752
|
+
|
|
2753
|
+
static equals(a: ExportInvoicesByDateRequest | PlainMessage<ExportInvoicesByDateRequest> | undefined, b: ExportInvoicesByDateRequest | PlainMessage<ExportInvoicesByDateRequest> | undefined): boolean;
|
|
2754
|
+
}
|
|
2755
|
+
|
|
2756
|
+
/**
|
|
2757
|
+
* @generated from message ct_logic_uni_rev_order.v1.ExportInvoicesByDateResponse
|
|
2758
|
+
*/
|
|
2759
|
+
export declare class ExportInvoicesByDateResponse extends Message<ExportInvoicesByDateResponse> {
|
|
2760
|
+
/**
|
|
2761
|
+
* @generated from field: repeated ct_logic_uni_rev_order.v1.OrderWithInvoiceExport full_invoices = 1;
|
|
2762
|
+
*/
|
|
2763
|
+
fullInvoices: OrderWithInvoiceExport[];
|
|
2764
|
+
|
|
2765
|
+
/**
|
|
2766
|
+
* @generated from field: int64 count_total = 2;
|
|
2767
|
+
*/
|
|
2768
|
+
countTotal: bigint;
|
|
2769
|
+
|
|
2770
|
+
/**
|
|
2771
|
+
* @generated from field: int64 next_token = 3;
|
|
2772
|
+
*/
|
|
2773
|
+
nextToken: bigint;
|
|
2774
|
+
|
|
2775
|
+
constructor(data?: PartialMessage<ExportInvoicesByDateResponse>);
|
|
2776
|
+
|
|
2777
|
+
static readonly runtime: typeof proto3;
|
|
2778
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.ExportInvoicesByDateResponse";
|
|
2779
|
+
static readonly fields: FieldList;
|
|
2780
|
+
|
|
2781
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ExportInvoicesByDateResponse;
|
|
2782
|
+
|
|
2783
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ExportInvoicesByDateResponse;
|
|
2784
|
+
|
|
2785
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): ExportInvoicesByDateResponse;
|
|
2786
|
+
|
|
2787
|
+
static equals(a: ExportInvoicesByDateResponse | PlainMessage<ExportInvoicesByDateResponse> | undefined, b: ExportInvoicesByDateResponse | PlainMessage<ExportInvoicesByDateResponse> | undefined): boolean;
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2790
|
+
/**
|
|
2791
|
+
* @generated from message ct_logic_uni_rev_order.v1.OrderWithInvoiceExport
|
|
2792
|
+
*/
|
|
2793
|
+
export declare class OrderWithInvoiceExport extends Message<OrderWithInvoiceExport> {
|
|
2794
|
+
/**
|
|
2795
|
+
* @generated from field: int64 account_id = 1;
|
|
2796
|
+
*/
|
|
2797
|
+
accountId: bigint;
|
|
2798
|
+
|
|
2799
|
+
/**
|
|
2800
|
+
* @generated from field: int64 order_id = 2;
|
|
2801
|
+
*/
|
|
2802
|
+
orderId: bigint;
|
|
2803
|
+
|
|
2804
|
+
/**
|
|
2805
|
+
* @generated from field: int64 amount = 3;
|
|
2806
|
+
*/
|
|
2807
|
+
amount: bigint;
|
|
2808
|
+
|
|
2809
|
+
/**
|
|
2810
|
+
* @generated from field: int64 tax_amount = 4;
|
|
2811
|
+
*/
|
|
2812
|
+
taxAmount: bigint;
|
|
2813
|
+
|
|
2814
|
+
/**
|
|
2815
|
+
* @generated from field: int64 net_amount = 5;
|
|
2816
|
+
*/
|
|
2817
|
+
netAmount: bigint;
|
|
2818
|
+
|
|
2819
|
+
/**
|
|
2820
|
+
* @generated from field: google.protobuf.Timestamp paid_date = 6;
|
|
2821
|
+
*/
|
|
2822
|
+
paidDate?: Timestamp;
|
|
2823
|
+
|
|
2824
|
+
/**
|
|
2825
|
+
* @generated from field: google.protobuf.Timestamp created_at = 7;
|
|
2826
|
+
*/
|
|
2827
|
+
createdAt?: Timestamp;
|
|
2828
|
+
|
|
2829
|
+
/**
|
|
2830
|
+
* @generated from field: string payment_method = 8;
|
|
2831
|
+
*/
|
|
2832
|
+
paymentMethod: string;
|
|
2833
|
+
|
|
2834
|
+
/**
|
|
2835
|
+
* @generated from field: string bank_id = 9;
|
|
2836
|
+
*/
|
|
2837
|
+
bankId: string;
|
|
2838
|
+
|
|
2839
|
+
/**
|
|
2840
|
+
* payment vendor transaction_id
|
|
2841
|
+
*
|
|
2842
|
+
* @generated from field: string transaction_id = 10;
|
|
2843
|
+
*/
|
|
2844
|
+
transactionId: string;
|
|
2845
|
+
|
|
2846
|
+
/**
|
|
2847
|
+
* @generated from field: string invoice_id = 11;
|
|
2848
|
+
*/
|
|
2849
|
+
invoiceId: string;
|
|
2850
|
+
|
|
2851
|
+
/**
|
|
2852
|
+
* @generated from field: string invoice_sign = 12;
|
|
2853
|
+
*/
|
|
2854
|
+
invoiceSign: string;
|
|
2855
|
+
|
|
2856
|
+
/**
|
|
2857
|
+
* @generated from field: string invoice_prefix = 13;
|
|
2858
|
+
*/
|
|
2859
|
+
invoicePrefix: string;
|
|
2860
|
+
|
|
2861
|
+
constructor(data?: PartialMessage<OrderWithInvoiceExport>);
|
|
2862
|
+
|
|
2863
|
+
static readonly runtime: typeof proto3;
|
|
2864
|
+
static readonly typeName = "ct_logic_uni_rev_order.v1.OrderWithInvoiceExport";
|
|
2865
|
+
static readonly fields: FieldList;
|
|
2866
|
+
|
|
2867
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): OrderWithInvoiceExport;
|
|
2868
|
+
|
|
2869
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): OrderWithInvoiceExport;
|
|
2870
|
+
|
|
2871
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): OrderWithInvoiceExport;
|
|
2872
|
+
|
|
2873
|
+
static equals(a: OrderWithInvoiceExport | PlainMessage<OrderWithInvoiceExport> | undefined, b: OrderWithInvoiceExport | PlainMessage<OrderWithInvoiceExport> | undefined): boolean;
|
|
2874
|
+
}
|
|
2875
|
+
|