@alexochihua/protos 1.0.4 → 1.0.5
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.
|
@@ -15,6 +15,7 @@ exports.protobufPackage = "kapital.contracts.v1";
|
|
|
15
15
|
function createBaseCreateContractRequest() {
|
|
16
16
|
return {
|
|
17
17
|
customer_id: "",
|
|
18
|
+
clabe: "",
|
|
18
19
|
first_name: "",
|
|
19
20
|
middle_name: undefined,
|
|
20
21
|
last_name: "",
|
|
@@ -66,137 +67,140 @@ exports.CreateContractRequest = {
|
|
|
66
67
|
if (message.customer_id !== "") {
|
|
67
68
|
writer.uint32(10).string(message.customer_id);
|
|
68
69
|
}
|
|
70
|
+
if (message.clabe !== "") {
|
|
71
|
+
writer.uint32(18).string(message.clabe);
|
|
72
|
+
}
|
|
69
73
|
if (message.first_name !== "") {
|
|
70
|
-
writer.uint32(
|
|
74
|
+
writer.uint32(26).string(message.first_name);
|
|
71
75
|
}
|
|
72
76
|
if (message.middle_name !== undefined) {
|
|
73
|
-
writer.uint32(
|
|
77
|
+
writer.uint32(34).string(message.middle_name);
|
|
74
78
|
}
|
|
75
79
|
if (message.last_name !== "") {
|
|
76
|
-
writer.uint32(
|
|
80
|
+
writer.uint32(42).string(message.last_name);
|
|
77
81
|
}
|
|
78
82
|
if (message.date_of_birth !== "") {
|
|
79
|
-
writer.uint32(
|
|
83
|
+
writer.uint32(50).string(message.date_of_birth);
|
|
80
84
|
}
|
|
81
85
|
if (message.address_1 !== "") {
|
|
82
|
-
writer.uint32(
|
|
86
|
+
writer.uint32(58).string(message.address_1);
|
|
83
87
|
}
|
|
84
88
|
if (message.address_2 !== "") {
|
|
85
|
-
writer.uint32(
|
|
89
|
+
writer.uint32(66).string(message.address_2);
|
|
86
90
|
}
|
|
87
91
|
if (message.address_3 !== "") {
|
|
88
|
-
writer.uint32(
|
|
92
|
+
writer.uint32(74).string(message.address_3);
|
|
89
93
|
}
|
|
90
94
|
if (message.city !== "") {
|
|
91
|
-
writer.uint32(
|
|
95
|
+
writer.uint32(82).string(message.city);
|
|
92
96
|
}
|
|
93
97
|
if (message.state !== "") {
|
|
94
|
-
writer.uint32(
|
|
98
|
+
writer.uint32(90).string(message.state);
|
|
95
99
|
}
|
|
96
100
|
if (message.postal_code !== "") {
|
|
97
|
-
writer.uint32(
|
|
101
|
+
writer.uint32(98).string(message.postal_code);
|
|
98
102
|
}
|
|
99
103
|
if (message.country_code !== "") {
|
|
100
|
-
writer.uint32(
|
|
104
|
+
writer.uint32(106).string(message.country_code);
|
|
101
105
|
}
|
|
102
106
|
if (message.primary_phone !== "") {
|
|
103
|
-
writer.uint32(
|
|
107
|
+
writer.uint32(114).string(message.primary_phone);
|
|
104
108
|
}
|
|
105
109
|
if (message.other_phone !== undefined) {
|
|
106
|
-
writer.uint32(
|
|
110
|
+
writer.uint32(122).string(message.other_phone);
|
|
107
111
|
}
|
|
108
112
|
if (message.email !== "") {
|
|
109
|
-
writer.uint32(
|
|
113
|
+
writer.uint32(130).string(message.email);
|
|
110
114
|
}
|
|
111
115
|
if (message.income_source !== "") {
|
|
112
|
-
writer.uint32(
|
|
116
|
+
writer.uint32(138).string(message.income_source);
|
|
113
117
|
}
|
|
114
118
|
if (message.curp !== "") {
|
|
115
|
-
writer.uint32(
|
|
119
|
+
writer.uint32(146).string(message.curp);
|
|
116
120
|
}
|
|
117
121
|
if (message.rfc !== "") {
|
|
118
|
-
writer.uint32(
|
|
122
|
+
writer.uint32(154).string(message.rfc);
|
|
119
123
|
}
|
|
120
124
|
if (message.external_customer_id !== undefined) {
|
|
121
|
-
writer.uint32(
|
|
125
|
+
writer.uint32(162).string(message.external_customer_id);
|
|
122
126
|
}
|
|
123
127
|
if (message.product_key !== "") {
|
|
124
|
-
writer.uint32(
|
|
128
|
+
writer.uint32(170).string(message.product_key);
|
|
125
129
|
}
|
|
126
130
|
if (message.product_type !== "") {
|
|
127
|
-
writer.uint32(
|
|
131
|
+
writer.uint32(178).string(message.product_type);
|
|
128
132
|
}
|
|
129
133
|
if (message.load_amount !== "") {
|
|
130
|
-
writer.uint32(
|
|
134
|
+
writer.uint32(186).string(message.load_amount);
|
|
131
135
|
}
|
|
132
136
|
if (message.load_amount_physical !== undefined) {
|
|
133
|
-
writer.uint32(
|
|
137
|
+
writer.uint32(194).string(message.load_amount_physical);
|
|
134
138
|
}
|
|
135
139
|
if (message.load_type !== undefined) {
|
|
136
|
-
writer.uint32(
|
|
140
|
+
writer.uint32(202).string(message.load_type);
|
|
137
141
|
}
|
|
138
142
|
if (message.primary_account !== undefined) {
|
|
139
|
-
writer.uint32(
|
|
143
|
+
writer.uint32(210).string(message.primary_account);
|
|
140
144
|
}
|
|
141
145
|
if (message.funding_account_number !== undefined) {
|
|
142
|
-
writer.uint32(
|
|
146
|
+
writer.uint32(218).string(message.funding_account_number);
|
|
143
147
|
}
|
|
144
148
|
if (message.shared_balance !== undefined) {
|
|
145
|
-
writer.uint32(
|
|
149
|
+
writer.uint32(224).int32(message.shared_balance);
|
|
146
150
|
}
|
|
147
151
|
if (message.authorized_user !== undefined) {
|
|
148
|
-
writer.uint32(
|
|
152
|
+
writer.uint32(234).string(message.authorized_user);
|
|
149
153
|
}
|
|
150
154
|
if (message.user_data !== undefined) {
|
|
151
|
-
writer.uint32(
|
|
155
|
+
writer.uint32(242).string(message.user_data);
|
|
152
156
|
}
|
|
153
157
|
if (message.offline !== undefined) {
|
|
154
|
-
writer.uint32(
|
|
158
|
+
writer.uint32(250).string(message.offline);
|
|
155
159
|
}
|
|
156
160
|
if (message.verify_only !== undefined) {
|
|
157
|
-
writer.uint32(
|
|
161
|
+
writer.uint32(256).int32(message.verify_only);
|
|
158
162
|
}
|
|
159
163
|
if (message.cip_status !== undefined) {
|
|
160
|
-
writer.uint32(
|
|
164
|
+
writer.uint32(266).string(message.cip_status);
|
|
161
165
|
}
|
|
162
166
|
if (message.emboss_line_2 !== undefined) {
|
|
163
|
-
writer.uint32(
|
|
167
|
+
writer.uint32(274).string(message.emboss_line_2);
|
|
164
168
|
}
|
|
165
169
|
if (message.provider_assessed_fee !== undefined) {
|
|
166
|
-
writer.uint32(
|
|
170
|
+
writer.uint32(281).double(message.provider_assessed_fee);
|
|
167
171
|
}
|
|
168
172
|
if (message.load_from_account !== undefined) {
|
|
169
|
-
writer.uint32(
|
|
173
|
+
writer.uint32(290).string(message.load_from_account);
|
|
170
174
|
}
|
|
171
175
|
if (message.sweep_date !== undefined) {
|
|
172
|
-
writer.uint32(
|
|
176
|
+
writer.uint32(298).string(message.sweep_date);
|
|
173
177
|
}
|
|
174
178
|
if (message.express_mail !== undefined) {
|
|
175
|
-
writer.uint32(
|
|
179
|
+
writer.uint32(306).string(message.express_mail);
|
|
176
180
|
}
|
|
177
181
|
if (message.ship_adress_permanent !== undefined) {
|
|
178
|
-
writer.uint32(
|
|
182
|
+
writer.uint32(314).string(message.ship_adress_permanent);
|
|
179
183
|
}
|
|
180
184
|
if (message.ship_adress_1 !== undefined) {
|
|
181
|
-
writer.uint32(
|
|
185
|
+
writer.uint32(322).string(message.ship_adress_1);
|
|
182
186
|
}
|
|
183
187
|
if (message.ship_adress_2 !== undefined) {
|
|
184
|
-
writer.uint32(
|
|
188
|
+
writer.uint32(330).string(message.ship_adress_2);
|
|
185
189
|
}
|
|
186
190
|
if (message.shitp_city !== undefined) {
|
|
187
|
-
writer.uint32(
|
|
191
|
+
writer.uint32(338).string(message.shitp_city);
|
|
188
192
|
}
|
|
189
193
|
if (message.ship_state !== undefined) {
|
|
190
|
-
writer.uint32(
|
|
194
|
+
writer.uint32(346).string(message.ship_state);
|
|
191
195
|
}
|
|
192
196
|
if (message.ship_zip !== undefined) {
|
|
193
|
-
writer.uint32(
|
|
197
|
+
writer.uint32(354).string(message.ship_zip);
|
|
194
198
|
}
|
|
195
199
|
if (message.ship_country_code !== undefined) {
|
|
196
|
-
writer.uint32(
|
|
200
|
+
writer.uint32(362).string(message.ship_country_code);
|
|
197
201
|
}
|
|
198
202
|
if (message.business_name !== undefined) {
|
|
199
|
-
writer.uint32(
|
|
203
|
+
writer.uint32(370).string(message.business_name);
|
|
200
204
|
}
|
|
201
205
|
return writer;
|
|
202
206
|
},
|
|
@@ -218,307 +222,314 @@ exports.CreateContractRequest = {
|
|
|
218
222
|
if (tag !== 18) {
|
|
219
223
|
break;
|
|
220
224
|
}
|
|
221
|
-
message.
|
|
225
|
+
message.clabe = reader.string();
|
|
222
226
|
continue;
|
|
223
227
|
}
|
|
224
228
|
case 3: {
|
|
225
229
|
if (tag !== 26) {
|
|
226
230
|
break;
|
|
227
231
|
}
|
|
228
|
-
message.
|
|
232
|
+
message.first_name = reader.string();
|
|
229
233
|
continue;
|
|
230
234
|
}
|
|
231
235
|
case 4: {
|
|
232
236
|
if (tag !== 34) {
|
|
233
237
|
break;
|
|
234
238
|
}
|
|
235
|
-
message.
|
|
239
|
+
message.middle_name = reader.string();
|
|
236
240
|
continue;
|
|
237
241
|
}
|
|
238
242
|
case 5: {
|
|
239
243
|
if (tag !== 42) {
|
|
240
244
|
break;
|
|
241
245
|
}
|
|
242
|
-
message.
|
|
246
|
+
message.last_name = reader.string();
|
|
243
247
|
continue;
|
|
244
248
|
}
|
|
245
249
|
case 6: {
|
|
246
250
|
if (tag !== 50) {
|
|
247
251
|
break;
|
|
248
252
|
}
|
|
249
|
-
message.
|
|
253
|
+
message.date_of_birth = reader.string();
|
|
250
254
|
continue;
|
|
251
255
|
}
|
|
252
256
|
case 7: {
|
|
253
257
|
if (tag !== 58) {
|
|
254
258
|
break;
|
|
255
259
|
}
|
|
256
|
-
message.
|
|
260
|
+
message.address_1 = reader.string();
|
|
257
261
|
continue;
|
|
258
262
|
}
|
|
259
263
|
case 8: {
|
|
260
264
|
if (tag !== 66) {
|
|
261
265
|
break;
|
|
262
266
|
}
|
|
263
|
-
message.
|
|
267
|
+
message.address_2 = reader.string();
|
|
264
268
|
continue;
|
|
265
269
|
}
|
|
266
270
|
case 9: {
|
|
267
271
|
if (tag !== 74) {
|
|
268
272
|
break;
|
|
269
273
|
}
|
|
270
|
-
message.
|
|
274
|
+
message.address_3 = reader.string();
|
|
271
275
|
continue;
|
|
272
276
|
}
|
|
273
277
|
case 10: {
|
|
274
278
|
if (tag !== 82) {
|
|
275
279
|
break;
|
|
276
280
|
}
|
|
277
|
-
message.
|
|
281
|
+
message.city = reader.string();
|
|
278
282
|
continue;
|
|
279
283
|
}
|
|
280
284
|
case 11: {
|
|
281
285
|
if (tag !== 90) {
|
|
282
286
|
break;
|
|
283
287
|
}
|
|
284
|
-
message.
|
|
288
|
+
message.state = reader.string();
|
|
285
289
|
continue;
|
|
286
290
|
}
|
|
287
291
|
case 12: {
|
|
288
292
|
if (tag !== 98) {
|
|
289
293
|
break;
|
|
290
294
|
}
|
|
291
|
-
message.
|
|
295
|
+
message.postal_code = reader.string();
|
|
292
296
|
continue;
|
|
293
297
|
}
|
|
294
298
|
case 13: {
|
|
295
299
|
if (tag !== 106) {
|
|
296
300
|
break;
|
|
297
301
|
}
|
|
298
|
-
message.
|
|
302
|
+
message.country_code = reader.string();
|
|
299
303
|
continue;
|
|
300
304
|
}
|
|
301
305
|
case 14: {
|
|
302
306
|
if (tag !== 114) {
|
|
303
307
|
break;
|
|
304
308
|
}
|
|
305
|
-
message.
|
|
309
|
+
message.primary_phone = reader.string();
|
|
306
310
|
continue;
|
|
307
311
|
}
|
|
308
312
|
case 15: {
|
|
309
313
|
if (tag !== 122) {
|
|
310
314
|
break;
|
|
311
315
|
}
|
|
312
|
-
message.
|
|
316
|
+
message.other_phone = reader.string();
|
|
313
317
|
continue;
|
|
314
318
|
}
|
|
315
319
|
case 16: {
|
|
316
320
|
if (tag !== 130) {
|
|
317
321
|
break;
|
|
318
322
|
}
|
|
319
|
-
message.
|
|
323
|
+
message.email = reader.string();
|
|
320
324
|
continue;
|
|
321
325
|
}
|
|
322
326
|
case 17: {
|
|
323
327
|
if (tag !== 138) {
|
|
324
328
|
break;
|
|
325
329
|
}
|
|
326
|
-
message.
|
|
330
|
+
message.income_source = reader.string();
|
|
327
331
|
continue;
|
|
328
332
|
}
|
|
329
333
|
case 18: {
|
|
330
334
|
if (tag !== 146) {
|
|
331
335
|
break;
|
|
332
336
|
}
|
|
333
|
-
message.
|
|
337
|
+
message.curp = reader.string();
|
|
334
338
|
continue;
|
|
335
339
|
}
|
|
336
340
|
case 19: {
|
|
337
341
|
if (tag !== 154) {
|
|
338
342
|
break;
|
|
339
343
|
}
|
|
340
|
-
message.
|
|
344
|
+
message.rfc = reader.string();
|
|
341
345
|
continue;
|
|
342
346
|
}
|
|
343
347
|
case 20: {
|
|
344
348
|
if (tag !== 162) {
|
|
345
349
|
break;
|
|
346
350
|
}
|
|
347
|
-
message.
|
|
351
|
+
message.external_customer_id = reader.string();
|
|
348
352
|
continue;
|
|
349
353
|
}
|
|
350
354
|
case 21: {
|
|
351
355
|
if (tag !== 170) {
|
|
352
356
|
break;
|
|
353
357
|
}
|
|
354
|
-
message.
|
|
358
|
+
message.product_key = reader.string();
|
|
355
359
|
continue;
|
|
356
360
|
}
|
|
357
361
|
case 22: {
|
|
358
362
|
if (tag !== 178) {
|
|
359
363
|
break;
|
|
360
364
|
}
|
|
361
|
-
message.
|
|
365
|
+
message.product_type = reader.string();
|
|
362
366
|
continue;
|
|
363
367
|
}
|
|
364
368
|
case 23: {
|
|
365
369
|
if (tag !== 186) {
|
|
366
370
|
break;
|
|
367
371
|
}
|
|
368
|
-
message.
|
|
372
|
+
message.load_amount = reader.string();
|
|
369
373
|
continue;
|
|
370
374
|
}
|
|
371
375
|
case 24: {
|
|
372
376
|
if (tag !== 194) {
|
|
373
377
|
break;
|
|
374
378
|
}
|
|
375
|
-
message.
|
|
379
|
+
message.load_amount_physical = reader.string();
|
|
376
380
|
continue;
|
|
377
381
|
}
|
|
378
382
|
case 25: {
|
|
379
383
|
if (tag !== 202) {
|
|
380
384
|
break;
|
|
381
385
|
}
|
|
382
|
-
message.
|
|
386
|
+
message.load_type = reader.string();
|
|
383
387
|
continue;
|
|
384
388
|
}
|
|
385
389
|
case 26: {
|
|
386
390
|
if (tag !== 210) {
|
|
387
391
|
break;
|
|
388
392
|
}
|
|
389
|
-
message.
|
|
393
|
+
message.primary_account = reader.string();
|
|
390
394
|
continue;
|
|
391
395
|
}
|
|
392
396
|
case 27: {
|
|
393
|
-
if (tag !==
|
|
397
|
+
if (tag !== 218) {
|
|
394
398
|
break;
|
|
395
399
|
}
|
|
396
|
-
message.
|
|
400
|
+
message.funding_account_number = reader.string();
|
|
397
401
|
continue;
|
|
398
402
|
}
|
|
399
403
|
case 28: {
|
|
400
|
-
if (tag !==
|
|
404
|
+
if (tag !== 224) {
|
|
401
405
|
break;
|
|
402
406
|
}
|
|
403
|
-
message.
|
|
407
|
+
message.shared_balance = reader.int32();
|
|
404
408
|
continue;
|
|
405
409
|
}
|
|
406
410
|
case 29: {
|
|
407
411
|
if (tag !== 234) {
|
|
408
412
|
break;
|
|
409
413
|
}
|
|
410
|
-
message.
|
|
414
|
+
message.authorized_user = reader.string();
|
|
411
415
|
continue;
|
|
412
416
|
}
|
|
413
417
|
case 30: {
|
|
414
418
|
if (tag !== 242) {
|
|
415
419
|
break;
|
|
416
420
|
}
|
|
417
|
-
message.
|
|
421
|
+
message.user_data = reader.string();
|
|
418
422
|
continue;
|
|
419
423
|
}
|
|
420
424
|
case 31: {
|
|
421
|
-
if (tag !==
|
|
425
|
+
if (tag !== 250) {
|
|
422
426
|
break;
|
|
423
427
|
}
|
|
424
|
-
message.
|
|
428
|
+
message.offline = reader.string();
|
|
425
429
|
continue;
|
|
426
430
|
}
|
|
427
431
|
case 32: {
|
|
428
|
-
if (tag !==
|
|
432
|
+
if (tag !== 256) {
|
|
429
433
|
break;
|
|
430
434
|
}
|
|
431
|
-
message.
|
|
435
|
+
message.verify_only = reader.int32();
|
|
432
436
|
continue;
|
|
433
437
|
}
|
|
434
438
|
case 33: {
|
|
435
439
|
if (tag !== 266) {
|
|
436
440
|
break;
|
|
437
441
|
}
|
|
438
|
-
message.
|
|
442
|
+
message.cip_status = reader.string();
|
|
439
443
|
continue;
|
|
440
444
|
}
|
|
441
445
|
case 34: {
|
|
442
|
-
if (tag !==
|
|
446
|
+
if (tag !== 274) {
|
|
443
447
|
break;
|
|
444
448
|
}
|
|
445
|
-
message.
|
|
449
|
+
message.emboss_line_2 = reader.string();
|
|
446
450
|
continue;
|
|
447
451
|
}
|
|
448
452
|
case 35: {
|
|
449
|
-
if (tag !==
|
|
453
|
+
if (tag !== 281) {
|
|
450
454
|
break;
|
|
451
455
|
}
|
|
452
|
-
message.
|
|
456
|
+
message.provider_assessed_fee = reader.double();
|
|
453
457
|
continue;
|
|
454
458
|
}
|
|
455
459
|
case 36: {
|
|
456
460
|
if (tag !== 290) {
|
|
457
461
|
break;
|
|
458
462
|
}
|
|
459
|
-
message.
|
|
463
|
+
message.load_from_account = reader.string();
|
|
460
464
|
continue;
|
|
461
465
|
}
|
|
462
466
|
case 37: {
|
|
463
467
|
if (tag !== 298) {
|
|
464
468
|
break;
|
|
465
469
|
}
|
|
466
|
-
message.
|
|
470
|
+
message.sweep_date = reader.string();
|
|
467
471
|
continue;
|
|
468
472
|
}
|
|
469
473
|
case 38: {
|
|
470
474
|
if (tag !== 306) {
|
|
471
475
|
break;
|
|
472
476
|
}
|
|
473
|
-
message.
|
|
477
|
+
message.express_mail = reader.string();
|
|
474
478
|
continue;
|
|
475
479
|
}
|
|
476
480
|
case 39: {
|
|
477
481
|
if (tag !== 314) {
|
|
478
482
|
break;
|
|
479
483
|
}
|
|
480
|
-
message.
|
|
484
|
+
message.ship_adress_permanent = reader.string();
|
|
481
485
|
continue;
|
|
482
486
|
}
|
|
483
487
|
case 40: {
|
|
484
488
|
if (tag !== 322) {
|
|
485
489
|
break;
|
|
486
490
|
}
|
|
487
|
-
message.
|
|
491
|
+
message.ship_adress_1 = reader.string();
|
|
488
492
|
continue;
|
|
489
493
|
}
|
|
490
494
|
case 41: {
|
|
491
495
|
if (tag !== 330) {
|
|
492
496
|
break;
|
|
493
497
|
}
|
|
494
|
-
message.
|
|
498
|
+
message.ship_adress_2 = reader.string();
|
|
495
499
|
continue;
|
|
496
500
|
}
|
|
497
501
|
case 42: {
|
|
498
502
|
if (tag !== 338) {
|
|
499
503
|
break;
|
|
500
504
|
}
|
|
501
|
-
message.
|
|
505
|
+
message.shitp_city = reader.string();
|
|
502
506
|
continue;
|
|
503
507
|
}
|
|
504
508
|
case 43: {
|
|
505
509
|
if (tag !== 346) {
|
|
506
510
|
break;
|
|
507
511
|
}
|
|
508
|
-
message.
|
|
512
|
+
message.ship_state = reader.string();
|
|
509
513
|
continue;
|
|
510
514
|
}
|
|
511
515
|
case 44: {
|
|
512
516
|
if (tag !== 354) {
|
|
513
517
|
break;
|
|
514
518
|
}
|
|
515
|
-
message.
|
|
519
|
+
message.ship_zip = reader.string();
|
|
516
520
|
continue;
|
|
517
521
|
}
|
|
518
522
|
case 45: {
|
|
519
523
|
if (tag !== 362) {
|
|
520
524
|
break;
|
|
521
525
|
}
|
|
526
|
+
message.ship_country_code = reader.string();
|
|
527
|
+
continue;
|
|
528
|
+
}
|
|
529
|
+
case 46: {
|
|
530
|
+
if (tag !== 370) {
|
|
531
|
+
break;
|
|
532
|
+
}
|
|
522
533
|
message.business_name = reader.string();
|
|
523
534
|
continue;
|
|
524
535
|
}
|
|
@@ -536,6 +547,7 @@ exports.CreateContractRequest = {
|
|
|
536
547
|
fromPartial(object) {
|
|
537
548
|
const message = createBaseCreateContractRequest();
|
|
538
549
|
message.customer_id = object.customer_id ?? "";
|
|
550
|
+
message.clabe = object.clabe ?? "";
|
|
539
551
|
message.first_name = object.first_name ?? "";
|
|
540
552
|
message.middle_name = object.middle_name ?? undefined;
|
|
541
553
|
message.last_name = object.last_name ?? "";
|
|
@@ -763,6 +775,7 @@ exports.CreateContractResponse = {
|
|
|
763
775
|
function createBaseCreatePhysicalCardContractRequest() {
|
|
764
776
|
return {
|
|
765
777
|
customer_id: "",
|
|
778
|
+
clabe: "",
|
|
766
779
|
first_name: "",
|
|
767
780
|
middle_name: undefined,
|
|
768
781
|
last_name: "",
|
|
@@ -814,137 +827,140 @@ exports.CreatePhysicalCardContractRequest = {
|
|
|
814
827
|
if (message.customer_id !== "") {
|
|
815
828
|
writer.uint32(10).string(message.customer_id);
|
|
816
829
|
}
|
|
830
|
+
if (message.clabe !== "") {
|
|
831
|
+
writer.uint32(18).string(message.clabe);
|
|
832
|
+
}
|
|
817
833
|
if (message.first_name !== "") {
|
|
818
|
-
writer.uint32(
|
|
834
|
+
writer.uint32(26).string(message.first_name);
|
|
819
835
|
}
|
|
820
836
|
if (message.middle_name !== undefined) {
|
|
821
|
-
writer.uint32(
|
|
837
|
+
writer.uint32(34).string(message.middle_name);
|
|
822
838
|
}
|
|
823
839
|
if (message.last_name !== "") {
|
|
824
|
-
writer.uint32(
|
|
840
|
+
writer.uint32(42).string(message.last_name);
|
|
825
841
|
}
|
|
826
842
|
if (message.date_of_birth !== "") {
|
|
827
|
-
writer.uint32(
|
|
843
|
+
writer.uint32(50).string(message.date_of_birth);
|
|
828
844
|
}
|
|
829
845
|
if (message.address_1 !== "") {
|
|
830
|
-
writer.uint32(
|
|
846
|
+
writer.uint32(58).string(message.address_1);
|
|
831
847
|
}
|
|
832
848
|
if (message.address_2 !== "") {
|
|
833
|
-
writer.uint32(
|
|
849
|
+
writer.uint32(66).string(message.address_2);
|
|
834
850
|
}
|
|
835
851
|
if (message.address_3 !== "") {
|
|
836
|
-
writer.uint32(
|
|
852
|
+
writer.uint32(74).string(message.address_3);
|
|
837
853
|
}
|
|
838
854
|
if (message.city !== "") {
|
|
839
|
-
writer.uint32(
|
|
855
|
+
writer.uint32(82).string(message.city);
|
|
840
856
|
}
|
|
841
857
|
if (message.state !== "") {
|
|
842
|
-
writer.uint32(
|
|
858
|
+
writer.uint32(90).string(message.state);
|
|
843
859
|
}
|
|
844
860
|
if (message.postal_code !== "") {
|
|
845
|
-
writer.uint32(
|
|
861
|
+
writer.uint32(98).string(message.postal_code);
|
|
846
862
|
}
|
|
847
863
|
if (message.country_code !== "") {
|
|
848
|
-
writer.uint32(
|
|
864
|
+
writer.uint32(106).string(message.country_code);
|
|
849
865
|
}
|
|
850
866
|
if (message.primary_phone !== "") {
|
|
851
|
-
writer.uint32(
|
|
867
|
+
writer.uint32(114).string(message.primary_phone);
|
|
852
868
|
}
|
|
853
869
|
if (message.other_phone !== undefined) {
|
|
854
|
-
writer.uint32(
|
|
870
|
+
writer.uint32(122).string(message.other_phone);
|
|
855
871
|
}
|
|
856
872
|
if (message.email !== "") {
|
|
857
|
-
writer.uint32(
|
|
873
|
+
writer.uint32(130).string(message.email);
|
|
858
874
|
}
|
|
859
875
|
if (message.income_source !== "") {
|
|
860
|
-
writer.uint32(
|
|
876
|
+
writer.uint32(138).string(message.income_source);
|
|
861
877
|
}
|
|
862
878
|
if (message.curp !== "") {
|
|
863
|
-
writer.uint32(
|
|
879
|
+
writer.uint32(146).string(message.curp);
|
|
864
880
|
}
|
|
865
881
|
if (message.rfc !== "") {
|
|
866
|
-
writer.uint32(
|
|
882
|
+
writer.uint32(154).string(message.rfc);
|
|
867
883
|
}
|
|
868
884
|
if (message.external_customer_id !== undefined) {
|
|
869
|
-
writer.uint32(
|
|
885
|
+
writer.uint32(162).string(message.external_customer_id);
|
|
870
886
|
}
|
|
871
887
|
if (message.product_key !== "") {
|
|
872
|
-
writer.uint32(
|
|
888
|
+
writer.uint32(170).string(message.product_key);
|
|
873
889
|
}
|
|
874
890
|
if (message.product_type !== "") {
|
|
875
|
-
writer.uint32(
|
|
891
|
+
writer.uint32(178).string(message.product_type);
|
|
876
892
|
}
|
|
877
893
|
if (message.load_amount !== "") {
|
|
878
|
-
writer.uint32(
|
|
894
|
+
writer.uint32(186).string(message.load_amount);
|
|
879
895
|
}
|
|
880
896
|
if (message.load_amount_physical !== undefined) {
|
|
881
|
-
writer.uint32(
|
|
897
|
+
writer.uint32(194).string(message.load_amount_physical);
|
|
882
898
|
}
|
|
883
899
|
if (message.load_type !== undefined) {
|
|
884
|
-
writer.uint32(
|
|
900
|
+
writer.uint32(202).string(message.load_type);
|
|
885
901
|
}
|
|
886
902
|
if (message.primary_account !== undefined) {
|
|
887
|
-
writer.uint32(
|
|
903
|
+
writer.uint32(210).string(message.primary_account);
|
|
888
904
|
}
|
|
889
905
|
if (message.funding_account_number !== undefined) {
|
|
890
|
-
writer.uint32(
|
|
906
|
+
writer.uint32(218).string(message.funding_account_number);
|
|
891
907
|
}
|
|
892
908
|
if (message.shared_balance !== undefined) {
|
|
893
|
-
writer.uint32(
|
|
909
|
+
writer.uint32(224).int32(message.shared_balance);
|
|
894
910
|
}
|
|
895
911
|
if (message.authorized_user !== undefined) {
|
|
896
|
-
writer.uint32(
|
|
912
|
+
writer.uint32(234).string(message.authorized_user);
|
|
897
913
|
}
|
|
898
914
|
if (message.user_data !== undefined) {
|
|
899
|
-
writer.uint32(
|
|
915
|
+
writer.uint32(242).string(message.user_data);
|
|
900
916
|
}
|
|
901
917
|
if (message.offline !== undefined) {
|
|
902
|
-
writer.uint32(
|
|
918
|
+
writer.uint32(250).string(message.offline);
|
|
903
919
|
}
|
|
904
920
|
if (message.verify_only !== undefined) {
|
|
905
|
-
writer.uint32(
|
|
921
|
+
writer.uint32(256).int32(message.verify_only);
|
|
906
922
|
}
|
|
907
923
|
if (message.cip_status !== undefined) {
|
|
908
|
-
writer.uint32(
|
|
924
|
+
writer.uint32(266).string(message.cip_status);
|
|
909
925
|
}
|
|
910
926
|
if (message.emboss_line_2 !== undefined) {
|
|
911
|
-
writer.uint32(
|
|
927
|
+
writer.uint32(274).string(message.emboss_line_2);
|
|
912
928
|
}
|
|
913
929
|
if (message.provider_assessed_fee !== undefined) {
|
|
914
|
-
writer.uint32(
|
|
930
|
+
writer.uint32(281).double(message.provider_assessed_fee);
|
|
915
931
|
}
|
|
916
932
|
if (message.load_from_account !== undefined) {
|
|
917
|
-
writer.uint32(
|
|
933
|
+
writer.uint32(290).string(message.load_from_account);
|
|
918
934
|
}
|
|
919
935
|
if (message.sweep_date !== undefined) {
|
|
920
|
-
writer.uint32(
|
|
936
|
+
writer.uint32(298).string(message.sweep_date);
|
|
921
937
|
}
|
|
922
938
|
if (message.express_mail !== undefined) {
|
|
923
|
-
writer.uint32(
|
|
939
|
+
writer.uint32(306).string(message.express_mail);
|
|
924
940
|
}
|
|
925
941
|
if (message.ship_adress_permanent !== undefined) {
|
|
926
|
-
writer.uint32(
|
|
942
|
+
writer.uint32(314).string(message.ship_adress_permanent);
|
|
927
943
|
}
|
|
928
944
|
if (message.ship_adress_1 !== undefined) {
|
|
929
|
-
writer.uint32(
|
|
945
|
+
writer.uint32(322).string(message.ship_adress_1);
|
|
930
946
|
}
|
|
931
947
|
if (message.ship_adress_2 !== undefined) {
|
|
932
|
-
writer.uint32(
|
|
948
|
+
writer.uint32(330).string(message.ship_adress_2);
|
|
933
949
|
}
|
|
934
950
|
if (message.shitp_city !== undefined) {
|
|
935
|
-
writer.uint32(
|
|
951
|
+
writer.uint32(338).string(message.shitp_city);
|
|
936
952
|
}
|
|
937
953
|
if (message.ship_state !== undefined) {
|
|
938
|
-
writer.uint32(
|
|
954
|
+
writer.uint32(346).string(message.ship_state);
|
|
939
955
|
}
|
|
940
956
|
if (message.ship_zip !== undefined) {
|
|
941
|
-
writer.uint32(
|
|
957
|
+
writer.uint32(354).string(message.ship_zip);
|
|
942
958
|
}
|
|
943
959
|
if (message.ship_country_code !== undefined) {
|
|
944
|
-
writer.uint32(
|
|
960
|
+
writer.uint32(362).string(message.ship_country_code);
|
|
945
961
|
}
|
|
946
962
|
if (message.business_name !== undefined) {
|
|
947
|
-
writer.uint32(
|
|
963
|
+
writer.uint32(370).string(message.business_name);
|
|
948
964
|
}
|
|
949
965
|
return writer;
|
|
950
966
|
},
|
|
@@ -966,307 +982,314 @@ exports.CreatePhysicalCardContractRequest = {
|
|
|
966
982
|
if (tag !== 18) {
|
|
967
983
|
break;
|
|
968
984
|
}
|
|
969
|
-
message.
|
|
985
|
+
message.clabe = reader.string();
|
|
970
986
|
continue;
|
|
971
987
|
}
|
|
972
988
|
case 3: {
|
|
973
989
|
if (tag !== 26) {
|
|
974
990
|
break;
|
|
975
991
|
}
|
|
976
|
-
message.
|
|
992
|
+
message.first_name = reader.string();
|
|
977
993
|
continue;
|
|
978
994
|
}
|
|
979
995
|
case 4: {
|
|
980
996
|
if (tag !== 34) {
|
|
981
997
|
break;
|
|
982
998
|
}
|
|
983
|
-
message.
|
|
999
|
+
message.middle_name = reader.string();
|
|
984
1000
|
continue;
|
|
985
1001
|
}
|
|
986
1002
|
case 5: {
|
|
987
1003
|
if (tag !== 42) {
|
|
988
1004
|
break;
|
|
989
1005
|
}
|
|
990
|
-
message.
|
|
1006
|
+
message.last_name = reader.string();
|
|
991
1007
|
continue;
|
|
992
1008
|
}
|
|
993
1009
|
case 6: {
|
|
994
1010
|
if (tag !== 50) {
|
|
995
1011
|
break;
|
|
996
1012
|
}
|
|
997
|
-
message.
|
|
1013
|
+
message.date_of_birth = reader.string();
|
|
998
1014
|
continue;
|
|
999
1015
|
}
|
|
1000
1016
|
case 7: {
|
|
1001
1017
|
if (tag !== 58) {
|
|
1002
1018
|
break;
|
|
1003
1019
|
}
|
|
1004
|
-
message.
|
|
1020
|
+
message.address_1 = reader.string();
|
|
1005
1021
|
continue;
|
|
1006
1022
|
}
|
|
1007
1023
|
case 8: {
|
|
1008
1024
|
if (tag !== 66) {
|
|
1009
1025
|
break;
|
|
1010
1026
|
}
|
|
1011
|
-
message.
|
|
1027
|
+
message.address_2 = reader.string();
|
|
1012
1028
|
continue;
|
|
1013
1029
|
}
|
|
1014
1030
|
case 9: {
|
|
1015
1031
|
if (tag !== 74) {
|
|
1016
1032
|
break;
|
|
1017
1033
|
}
|
|
1018
|
-
message.
|
|
1034
|
+
message.address_3 = reader.string();
|
|
1019
1035
|
continue;
|
|
1020
1036
|
}
|
|
1021
1037
|
case 10: {
|
|
1022
1038
|
if (tag !== 82) {
|
|
1023
1039
|
break;
|
|
1024
1040
|
}
|
|
1025
|
-
message.
|
|
1041
|
+
message.city = reader.string();
|
|
1026
1042
|
continue;
|
|
1027
1043
|
}
|
|
1028
1044
|
case 11: {
|
|
1029
1045
|
if (tag !== 90) {
|
|
1030
1046
|
break;
|
|
1031
1047
|
}
|
|
1032
|
-
message.
|
|
1048
|
+
message.state = reader.string();
|
|
1033
1049
|
continue;
|
|
1034
1050
|
}
|
|
1035
1051
|
case 12: {
|
|
1036
1052
|
if (tag !== 98) {
|
|
1037
1053
|
break;
|
|
1038
1054
|
}
|
|
1039
|
-
message.
|
|
1055
|
+
message.postal_code = reader.string();
|
|
1040
1056
|
continue;
|
|
1041
1057
|
}
|
|
1042
1058
|
case 13: {
|
|
1043
1059
|
if (tag !== 106) {
|
|
1044
1060
|
break;
|
|
1045
1061
|
}
|
|
1046
|
-
message.
|
|
1062
|
+
message.country_code = reader.string();
|
|
1047
1063
|
continue;
|
|
1048
1064
|
}
|
|
1049
1065
|
case 14: {
|
|
1050
1066
|
if (tag !== 114) {
|
|
1051
1067
|
break;
|
|
1052
1068
|
}
|
|
1053
|
-
message.
|
|
1069
|
+
message.primary_phone = reader.string();
|
|
1054
1070
|
continue;
|
|
1055
1071
|
}
|
|
1056
1072
|
case 15: {
|
|
1057
1073
|
if (tag !== 122) {
|
|
1058
1074
|
break;
|
|
1059
1075
|
}
|
|
1060
|
-
message.
|
|
1076
|
+
message.other_phone = reader.string();
|
|
1061
1077
|
continue;
|
|
1062
1078
|
}
|
|
1063
1079
|
case 16: {
|
|
1064
1080
|
if (tag !== 130) {
|
|
1065
1081
|
break;
|
|
1066
1082
|
}
|
|
1067
|
-
message.
|
|
1083
|
+
message.email = reader.string();
|
|
1068
1084
|
continue;
|
|
1069
1085
|
}
|
|
1070
1086
|
case 17: {
|
|
1071
1087
|
if (tag !== 138) {
|
|
1072
1088
|
break;
|
|
1073
1089
|
}
|
|
1074
|
-
message.
|
|
1090
|
+
message.income_source = reader.string();
|
|
1075
1091
|
continue;
|
|
1076
1092
|
}
|
|
1077
1093
|
case 18: {
|
|
1078
1094
|
if (tag !== 146) {
|
|
1079
1095
|
break;
|
|
1080
1096
|
}
|
|
1081
|
-
message.
|
|
1097
|
+
message.curp = reader.string();
|
|
1082
1098
|
continue;
|
|
1083
1099
|
}
|
|
1084
1100
|
case 19: {
|
|
1085
1101
|
if (tag !== 154) {
|
|
1086
1102
|
break;
|
|
1087
1103
|
}
|
|
1088
|
-
message.
|
|
1104
|
+
message.rfc = reader.string();
|
|
1089
1105
|
continue;
|
|
1090
1106
|
}
|
|
1091
1107
|
case 20: {
|
|
1092
1108
|
if (tag !== 162) {
|
|
1093
1109
|
break;
|
|
1094
1110
|
}
|
|
1095
|
-
message.
|
|
1111
|
+
message.external_customer_id = reader.string();
|
|
1096
1112
|
continue;
|
|
1097
1113
|
}
|
|
1098
1114
|
case 21: {
|
|
1099
1115
|
if (tag !== 170) {
|
|
1100
1116
|
break;
|
|
1101
1117
|
}
|
|
1102
|
-
message.
|
|
1118
|
+
message.product_key = reader.string();
|
|
1103
1119
|
continue;
|
|
1104
1120
|
}
|
|
1105
1121
|
case 22: {
|
|
1106
1122
|
if (tag !== 178) {
|
|
1107
1123
|
break;
|
|
1108
1124
|
}
|
|
1109
|
-
message.
|
|
1125
|
+
message.product_type = reader.string();
|
|
1110
1126
|
continue;
|
|
1111
1127
|
}
|
|
1112
1128
|
case 23: {
|
|
1113
1129
|
if (tag !== 186) {
|
|
1114
1130
|
break;
|
|
1115
1131
|
}
|
|
1116
|
-
message.
|
|
1132
|
+
message.load_amount = reader.string();
|
|
1117
1133
|
continue;
|
|
1118
1134
|
}
|
|
1119
1135
|
case 24: {
|
|
1120
1136
|
if (tag !== 194) {
|
|
1121
1137
|
break;
|
|
1122
1138
|
}
|
|
1123
|
-
message.
|
|
1139
|
+
message.load_amount_physical = reader.string();
|
|
1124
1140
|
continue;
|
|
1125
1141
|
}
|
|
1126
1142
|
case 25: {
|
|
1127
1143
|
if (tag !== 202) {
|
|
1128
1144
|
break;
|
|
1129
1145
|
}
|
|
1130
|
-
message.
|
|
1146
|
+
message.load_type = reader.string();
|
|
1131
1147
|
continue;
|
|
1132
1148
|
}
|
|
1133
1149
|
case 26: {
|
|
1134
1150
|
if (tag !== 210) {
|
|
1135
1151
|
break;
|
|
1136
1152
|
}
|
|
1137
|
-
message.
|
|
1153
|
+
message.primary_account = reader.string();
|
|
1138
1154
|
continue;
|
|
1139
1155
|
}
|
|
1140
1156
|
case 27: {
|
|
1141
|
-
if (tag !==
|
|
1157
|
+
if (tag !== 218) {
|
|
1142
1158
|
break;
|
|
1143
1159
|
}
|
|
1144
|
-
message.
|
|
1160
|
+
message.funding_account_number = reader.string();
|
|
1145
1161
|
continue;
|
|
1146
1162
|
}
|
|
1147
1163
|
case 28: {
|
|
1148
|
-
if (tag !==
|
|
1164
|
+
if (tag !== 224) {
|
|
1149
1165
|
break;
|
|
1150
1166
|
}
|
|
1151
|
-
message.
|
|
1167
|
+
message.shared_balance = reader.int32();
|
|
1152
1168
|
continue;
|
|
1153
1169
|
}
|
|
1154
1170
|
case 29: {
|
|
1155
1171
|
if (tag !== 234) {
|
|
1156
1172
|
break;
|
|
1157
1173
|
}
|
|
1158
|
-
message.
|
|
1174
|
+
message.authorized_user = reader.string();
|
|
1159
1175
|
continue;
|
|
1160
1176
|
}
|
|
1161
1177
|
case 30: {
|
|
1162
1178
|
if (tag !== 242) {
|
|
1163
1179
|
break;
|
|
1164
1180
|
}
|
|
1165
|
-
message.
|
|
1181
|
+
message.user_data = reader.string();
|
|
1166
1182
|
continue;
|
|
1167
1183
|
}
|
|
1168
1184
|
case 31: {
|
|
1169
|
-
if (tag !==
|
|
1185
|
+
if (tag !== 250) {
|
|
1170
1186
|
break;
|
|
1171
1187
|
}
|
|
1172
|
-
message.
|
|
1188
|
+
message.offline = reader.string();
|
|
1173
1189
|
continue;
|
|
1174
1190
|
}
|
|
1175
1191
|
case 32: {
|
|
1176
|
-
if (tag !==
|
|
1192
|
+
if (tag !== 256) {
|
|
1177
1193
|
break;
|
|
1178
1194
|
}
|
|
1179
|
-
message.
|
|
1195
|
+
message.verify_only = reader.int32();
|
|
1180
1196
|
continue;
|
|
1181
1197
|
}
|
|
1182
1198
|
case 33: {
|
|
1183
1199
|
if (tag !== 266) {
|
|
1184
1200
|
break;
|
|
1185
1201
|
}
|
|
1186
|
-
message.
|
|
1202
|
+
message.cip_status = reader.string();
|
|
1187
1203
|
continue;
|
|
1188
1204
|
}
|
|
1189
1205
|
case 34: {
|
|
1190
|
-
if (tag !==
|
|
1206
|
+
if (tag !== 274) {
|
|
1191
1207
|
break;
|
|
1192
1208
|
}
|
|
1193
|
-
message.
|
|
1209
|
+
message.emboss_line_2 = reader.string();
|
|
1194
1210
|
continue;
|
|
1195
1211
|
}
|
|
1196
1212
|
case 35: {
|
|
1197
|
-
if (tag !==
|
|
1213
|
+
if (tag !== 281) {
|
|
1198
1214
|
break;
|
|
1199
1215
|
}
|
|
1200
|
-
message.
|
|
1216
|
+
message.provider_assessed_fee = reader.double();
|
|
1201
1217
|
continue;
|
|
1202
1218
|
}
|
|
1203
1219
|
case 36: {
|
|
1204
1220
|
if (tag !== 290) {
|
|
1205
1221
|
break;
|
|
1206
1222
|
}
|
|
1207
|
-
message.
|
|
1223
|
+
message.load_from_account = reader.string();
|
|
1208
1224
|
continue;
|
|
1209
1225
|
}
|
|
1210
1226
|
case 37: {
|
|
1211
1227
|
if (tag !== 298) {
|
|
1212
1228
|
break;
|
|
1213
1229
|
}
|
|
1214
|
-
message.
|
|
1230
|
+
message.sweep_date = reader.string();
|
|
1215
1231
|
continue;
|
|
1216
1232
|
}
|
|
1217
1233
|
case 38: {
|
|
1218
1234
|
if (tag !== 306) {
|
|
1219
1235
|
break;
|
|
1220
1236
|
}
|
|
1221
|
-
message.
|
|
1237
|
+
message.express_mail = reader.string();
|
|
1222
1238
|
continue;
|
|
1223
1239
|
}
|
|
1224
1240
|
case 39: {
|
|
1225
1241
|
if (tag !== 314) {
|
|
1226
1242
|
break;
|
|
1227
1243
|
}
|
|
1228
|
-
message.
|
|
1244
|
+
message.ship_adress_permanent = reader.string();
|
|
1229
1245
|
continue;
|
|
1230
1246
|
}
|
|
1231
1247
|
case 40: {
|
|
1232
1248
|
if (tag !== 322) {
|
|
1233
1249
|
break;
|
|
1234
1250
|
}
|
|
1235
|
-
message.
|
|
1251
|
+
message.ship_adress_1 = reader.string();
|
|
1236
1252
|
continue;
|
|
1237
1253
|
}
|
|
1238
1254
|
case 41: {
|
|
1239
1255
|
if (tag !== 330) {
|
|
1240
1256
|
break;
|
|
1241
1257
|
}
|
|
1242
|
-
message.
|
|
1258
|
+
message.ship_adress_2 = reader.string();
|
|
1243
1259
|
continue;
|
|
1244
1260
|
}
|
|
1245
1261
|
case 42: {
|
|
1246
1262
|
if (tag !== 338) {
|
|
1247
1263
|
break;
|
|
1248
1264
|
}
|
|
1249
|
-
message.
|
|
1265
|
+
message.shitp_city = reader.string();
|
|
1250
1266
|
continue;
|
|
1251
1267
|
}
|
|
1252
1268
|
case 43: {
|
|
1253
1269
|
if (tag !== 346) {
|
|
1254
1270
|
break;
|
|
1255
1271
|
}
|
|
1256
|
-
message.
|
|
1272
|
+
message.ship_state = reader.string();
|
|
1257
1273
|
continue;
|
|
1258
1274
|
}
|
|
1259
1275
|
case 44: {
|
|
1260
1276
|
if (tag !== 354) {
|
|
1261
1277
|
break;
|
|
1262
1278
|
}
|
|
1263
|
-
message.
|
|
1279
|
+
message.ship_zip = reader.string();
|
|
1264
1280
|
continue;
|
|
1265
1281
|
}
|
|
1266
1282
|
case 45: {
|
|
1267
1283
|
if (tag !== 362) {
|
|
1268
1284
|
break;
|
|
1269
1285
|
}
|
|
1286
|
+
message.ship_country_code = reader.string();
|
|
1287
|
+
continue;
|
|
1288
|
+
}
|
|
1289
|
+
case 46: {
|
|
1290
|
+
if (tag !== 370) {
|
|
1291
|
+
break;
|
|
1292
|
+
}
|
|
1270
1293
|
message.business_name = reader.string();
|
|
1271
1294
|
continue;
|
|
1272
1295
|
}
|
|
@@ -1284,6 +1307,7 @@ exports.CreatePhysicalCardContractRequest = {
|
|
|
1284
1307
|
fromPartial(object) {
|
|
1285
1308
|
const message = createBaseCreatePhysicalCardContractRequest();
|
|
1286
1309
|
message.customer_id = object.customer_id ?? "";
|
|
1310
|
+
message.clabe = object.clabe ?? "";
|
|
1287
1311
|
message.first_name = object.first_name ?? "";
|
|
1288
1312
|
message.middle_name = object.middle_name ?? undefined;
|
|
1289
1313
|
message.last_name = object.last_name ?? "";
|