@stashfin/grpc 1.2.637 → 1.2.639
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/package.json +1 -1
- package/ts/loans/getlocwithdraw.d.ts +50 -49
- package/ts/loans/getlocwithdraw.js +413 -378
- package/ts/upi/getprofile.d.ts +0 -1
- package/ts/upi/getprofile.js +17 -32
|
@@ -190,60 +190,60 @@ exports.GetLocWithdrawlRequest = {
|
|
|
190
190
|
};
|
|
191
191
|
function createBaseAgreementLinks() {
|
|
192
192
|
return {
|
|
193
|
-
required:
|
|
194
|
-
error_msg:
|
|
195
|
-
applicant_pdf_url:
|
|
196
|
-
co_applicant_pdf_url:
|
|
197
|
-
colender_agreement:
|
|
198
|
-
colender:
|
|
199
|
-
credit_line_detail_sheet:
|
|
200
|
-
payment_undertaking:
|
|
201
|
-
tc_online_disbursal:
|
|
202
|
-
schedule_for_charges:
|
|
203
|
-
acknowledge_by_borrower:
|
|
204
|
-
venacular_declaration:
|
|
205
|
-
Declaration:
|
|
193
|
+
required: undefined,
|
|
194
|
+
error_msg: undefined,
|
|
195
|
+
applicant_pdf_url: undefined,
|
|
196
|
+
co_applicant_pdf_url: undefined,
|
|
197
|
+
colender_agreement: undefined,
|
|
198
|
+
colender: undefined,
|
|
199
|
+
credit_line_detail_sheet: undefined,
|
|
200
|
+
payment_undertaking: undefined,
|
|
201
|
+
tc_online_disbursal: undefined,
|
|
202
|
+
schedule_for_charges: undefined,
|
|
203
|
+
acknowledge_by_borrower: undefined,
|
|
204
|
+
venacular_declaration: undefined,
|
|
205
|
+
Declaration: undefined,
|
|
206
206
|
};
|
|
207
207
|
}
|
|
208
208
|
exports.AgreementLinks = {
|
|
209
209
|
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
210
|
-
if (message.required !==
|
|
210
|
+
if (message.required !== undefined) {
|
|
211
211
|
writer.uint32(8).bool(message.required);
|
|
212
212
|
}
|
|
213
|
-
if (message.error_msg !==
|
|
213
|
+
if (message.error_msg !== undefined) {
|
|
214
214
|
writer.uint32(18).string(message.error_msg);
|
|
215
215
|
}
|
|
216
|
-
if (message.applicant_pdf_url !==
|
|
216
|
+
if (message.applicant_pdf_url !== undefined) {
|
|
217
217
|
writer.uint32(26).string(message.applicant_pdf_url);
|
|
218
218
|
}
|
|
219
|
-
if (message.co_applicant_pdf_url !==
|
|
219
|
+
if (message.co_applicant_pdf_url !== undefined) {
|
|
220
220
|
writer.uint32(34).string(message.co_applicant_pdf_url);
|
|
221
221
|
}
|
|
222
|
-
if (message.colender_agreement !==
|
|
222
|
+
if (message.colender_agreement !== undefined) {
|
|
223
223
|
writer.uint32(42).string(message.colender_agreement);
|
|
224
224
|
}
|
|
225
|
-
if (message.colender !==
|
|
225
|
+
if (message.colender !== undefined) {
|
|
226
226
|
writer.uint32(50).string(message.colender);
|
|
227
227
|
}
|
|
228
|
-
if (message.credit_line_detail_sheet !==
|
|
228
|
+
if (message.credit_line_detail_sheet !== undefined) {
|
|
229
229
|
writer.uint32(58).string(message.credit_line_detail_sheet);
|
|
230
230
|
}
|
|
231
|
-
if (message.payment_undertaking !==
|
|
231
|
+
if (message.payment_undertaking !== undefined) {
|
|
232
232
|
writer.uint32(66).string(message.payment_undertaking);
|
|
233
233
|
}
|
|
234
|
-
if (message.tc_online_disbursal !==
|
|
234
|
+
if (message.tc_online_disbursal !== undefined) {
|
|
235
235
|
writer.uint32(74).string(message.tc_online_disbursal);
|
|
236
236
|
}
|
|
237
|
-
if (message.schedule_for_charges !==
|
|
237
|
+
if (message.schedule_for_charges !== undefined) {
|
|
238
238
|
writer.uint32(82).string(message.schedule_for_charges);
|
|
239
239
|
}
|
|
240
|
-
if (message.acknowledge_by_borrower !==
|
|
240
|
+
if (message.acknowledge_by_borrower !== undefined) {
|
|
241
241
|
writer.uint32(90).string(message.acknowledge_by_borrower);
|
|
242
242
|
}
|
|
243
|
-
if (message.venacular_declaration !==
|
|
243
|
+
if (message.venacular_declaration !== undefined) {
|
|
244
244
|
writer.uint32(98).string(message.venacular_declaration);
|
|
245
245
|
}
|
|
246
|
-
if (message.Declaration !==
|
|
246
|
+
if (message.Declaration !== undefined) {
|
|
247
247
|
writer.uint32(106).string(message.Declaration);
|
|
248
248
|
}
|
|
249
249
|
return writer;
|
|
@@ -343,64 +343,74 @@ exports.AgreementLinks = {
|
|
|
343
343
|
},
|
|
344
344
|
fromJSON(object) {
|
|
345
345
|
return {
|
|
346
|
-
required: isSet(object.required) ? globalThis.Boolean(object.required) :
|
|
347
|
-
error_msg: isSet(object.error_msg) ? globalThis.String(object.error_msg) :
|
|
348
|
-
applicant_pdf_url: isSet(object.applicant_pdf_url) ? globalThis.String(object.applicant_pdf_url) :
|
|
349
|
-
co_applicant_pdf_url: isSet(object.co_applicant_pdf_url)
|
|
350
|
-
|
|
351
|
-
|
|
346
|
+
required: isSet(object.required) ? globalThis.Boolean(object.required) : undefined,
|
|
347
|
+
error_msg: isSet(object.error_msg) ? globalThis.String(object.error_msg) : undefined,
|
|
348
|
+
applicant_pdf_url: isSet(object.applicant_pdf_url) ? globalThis.String(object.applicant_pdf_url) : undefined,
|
|
349
|
+
co_applicant_pdf_url: isSet(object.co_applicant_pdf_url)
|
|
350
|
+
? globalThis.String(object.co_applicant_pdf_url)
|
|
351
|
+
: undefined,
|
|
352
|
+
colender_agreement: isSet(object.colender_agreement) ? globalThis.String(object.colender_agreement) : undefined,
|
|
353
|
+
colender: isSet(object.colender) ? globalThis.String(object.colender) : undefined,
|
|
352
354
|
credit_line_detail_sheet: isSet(object.credit_line_detail_sheet)
|
|
353
355
|
? globalThis.String(object.credit_line_detail_sheet)
|
|
354
|
-
:
|
|
355
|
-
payment_undertaking: isSet(object.payment_undertaking)
|
|
356
|
-
|
|
357
|
-
|
|
356
|
+
: undefined,
|
|
357
|
+
payment_undertaking: isSet(object.payment_undertaking)
|
|
358
|
+
? globalThis.String(object.payment_undertaking)
|
|
359
|
+
: undefined,
|
|
360
|
+
tc_online_disbursal: isSet(object.tc_online_disbursal)
|
|
361
|
+
? globalThis.String(object.tc_online_disbursal)
|
|
362
|
+
: undefined,
|
|
363
|
+
schedule_for_charges: isSet(object.schedule_for_charges)
|
|
364
|
+
? globalThis.String(object.schedule_for_charges)
|
|
365
|
+
: undefined,
|
|
358
366
|
acknowledge_by_borrower: isSet(object.acknowledge_by_borrower)
|
|
359
367
|
? globalThis.String(object.acknowledge_by_borrower)
|
|
360
|
-
:
|
|
361
|
-
venacular_declaration: isSet(object.venacular_declaration)
|
|
362
|
-
|
|
368
|
+
: undefined,
|
|
369
|
+
venacular_declaration: isSet(object.venacular_declaration)
|
|
370
|
+
? globalThis.String(object.venacular_declaration)
|
|
371
|
+
: undefined,
|
|
372
|
+
Declaration: isSet(object.Declaration) ? globalThis.String(object.Declaration) : undefined,
|
|
363
373
|
};
|
|
364
374
|
},
|
|
365
375
|
toJSON(message) {
|
|
366
376
|
const obj = {};
|
|
367
|
-
if (message.required !==
|
|
377
|
+
if (message.required !== undefined) {
|
|
368
378
|
obj.required = message.required;
|
|
369
379
|
}
|
|
370
|
-
if (message.error_msg !==
|
|
380
|
+
if (message.error_msg !== undefined) {
|
|
371
381
|
obj.error_msg = message.error_msg;
|
|
372
382
|
}
|
|
373
|
-
if (message.applicant_pdf_url !==
|
|
383
|
+
if (message.applicant_pdf_url !== undefined) {
|
|
374
384
|
obj.applicant_pdf_url = message.applicant_pdf_url;
|
|
375
385
|
}
|
|
376
|
-
if (message.co_applicant_pdf_url !==
|
|
386
|
+
if (message.co_applicant_pdf_url !== undefined) {
|
|
377
387
|
obj.co_applicant_pdf_url = message.co_applicant_pdf_url;
|
|
378
388
|
}
|
|
379
|
-
if (message.colender_agreement !==
|
|
389
|
+
if (message.colender_agreement !== undefined) {
|
|
380
390
|
obj.colender_agreement = message.colender_agreement;
|
|
381
391
|
}
|
|
382
|
-
if (message.colender !==
|
|
392
|
+
if (message.colender !== undefined) {
|
|
383
393
|
obj.colender = message.colender;
|
|
384
394
|
}
|
|
385
|
-
if (message.credit_line_detail_sheet !==
|
|
395
|
+
if (message.credit_line_detail_sheet !== undefined) {
|
|
386
396
|
obj.credit_line_detail_sheet = message.credit_line_detail_sheet;
|
|
387
397
|
}
|
|
388
|
-
if (message.payment_undertaking !==
|
|
398
|
+
if (message.payment_undertaking !== undefined) {
|
|
389
399
|
obj.payment_undertaking = message.payment_undertaking;
|
|
390
400
|
}
|
|
391
|
-
if (message.tc_online_disbursal !==
|
|
401
|
+
if (message.tc_online_disbursal !== undefined) {
|
|
392
402
|
obj.tc_online_disbursal = message.tc_online_disbursal;
|
|
393
403
|
}
|
|
394
|
-
if (message.schedule_for_charges !==
|
|
404
|
+
if (message.schedule_for_charges !== undefined) {
|
|
395
405
|
obj.schedule_for_charges = message.schedule_for_charges;
|
|
396
406
|
}
|
|
397
|
-
if (message.acknowledge_by_borrower !==
|
|
407
|
+
if (message.acknowledge_by_borrower !== undefined) {
|
|
398
408
|
obj.acknowledge_by_borrower = message.acknowledge_by_borrower;
|
|
399
409
|
}
|
|
400
|
-
if (message.venacular_declaration !==
|
|
410
|
+
if (message.venacular_declaration !== undefined) {
|
|
401
411
|
obj.venacular_declaration = message.venacular_declaration;
|
|
402
412
|
}
|
|
403
|
-
if (message.Declaration !==
|
|
413
|
+
if (message.Declaration !== undefined) {
|
|
404
414
|
obj.Declaration = message.Declaration;
|
|
405
415
|
}
|
|
406
416
|
return obj;
|
|
@@ -410,34 +420,34 @@ exports.AgreementLinks = {
|
|
|
410
420
|
},
|
|
411
421
|
fromPartial(object) {
|
|
412
422
|
const message = createBaseAgreementLinks();
|
|
413
|
-
message.required = object.required ??
|
|
414
|
-
message.error_msg = object.error_msg ??
|
|
415
|
-
message.applicant_pdf_url = object.applicant_pdf_url ??
|
|
416
|
-
message.co_applicant_pdf_url = object.co_applicant_pdf_url ??
|
|
417
|
-
message.colender_agreement = object.colender_agreement ??
|
|
418
|
-
message.colender = object.colender ??
|
|
419
|
-
message.credit_line_detail_sheet = object.credit_line_detail_sheet ??
|
|
420
|
-
message.payment_undertaking = object.payment_undertaking ??
|
|
421
|
-
message.tc_online_disbursal = object.tc_online_disbursal ??
|
|
422
|
-
message.schedule_for_charges = object.schedule_for_charges ??
|
|
423
|
-
message.acknowledge_by_borrower = object.acknowledge_by_borrower ??
|
|
424
|
-
message.venacular_declaration = object.venacular_declaration ??
|
|
425
|
-
message.Declaration = object.Declaration ??
|
|
423
|
+
message.required = object.required ?? undefined;
|
|
424
|
+
message.error_msg = object.error_msg ?? undefined;
|
|
425
|
+
message.applicant_pdf_url = object.applicant_pdf_url ?? undefined;
|
|
426
|
+
message.co_applicant_pdf_url = object.co_applicant_pdf_url ?? undefined;
|
|
427
|
+
message.colender_agreement = object.colender_agreement ?? undefined;
|
|
428
|
+
message.colender = object.colender ?? undefined;
|
|
429
|
+
message.credit_line_detail_sheet = object.credit_line_detail_sheet ?? undefined;
|
|
430
|
+
message.payment_undertaking = object.payment_undertaking ?? undefined;
|
|
431
|
+
message.tc_online_disbursal = object.tc_online_disbursal ?? undefined;
|
|
432
|
+
message.schedule_for_charges = object.schedule_for_charges ?? undefined;
|
|
433
|
+
message.acknowledge_by_borrower = object.acknowledge_by_borrower ?? undefined;
|
|
434
|
+
message.venacular_declaration = object.venacular_declaration ?? undefined;
|
|
435
|
+
message.Declaration = object.Declaration ?? undefined;
|
|
426
436
|
return message;
|
|
427
437
|
},
|
|
428
438
|
};
|
|
429
439
|
function createBaseInsuranceDesc() {
|
|
430
|
-
return { title: "", desc:
|
|
440
|
+
return { title: "", desc: undefined, icon: undefined };
|
|
431
441
|
}
|
|
432
442
|
exports.InsuranceDesc = {
|
|
433
443
|
encode(message, writer = minimal_1.default.Writer.create()) {
|
|
434
444
|
if (message.title !== "") {
|
|
435
445
|
writer.uint32(10).string(message.title);
|
|
436
446
|
}
|
|
437
|
-
if (message.desc !==
|
|
447
|
+
if (message.desc !== undefined) {
|
|
438
448
|
writer.uint32(18).string(message.desc);
|
|
439
449
|
}
|
|
440
|
-
if (message.icon !==
|
|
450
|
+
if (message.icon !== undefined) {
|
|
441
451
|
writer.uint32(26).string(message.icon);
|
|
442
452
|
}
|
|
443
453
|
return writer;
|
|
@@ -478,8 +488,8 @@ exports.InsuranceDesc = {
|
|
|
478
488
|
fromJSON(object) {
|
|
479
489
|
return {
|
|
480
490
|
title: isSet(object.title) ? globalThis.String(object.title) : "",
|
|
481
|
-
desc: isSet(object.desc) ? globalThis.String(object.desc) :
|
|
482
|
-
icon: isSet(object.icon) ? globalThis.String(object.icon) :
|
|
491
|
+
desc: isSet(object.desc) ? globalThis.String(object.desc) : undefined,
|
|
492
|
+
icon: isSet(object.icon) ? globalThis.String(object.icon) : undefined,
|
|
483
493
|
};
|
|
484
494
|
},
|
|
485
495
|
toJSON(message) {
|
|
@@ -487,10 +497,10 @@ exports.InsuranceDesc = {
|
|
|
487
497
|
if (message.title !== "") {
|
|
488
498
|
obj.title = message.title;
|
|
489
499
|
}
|
|
490
|
-
if (message.desc !==
|
|
500
|
+
if (message.desc !== undefined) {
|
|
491
501
|
obj.desc = message.desc;
|
|
492
502
|
}
|
|
493
|
-
if (message.icon !==
|
|
503
|
+
if (message.icon !== undefined) {
|
|
494
504
|
obj.icon = message.icon;
|
|
495
505
|
}
|
|
496
506
|
return obj;
|
|
@@ -501,8 +511,8 @@ exports.InsuranceDesc = {
|
|
|
501
511
|
fromPartial(object) {
|
|
502
512
|
const message = createBaseInsuranceDesc();
|
|
503
513
|
message.title = object.title ?? "";
|
|
504
|
-
message.desc = object.desc ??
|
|
505
|
-
message.icon = object.icon ??
|
|
514
|
+
message.desc = object.desc ?? undefined;
|
|
515
|
+
message.icon = object.icon ?? undefined;
|
|
506
516
|
return message;
|
|
507
517
|
},
|
|
508
518
|
};
|
|
@@ -520,18 +530,18 @@ function createBaseGetLocWithdrawlResponse() {
|
|
|
520
530
|
first_emi_date: "",
|
|
521
531
|
emi_date: "",
|
|
522
532
|
final_disbursal_amount: 0,
|
|
523
|
-
upfront_interest:
|
|
533
|
+
upfront_interest: undefined,
|
|
524
534
|
approved_amount: 0,
|
|
525
|
-
processing_fees:
|
|
526
|
-
gst:
|
|
527
|
-
rate_of_interest:
|
|
535
|
+
processing_fees: undefined,
|
|
536
|
+
gst: undefined,
|
|
537
|
+
rate_of_interest: undefined,
|
|
528
538
|
bill_amount: 0,
|
|
529
|
-
early_foreclosure_fees:
|
|
530
|
-
convenience_fees:
|
|
531
|
-
total_interest_pay:
|
|
532
|
-
effective_annual_rate:
|
|
533
|
-
transaction_rate:
|
|
534
|
-
transaction_fee_amount:
|
|
539
|
+
early_foreclosure_fees: undefined,
|
|
540
|
+
convenience_fees: undefined,
|
|
541
|
+
total_interest_pay: undefined,
|
|
542
|
+
effective_annual_rate: undefined,
|
|
543
|
+
transaction_rate: undefined,
|
|
544
|
+
transaction_fee_amount: undefined,
|
|
535
545
|
emi_date_l: "",
|
|
536
546
|
emi_amount_l: "",
|
|
537
547
|
first_emi_date_l: "",
|
|
@@ -545,56 +555,57 @@ function createBaseGetLocWithdrawlResponse() {
|
|
|
545
555
|
convenience_fees_l: "",
|
|
546
556
|
total_interest_pay_l: "",
|
|
547
557
|
effective_annual_rate_l: "",
|
|
548
|
-
transaction_fee_bill_amount:
|
|
549
|
-
processing_fee_plus_gst:
|
|
550
|
-
trans_fee_plus_gst:
|
|
558
|
+
transaction_fee_bill_amount: undefined,
|
|
559
|
+
processing_fee_plus_gst: undefined,
|
|
560
|
+
trans_fee_plus_gst: undefined,
|
|
551
561
|
trans_fee_plus_gst_l: "",
|
|
552
562
|
processing_fee_plus_gst_l: "",
|
|
553
563
|
max_amount_l: "",
|
|
554
564
|
credit_report_fees_l: "",
|
|
555
565
|
fee_and_charges_l: "",
|
|
556
|
-
fee_and_charges:
|
|
557
|
-
fee_and_charges_bill:
|
|
566
|
+
fee_and_charges: undefined,
|
|
567
|
+
fee_and_charges_bill: undefined,
|
|
558
568
|
add_on_l: "",
|
|
559
569
|
total_loan_amount_l: "",
|
|
560
570
|
loan_amount_l: "",
|
|
561
571
|
disbursed_amount_l: "",
|
|
562
572
|
total_payable_amount_l: "",
|
|
563
573
|
disbursal_amount_l: "",
|
|
564
|
-
fcp_interest:
|
|
574
|
+
fcp_interest: undefined,
|
|
565
575
|
number_of_emi_l: "",
|
|
566
576
|
first_emi_amt_l: "",
|
|
567
577
|
subsequent_emi_l: "",
|
|
568
578
|
effective_roi_l: "",
|
|
569
|
-
effective_roi:
|
|
579
|
+
effective_roi: undefined,
|
|
570
580
|
effective_annual_roi_l: "",
|
|
571
|
-
effective_annual_roi:
|
|
581
|
+
effective_annual_roi: undefined,
|
|
572
582
|
insurance_l: "",
|
|
573
583
|
emi_card_description: "",
|
|
574
584
|
bill_card_description: "",
|
|
575
585
|
loan_id: "",
|
|
586
|
+
installment_amounts: "",
|
|
576
587
|
apr_title: "",
|
|
577
588
|
apr_value: "",
|
|
578
589
|
apr_type: "",
|
|
579
|
-
colender_id:
|
|
580
|
-
credit_line_details_sheet:
|
|
581
|
-
Acknowledgement:
|
|
582
|
-
payment_undertaking:
|
|
583
|
-
key_fact_statement:
|
|
584
|
-
sanction_letter:
|
|
585
|
-
financing_documents:
|
|
586
|
-
landers_credit_facility_form:
|
|
590
|
+
colender_id: undefined,
|
|
591
|
+
credit_line_details_sheet: undefined,
|
|
592
|
+
Acknowledgement: undefined,
|
|
593
|
+
payment_undertaking: undefined,
|
|
594
|
+
key_fact_statement: undefined,
|
|
595
|
+
sanction_letter: undefined,
|
|
596
|
+
financing_documents: undefined,
|
|
597
|
+
landers_credit_facility_form: undefined,
|
|
587
598
|
agreement_links: undefined,
|
|
588
|
-
max_amount:
|
|
589
|
-
credit_report_fees:
|
|
590
|
-
credit_report_actual_fees:
|
|
591
|
-
plan_id:
|
|
599
|
+
max_amount: undefined,
|
|
600
|
+
credit_report_fees: undefined,
|
|
601
|
+
credit_report_actual_fees: undefined,
|
|
602
|
+
plan_id: undefined,
|
|
592
603
|
lender_name: undefined,
|
|
593
|
-
free_loc_eligible_bank:
|
|
594
|
-
insurance_title:
|
|
604
|
+
free_loc_eligible_bank: undefined,
|
|
605
|
+
insurance_title: undefined,
|
|
595
606
|
insurance_desc: [],
|
|
596
|
-
upfront_interest_description:
|
|
597
|
-
txn_id:
|
|
607
|
+
upfront_interest_description: undefined,
|
|
608
|
+
txn_id: undefined,
|
|
598
609
|
};
|
|
599
610
|
}
|
|
600
611
|
exports.GetLocWithdrawlResponse = {
|
|
@@ -612,19 +623,19 @@ exports.GetLocWithdrawlResponse = {
|
|
|
612
623
|
writer.uint32(32).bool(message.matched);
|
|
613
624
|
}
|
|
614
625
|
if (message.remaining_loc !== 0) {
|
|
615
|
-
writer.uint32(
|
|
626
|
+
writer.uint32(40).int32(message.remaining_loc);
|
|
616
627
|
}
|
|
617
628
|
if (message.requested_amount !== 0) {
|
|
618
|
-
writer.uint32(
|
|
629
|
+
writer.uint32(48).int32(message.requested_amount);
|
|
619
630
|
}
|
|
620
631
|
if (message.tenure !== 0) {
|
|
621
|
-
writer.uint32(
|
|
632
|
+
writer.uint32(56).int32(message.tenure);
|
|
622
633
|
}
|
|
623
634
|
if (message.emi_amount !== 0) {
|
|
624
|
-
writer.uint32(
|
|
635
|
+
writer.uint32(64).int32(message.emi_amount);
|
|
625
636
|
}
|
|
626
637
|
if (message.net_amount_payable !== 0) {
|
|
627
|
-
writer.uint32(
|
|
638
|
+
writer.uint32(72).int32(message.net_amount_payable);
|
|
628
639
|
}
|
|
629
640
|
if (message.first_emi_date !== "") {
|
|
630
641
|
writer.uint32(82).string(message.first_emi_date);
|
|
@@ -633,43 +644,43 @@ exports.GetLocWithdrawlResponse = {
|
|
|
633
644
|
writer.uint32(90).string(message.emi_date);
|
|
634
645
|
}
|
|
635
646
|
if (message.final_disbursal_amount !== 0) {
|
|
636
|
-
writer.uint32(
|
|
647
|
+
writer.uint32(96).int32(message.final_disbursal_amount);
|
|
637
648
|
}
|
|
638
|
-
if (message.upfront_interest !==
|
|
649
|
+
if (message.upfront_interest !== undefined) {
|
|
639
650
|
writer.uint32(105).double(message.upfront_interest);
|
|
640
651
|
}
|
|
641
652
|
if (message.approved_amount !== 0) {
|
|
642
|
-
writer.uint32(
|
|
653
|
+
writer.uint32(112).int32(message.approved_amount);
|
|
643
654
|
}
|
|
644
|
-
if (message.processing_fees !==
|
|
645
|
-
writer.uint32(
|
|
655
|
+
if (message.processing_fees !== undefined) {
|
|
656
|
+
writer.uint32(120).int32(message.processing_fees);
|
|
646
657
|
}
|
|
647
|
-
if (message.gst !==
|
|
648
|
-
writer.uint32(
|
|
658
|
+
if (message.gst !== undefined) {
|
|
659
|
+
writer.uint32(128).int32(message.gst);
|
|
649
660
|
}
|
|
650
|
-
if (message.rate_of_interest !==
|
|
661
|
+
if (message.rate_of_interest !== undefined) {
|
|
651
662
|
writer.uint32(137).double(message.rate_of_interest);
|
|
652
663
|
}
|
|
653
664
|
if (message.bill_amount !== 0) {
|
|
654
|
-
writer.uint32(
|
|
665
|
+
writer.uint32(144).int32(message.bill_amount);
|
|
655
666
|
}
|
|
656
|
-
if (message.early_foreclosure_fees !==
|
|
657
|
-
writer.uint32(
|
|
667
|
+
if (message.early_foreclosure_fees !== undefined) {
|
|
668
|
+
writer.uint32(152).int32(message.early_foreclosure_fees);
|
|
658
669
|
}
|
|
659
|
-
if (message.convenience_fees !==
|
|
660
|
-
writer.uint32(
|
|
670
|
+
if (message.convenience_fees !== undefined) {
|
|
671
|
+
writer.uint32(160).int32(message.convenience_fees);
|
|
661
672
|
}
|
|
662
|
-
if (message.total_interest_pay !==
|
|
663
|
-
writer.uint32(
|
|
673
|
+
if (message.total_interest_pay !== undefined) {
|
|
674
|
+
writer.uint32(168).int32(message.total_interest_pay);
|
|
664
675
|
}
|
|
665
|
-
if (message.effective_annual_rate !==
|
|
676
|
+
if (message.effective_annual_rate !== undefined) {
|
|
666
677
|
writer.uint32(177).double(message.effective_annual_rate);
|
|
667
678
|
}
|
|
668
|
-
if (message.transaction_rate !==
|
|
679
|
+
if (message.transaction_rate !== undefined) {
|
|
669
680
|
writer.uint32(185).double(message.transaction_rate);
|
|
670
681
|
}
|
|
671
|
-
if (message.transaction_fee_amount !==
|
|
672
|
-
writer.uint32(
|
|
682
|
+
if (message.transaction_fee_amount !== undefined) {
|
|
683
|
+
writer.uint32(192).int32(message.transaction_fee_amount);
|
|
673
684
|
}
|
|
674
685
|
if (message.emi_date_l !== "") {
|
|
675
686
|
writer.uint32(202).string(message.emi_date_l);
|
|
@@ -710,14 +721,14 @@ exports.GetLocWithdrawlResponse = {
|
|
|
710
721
|
if (message.effective_annual_rate_l !== "") {
|
|
711
722
|
writer.uint32(298).string(message.effective_annual_rate_l);
|
|
712
723
|
}
|
|
713
|
-
if (message.transaction_fee_bill_amount !==
|
|
714
|
-
writer.uint32(
|
|
724
|
+
if (message.transaction_fee_bill_amount !== undefined) {
|
|
725
|
+
writer.uint32(304).int32(message.transaction_fee_bill_amount);
|
|
715
726
|
}
|
|
716
|
-
if (message.processing_fee_plus_gst !==
|
|
717
|
-
writer.uint32(
|
|
727
|
+
if (message.processing_fee_plus_gst !== undefined) {
|
|
728
|
+
writer.uint32(312).int32(message.processing_fee_plus_gst);
|
|
718
729
|
}
|
|
719
|
-
if (message.trans_fee_plus_gst !==
|
|
720
|
-
writer.uint32(
|
|
730
|
+
if (message.trans_fee_plus_gst !== undefined) {
|
|
731
|
+
writer.uint32(320).int32(message.trans_fee_plus_gst);
|
|
721
732
|
}
|
|
722
733
|
if (message.trans_fee_plus_gst_l !== "") {
|
|
723
734
|
writer.uint32(330).string(message.trans_fee_plus_gst_l);
|
|
@@ -734,11 +745,11 @@ exports.GetLocWithdrawlResponse = {
|
|
|
734
745
|
if (message.fee_and_charges_l !== "") {
|
|
735
746
|
writer.uint32(362).string(message.fee_and_charges_l);
|
|
736
747
|
}
|
|
737
|
-
if (message.fee_and_charges !==
|
|
738
|
-
writer.uint32(
|
|
748
|
+
if (message.fee_and_charges !== undefined) {
|
|
749
|
+
writer.uint32(368).int32(message.fee_and_charges);
|
|
739
750
|
}
|
|
740
|
-
if (message.fee_and_charges_bill !==
|
|
741
|
-
writer.uint32(
|
|
751
|
+
if (message.fee_and_charges_bill !== undefined) {
|
|
752
|
+
writer.uint32(376).int32(message.fee_and_charges_bill);
|
|
742
753
|
}
|
|
743
754
|
if (message.add_on_l !== "") {
|
|
744
755
|
writer.uint32(386).string(message.add_on_l);
|
|
@@ -758,8 +769,8 @@ exports.GetLocWithdrawlResponse = {
|
|
|
758
769
|
if (message.disbursal_amount_l !== "") {
|
|
759
770
|
writer.uint32(426).string(message.disbursal_amount_l);
|
|
760
771
|
}
|
|
761
|
-
if (message.fcp_interest !==
|
|
762
|
-
writer.uint32(
|
|
772
|
+
if (message.fcp_interest !== undefined) {
|
|
773
|
+
writer.uint32(432).int32(message.fcp_interest);
|
|
763
774
|
}
|
|
764
775
|
if (message.number_of_emi_l !== "") {
|
|
765
776
|
writer.uint32(442).string(message.number_of_emi_l);
|
|
@@ -773,13 +784,13 @@ exports.GetLocWithdrawlResponse = {
|
|
|
773
784
|
if (message.effective_roi_l !== "") {
|
|
774
785
|
writer.uint32(466).string(message.effective_roi_l);
|
|
775
786
|
}
|
|
776
|
-
if (message.effective_roi !==
|
|
787
|
+
if (message.effective_roi !== undefined) {
|
|
777
788
|
writer.uint32(473).double(message.effective_roi);
|
|
778
789
|
}
|
|
779
790
|
if (message.effective_annual_roi_l !== "") {
|
|
780
791
|
writer.uint32(482).string(message.effective_annual_roi_l);
|
|
781
792
|
}
|
|
782
|
-
if (message.effective_annual_roi !==
|
|
793
|
+
if (message.effective_annual_roi !== undefined) {
|
|
783
794
|
writer.uint32(489).double(message.effective_annual_roi);
|
|
784
795
|
}
|
|
785
796
|
if (message.insurance_l !== "") {
|
|
@@ -794,71 +805,74 @@ exports.GetLocWithdrawlResponse = {
|
|
|
794
805
|
if (message.loan_id !== "") {
|
|
795
806
|
writer.uint32(522).string(message.loan_id);
|
|
796
807
|
}
|
|
808
|
+
if (message.installment_amounts !== "") {
|
|
809
|
+
writer.uint32(530).string(message.installment_amounts);
|
|
810
|
+
}
|
|
797
811
|
if (message.apr_title !== "") {
|
|
798
|
-
writer.uint32(
|
|
812
|
+
writer.uint32(538).string(message.apr_title);
|
|
799
813
|
}
|
|
800
814
|
if (message.apr_value !== "") {
|
|
801
|
-
writer.uint32(
|
|
815
|
+
writer.uint32(546).string(message.apr_value);
|
|
802
816
|
}
|
|
803
817
|
if (message.apr_type !== "") {
|
|
804
|
-
writer.uint32(
|
|
818
|
+
writer.uint32(554).string(message.apr_type);
|
|
805
819
|
}
|
|
806
|
-
if (message.colender_id !==
|
|
807
|
-
writer.uint32(
|
|
820
|
+
if (message.colender_id !== undefined) {
|
|
821
|
+
writer.uint32(560).int32(message.colender_id);
|
|
808
822
|
}
|
|
809
|
-
if (message.credit_line_details_sheet !==
|
|
810
|
-
writer.uint32(
|
|
823
|
+
if (message.credit_line_details_sheet !== undefined) {
|
|
824
|
+
writer.uint32(570).string(message.credit_line_details_sheet);
|
|
811
825
|
}
|
|
812
|
-
if (message.Acknowledgement !==
|
|
813
|
-
writer.uint32(
|
|
826
|
+
if (message.Acknowledgement !== undefined) {
|
|
827
|
+
writer.uint32(578).string(message.Acknowledgement);
|
|
814
828
|
}
|
|
815
|
-
if (message.payment_undertaking !==
|
|
816
|
-
writer.uint32(
|
|
829
|
+
if (message.payment_undertaking !== undefined) {
|
|
830
|
+
writer.uint32(586).string(message.payment_undertaking);
|
|
817
831
|
}
|
|
818
|
-
if (message.key_fact_statement !==
|
|
819
|
-
writer.uint32(
|
|
832
|
+
if (message.key_fact_statement !== undefined) {
|
|
833
|
+
writer.uint32(594).string(message.key_fact_statement);
|
|
820
834
|
}
|
|
821
|
-
if (message.sanction_letter !==
|
|
822
|
-
writer.uint32(
|
|
835
|
+
if (message.sanction_letter !== undefined) {
|
|
836
|
+
writer.uint32(602).string(message.sanction_letter);
|
|
823
837
|
}
|
|
824
|
-
if (message.financing_documents !==
|
|
825
|
-
writer.uint32(
|
|
838
|
+
if (message.financing_documents !== undefined) {
|
|
839
|
+
writer.uint32(610).string(message.financing_documents);
|
|
826
840
|
}
|
|
827
|
-
if (message.landers_credit_facility_form !==
|
|
828
|
-
writer.uint32(
|
|
841
|
+
if (message.landers_credit_facility_form !== undefined) {
|
|
842
|
+
writer.uint32(618).string(message.landers_credit_facility_form);
|
|
829
843
|
}
|
|
830
844
|
if (message.agreement_links !== undefined) {
|
|
831
|
-
exports.AgreementLinks.encode(message.agreement_links, writer.uint32(
|
|
845
|
+
exports.AgreementLinks.encode(message.agreement_links, writer.uint32(626).fork()).ldelim();
|
|
832
846
|
}
|
|
833
|
-
if (message.max_amount !==
|
|
834
|
-
writer.uint32(
|
|
847
|
+
if (message.max_amount !== undefined) {
|
|
848
|
+
writer.uint32(632).int32(message.max_amount);
|
|
835
849
|
}
|
|
836
|
-
if (message.credit_report_fees !==
|
|
837
|
-
writer.uint32(
|
|
850
|
+
if (message.credit_report_fees !== undefined) {
|
|
851
|
+
writer.uint32(640).int32(message.credit_report_fees);
|
|
838
852
|
}
|
|
839
|
-
if (message.credit_report_actual_fees !==
|
|
840
|
-
writer.uint32(
|
|
853
|
+
if (message.credit_report_actual_fees !== undefined) {
|
|
854
|
+
writer.uint32(648).int32(message.credit_report_actual_fees);
|
|
841
855
|
}
|
|
842
|
-
if (message.plan_id !==
|
|
843
|
-
writer.uint32(
|
|
856
|
+
if (message.plan_id !== undefined) {
|
|
857
|
+
writer.uint32(656).int32(message.plan_id);
|
|
844
858
|
}
|
|
845
859
|
if (message.lender_name !== undefined) {
|
|
846
|
-
writer.uint32(
|
|
860
|
+
writer.uint32(666).string(message.lender_name);
|
|
847
861
|
}
|
|
848
|
-
if (message.free_loc_eligible_bank !==
|
|
849
|
-
writer.uint32(
|
|
862
|
+
if (message.free_loc_eligible_bank !== undefined) {
|
|
863
|
+
writer.uint32(674).string(message.free_loc_eligible_bank);
|
|
850
864
|
}
|
|
851
|
-
if (message.insurance_title !==
|
|
852
|
-
writer.uint32(
|
|
865
|
+
if (message.insurance_title !== undefined) {
|
|
866
|
+
writer.uint32(682).string(message.insurance_title);
|
|
853
867
|
}
|
|
854
868
|
for (const v of message.insurance_desc) {
|
|
855
|
-
exports.InsuranceDesc.encode(v, writer.uint32(
|
|
869
|
+
exports.InsuranceDesc.encode(v, writer.uint32(690).fork()).ldelim();
|
|
856
870
|
}
|
|
857
|
-
if (message.upfront_interest_description !==
|
|
858
|
-
writer.uint32(
|
|
871
|
+
if (message.upfront_interest_description !== undefined) {
|
|
872
|
+
writer.uint32(698).string(message.upfront_interest_description);
|
|
859
873
|
}
|
|
860
|
-
if (message.txn_id !==
|
|
861
|
-
writer.uint32(
|
|
874
|
+
if (message.txn_id !== undefined) {
|
|
875
|
+
writer.uint32(706).string(message.txn_id);
|
|
862
876
|
}
|
|
863
877
|
return writer;
|
|
864
878
|
},
|
|
@@ -894,34 +908,34 @@ exports.GetLocWithdrawlResponse = {
|
|
|
894
908
|
message.matched = reader.bool();
|
|
895
909
|
continue;
|
|
896
910
|
case 5:
|
|
897
|
-
if (tag !==
|
|
911
|
+
if (tag !== 40) {
|
|
898
912
|
break;
|
|
899
913
|
}
|
|
900
|
-
message.remaining_loc = reader.
|
|
914
|
+
message.remaining_loc = reader.int32();
|
|
901
915
|
continue;
|
|
902
916
|
case 6:
|
|
903
|
-
if (tag !==
|
|
917
|
+
if (tag !== 48) {
|
|
904
918
|
break;
|
|
905
919
|
}
|
|
906
|
-
message.requested_amount = reader.
|
|
920
|
+
message.requested_amount = reader.int32();
|
|
907
921
|
continue;
|
|
908
922
|
case 7:
|
|
909
|
-
if (tag !==
|
|
923
|
+
if (tag !== 56) {
|
|
910
924
|
break;
|
|
911
925
|
}
|
|
912
|
-
message.tenure = reader.
|
|
926
|
+
message.tenure = reader.int32();
|
|
913
927
|
continue;
|
|
914
928
|
case 8:
|
|
915
|
-
if (tag !==
|
|
929
|
+
if (tag !== 64) {
|
|
916
930
|
break;
|
|
917
931
|
}
|
|
918
|
-
message.emi_amount = reader.
|
|
932
|
+
message.emi_amount = reader.int32();
|
|
919
933
|
continue;
|
|
920
934
|
case 9:
|
|
921
|
-
if (tag !==
|
|
935
|
+
if (tag !== 72) {
|
|
922
936
|
break;
|
|
923
937
|
}
|
|
924
|
-
message.net_amount_payable = reader.
|
|
938
|
+
message.net_amount_payable = reader.int32();
|
|
925
939
|
continue;
|
|
926
940
|
case 10:
|
|
927
941
|
if (tag !== 82) {
|
|
@@ -936,10 +950,10 @@ exports.GetLocWithdrawlResponse = {
|
|
|
936
950
|
message.emi_date = reader.string();
|
|
937
951
|
continue;
|
|
938
952
|
case 12:
|
|
939
|
-
if (tag !==
|
|
953
|
+
if (tag !== 96) {
|
|
940
954
|
break;
|
|
941
955
|
}
|
|
942
|
-
message.final_disbursal_amount = reader.
|
|
956
|
+
message.final_disbursal_amount = reader.int32();
|
|
943
957
|
continue;
|
|
944
958
|
case 13:
|
|
945
959
|
if (tag !== 105) {
|
|
@@ -948,22 +962,22 @@ exports.GetLocWithdrawlResponse = {
|
|
|
948
962
|
message.upfront_interest = reader.double();
|
|
949
963
|
continue;
|
|
950
964
|
case 14:
|
|
951
|
-
if (tag !==
|
|
965
|
+
if (tag !== 112) {
|
|
952
966
|
break;
|
|
953
967
|
}
|
|
954
|
-
message.approved_amount = reader.
|
|
968
|
+
message.approved_amount = reader.int32();
|
|
955
969
|
continue;
|
|
956
970
|
case 15:
|
|
957
|
-
if (tag !==
|
|
971
|
+
if (tag !== 120) {
|
|
958
972
|
break;
|
|
959
973
|
}
|
|
960
|
-
message.processing_fees = reader.
|
|
974
|
+
message.processing_fees = reader.int32();
|
|
961
975
|
continue;
|
|
962
976
|
case 16:
|
|
963
|
-
if (tag !==
|
|
977
|
+
if (tag !== 128) {
|
|
964
978
|
break;
|
|
965
979
|
}
|
|
966
|
-
message.gst = reader.
|
|
980
|
+
message.gst = reader.int32();
|
|
967
981
|
continue;
|
|
968
982
|
case 17:
|
|
969
983
|
if (tag !== 137) {
|
|
@@ -972,28 +986,28 @@ exports.GetLocWithdrawlResponse = {
|
|
|
972
986
|
message.rate_of_interest = reader.double();
|
|
973
987
|
continue;
|
|
974
988
|
case 18:
|
|
975
|
-
if (tag !==
|
|
989
|
+
if (tag !== 144) {
|
|
976
990
|
break;
|
|
977
991
|
}
|
|
978
|
-
message.bill_amount = reader.
|
|
992
|
+
message.bill_amount = reader.int32();
|
|
979
993
|
continue;
|
|
980
994
|
case 19:
|
|
981
|
-
if (tag !==
|
|
995
|
+
if (tag !== 152) {
|
|
982
996
|
break;
|
|
983
997
|
}
|
|
984
|
-
message.early_foreclosure_fees = reader.
|
|
998
|
+
message.early_foreclosure_fees = reader.int32();
|
|
985
999
|
continue;
|
|
986
1000
|
case 20:
|
|
987
|
-
if (tag !==
|
|
1001
|
+
if (tag !== 160) {
|
|
988
1002
|
break;
|
|
989
1003
|
}
|
|
990
|
-
message.convenience_fees = reader.
|
|
1004
|
+
message.convenience_fees = reader.int32();
|
|
991
1005
|
continue;
|
|
992
1006
|
case 21:
|
|
993
|
-
if (tag !==
|
|
1007
|
+
if (tag !== 168) {
|
|
994
1008
|
break;
|
|
995
1009
|
}
|
|
996
|
-
message.total_interest_pay = reader.
|
|
1010
|
+
message.total_interest_pay = reader.int32();
|
|
997
1011
|
continue;
|
|
998
1012
|
case 22:
|
|
999
1013
|
if (tag !== 177) {
|
|
@@ -1008,10 +1022,10 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1008
1022
|
message.transaction_rate = reader.double();
|
|
1009
1023
|
continue;
|
|
1010
1024
|
case 24:
|
|
1011
|
-
if (tag !==
|
|
1025
|
+
if (tag !== 192) {
|
|
1012
1026
|
break;
|
|
1013
1027
|
}
|
|
1014
|
-
message.transaction_fee_amount = reader.
|
|
1028
|
+
message.transaction_fee_amount = reader.int32();
|
|
1015
1029
|
continue;
|
|
1016
1030
|
case 25:
|
|
1017
1031
|
if (tag !== 202) {
|
|
@@ -1092,22 +1106,22 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1092
1106
|
message.effective_annual_rate_l = reader.string();
|
|
1093
1107
|
continue;
|
|
1094
1108
|
case 38:
|
|
1095
|
-
if (tag !==
|
|
1109
|
+
if (tag !== 304) {
|
|
1096
1110
|
break;
|
|
1097
1111
|
}
|
|
1098
|
-
message.transaction_fee_bill_amount = reader.
|
|
1112
|
+
message.transaction_fee_bill_amount = reader.int32();
|
|
1099
1113
|
continue;
|
|
1100
1114
|
case 39:
|
|
1101
|
-
if (tag !==
|
|
1115
|
+
if (tag !== 312) {
|
|
1102
1116
|
break;
|
|
1103
1117
|
}
|
|
1104
|
-
message.processing_fee_plus_gst = reader.
|
|
1118
|
+
message.processing_fee_plus_gst = reader.int32();
|
|
1105
1119
|
continue;
|
|
1106
1120
|
case 40:
|
|
1107
|
-
if (tag !==
|
|
1121
|
+
if (tag !== 320) {
|
|
1108
1122
|
break;
|
|
1109
1123
|
}
|
|
1110
|
-
message.trans_fee_plus_gst = reader.
|
|
1124
|
+
message.trans_fee_plus_gst = reader.int32();
|
|
1111
1125
|
continue;
|
|
1112
1126
|
case 41:
|
|
1113
1127
|
if (tag !== 330) {
|
|
@@ -1140,16 +1154,16 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1140
1154
|
message.fee_and_charges_l = reader.string();
|
|
1141
1155
|
continue;
|
|
1142
1156
|
case 46:
|
|
1143
|
-
if (tag !==
|
|
1157
|
+
if (tag !== 368) {
|
|
1144
1158
|
break;
|
|
1145
1159
|
}
|
|
1146
|
-
message.fee_and_charges = reader.
|
|
1160
|
+
message.fee_and_charges = reader.int32();
|
|
1147
1161
|
continue;
|
|
1148
1162
|
case 47:
|
|
1149
|
-
if (tag !==
|
|
1163
|
+
if (tag !== 376) {
|
|
1150
1164
|
break;
|
|
1151
1165
|
}
|
|
1152
|
-
message.fee_and_charges_bill = reader.
|
|
1166
|
+
message.fee_and_charges_bill = reader.int32();
|
|
1153
1167
|
continue;
|
|
1154
1168
|
case 48:
|
|
1155
1169
|
if (tag !== 386) {
|
|
@@ -1188,10 +1202,10 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1188
1202
|
message.disbursal_amount_l = reader.string();
|
|
1189
1203
|
continue;
|
|
1190
1204
|
case 54:
|
|
1191
|
-
if (tag !==
|
|
1205
|
+
if (tag !== 432) {
|
|
1192
1206
|
break;
|
|
1193
1207
|
}
|
|
1194
|
-
message.fcp_interest = reader.
|
|
1208
|
+
message.fcp_interest = reader.int32();
|
|
1195
1209
|
continue;
|
|
1196
1210
|
case 55:
|
|
1197
1211
|
if (tag !== 442) {
|
|
@@ -1263,132 +1277,138 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1263
1277
|
if (tag !== 530) {
|
|
1264
1278
|
break;
|
|
1265
1279
|
}
|
|
1266
|
-
message.
|
|
1280
|
+
message.installment_amounts = reader.string();
|
|
1267
1281
|
continue;
|
|
1268
1282
|
case 67:
|
|
1269
1283
|
if (tag !== 538) {
|
|
1270
1284
|
break;
|
|
1271
1285
|
}
|
|
1272
|
-
message.
|
|
1286
|
+
message.apr_title = reader.string();
|
|
1273
1287
|
continue;
|
|
1274
1288
|
case 68:
|
|
1275
1289
|
if (tag !== 546) {
|
|
1276
1290
|
break;
|
|
1277
1291
|
}
|
|
1278
|
-
message.
|
|
1292
|
+
message.apr_value = reader.string();
|
|
1279
1293
|
continue;
|
|
1280
1294
|
case 69:
|
|
1281
|
-
if (tag !==
|
|
1295
|
+
if (tag !== 554) {
|
|
1282
1296
|
break;
|
|
1283
1297
|
}
|
|
1284
|
-
message.
|
|
1298
|
+
message.apr_type = reader.string();
|
|
1285
1299
|
continue;
|
|
1286
1300
|
case 70:
|
|
1287
|
-
if (tag !==
|
|
1301
|
+
if (tag !== 560) {
|
|
1288
1302
|
break;
|
|
1289
1303
|
}
|
|
1290
|
-
message.
|
|
1304
|
+
message.colender_id = reader.int32();
|
|
1291
1305
|
continue;
|
|
1292
1306
|
case 71:
|
|
1293
1307
|
if (tag !== 570) {
|
|
1294
1308
|
break;
|
|
1295
1309
|
}
|
|
1296
|
-
message.
|
|
1310
|
+
message.credit_line_details_sheet = reader.string();
|
|
1297
1311
|
continue;
|
|
1298
1312
|
case 72:
|
|
1299
1313
|
if (tag !== 578) {
|
|
1300
1314
|
break;
|
|
1301
1315
|
}
|
|
1302
|
-
message.
|
|
1316
|
+
message.Acknowledgement = reader.string();
|
|
1303
1317
|
continue;
|
|
1304
1318
|
case 73:
|
|
1305
1319
|
if (tag !== 586) {
|
|
1306
1320
|
break;
|
|
1307
1321
|
}
|
|
1308
|
-
message.
|
|
1322
|
+
message.payment_undertaking = reader.string();
|
|
1309
1323
|
continue;
|
|
1310
1324
|
case 74:
|
|
1311
1325
|
if (tag !== 594) {
|
|
1312
1326
|
break;
|
|
1313
1327
|
}
|
|
1314
|
-
message.
|
|
1328
|
+
message.key_fact_statement = reader.string();
|
|
1315
1329
|
continue;
|
|
1316
1330
|
case 75:
|
|
1317
1331
|
if (tag !== 602) {
|
|
1318
1332
|
break;
|
|
1319
1333
|
}
|
|
1320
|
-
message.
|
|
1334
|
+
message.sanction_letter = reader.string();
|
|
1321
1335
|
continue;
|
|
1322
1336
|
case 76:
|
|
1323
1337
|
if (tag !== 610) {
|
|
1324
1338
|
break;
|
|
1325
1339
|
}
|
|
1326
|
-
message.
|
|
1340
|
+
message.financing_documents = reader.string();
|
|
1327
1341
|
continue;
|
|
1328
1342
|
case 77:
|
|
1329
1343
|
if (tag !== 618) {
|
|
1330
1344
|
break;
|
|
1331
1345
|
}
|
|
1332
|
-
message.
|
|
1346
|
+
message.landers_credit_facility_form = reader.string();
|
|
1333
1347
|
continue;
|
|
1334
1348
|
case 78:
|
|
1335
|
-
if (tag !==
|
|
1349
|
+
if (tag !== 626) {
|
|
1336
1350
|
break;
|
|
1337
1351
|
}
|
|
1338
|
-
message.
|
|
1352
|
+
message.agreement_links = exports.AgreementLinks.decode(reader, reader.uint32());
|
|
1339
1353
|
continue;
|
|
1340
1354
|
case 79:
|
|
1341
|
-
if (tag !==
|
|
1355
|
+
if (tag !== 632) {
|
|
1342
1356
|
break;
|
|
1343
1357
|
}
|
|
1344
|
-
message.
|
|
1358
|
+
message.max_amount = reader.int32();
|
|
1345
1359
|
continue;
|
|
1346
1360
|
case 80:
|
|
1347
|
-
if (tag !==
|
|
1361
|
+
if (tag !== 640) {
|
|
1348
1362
|
break;
|
|
1349
1363
|
}
|
|
1350
|
-
message.
|
|
1364
|
+
message.credit_report_fees = reader.int32();
|
|
1351
1365
|
continue;
|
|
1352
1366
|
case 81:
|
|
1353
|
-
if (tag !==
|
|
1367
|
+
if (tag !== 648) {
|
|
1354
1368
|
break;
|
|
1355
1369
|
}
|
|
1356
|
-
message.
|
|
1370
|
+
message.credit_report_actual_fees = reader.int32();
|
|
1357
1371
|
continue;
|
|
1358
1372
|
case 82:
|
|
1359
|
-
if (tag !==
|
|
1373
|
+
if (tag !== 656) {
|
|
1360
1374
|
break;
|
|
1361
1375
|
}
|
|
1362
|
-
message.
|
|
1376
|
+
message.plan_id = reader.int32();
|
|
1363
1377
|
continue;
|
|
1364
1378
|
case 83:
|
|
1365
1379
|
if (tag !== 666) {
|
|
1366
1380
|
break;
|
|
1367
1381
|
}
|
|
1368
|
-
message.
|
|
1382
|
+
message.lender_name = reader.string();
|
|
1369
1383
|
continue;
|
|
1370
1384
|
case 84:
|
|
1371
1385
|
if (tag !== 674) {
|
|
1372
1386
|
break;
|
|
1373
1387
|
}
|
|
1374
|
-
message.
|
|
1388
|
+
message.free_loc_eligible_bank = reader.string();
|
|
1375
1389
|
continue;
|
|
1376
1390
|
case 85:
|
|
1377
1391
|
if (tag !== 682) {
|
|
1378
1392
|
break;
|
|
1379
1393
|
}
|
|
1380
|
-
message.
|
|
1394
|
+
message.insurance_title = reader.string();
|
|
1381
1395
|
continue;
|
|
1382
1396
|
case 86:
|
|
1383
1397
|
if (tag !== 690) {
|
|
1384
1398
|
break;
|
|
1385
1399
|
}
|
|
1386
|
-
message.
|
|
1400
|
+
message.insurance_desc.push(exports.InsuranceDesc.decode(reader, reader.uint32()));
|
|
1387
1401
|
continue;
|
|
1388
1402
|
case 87:
|
|
1389
1403
|
if (tag !== 698) {
|
|
1390
1404
|
break;
|
|
1391
1405
|
}
|
|
1406
|
+
message.upfront_interest_description = reader.string();
|
|
1407
|
+
continue;
|
|
1408
|
+
case 88:
|
|
1409
|
+
if (tag !== 706) {
|
|
1410
|
+
break;
|
|
1411
|
+
}
|
|
1392
1412
|
message.txn_id = reader.string();
|
|
1393
1413
|
continue;
|
|
1394
1414
|
}
|
|
@@ -1417,22 +1437,24 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1417
1437
|
final_disbursal_amount: isSet(object.final_disbursal_amount)
|
|
1418
1438
|
? globalThis.Number(object.final_disbursal_amount)
|
|
1419
1439
|
: 0,
|
|
1420
|
-
upfront_interest: isSet(object.upfront_interest) ? globalThis.Number(object.upfront_interest) :
|
|
1440
|
+
upfront_interest: isSet(object.upfront_interest) ? globalThis.Number(object.upfront_interest) : undefined,
|
|
1421
1441
|
approved_amount: isSet(object.approved_amount) ? globalThis.Number(object.approved_amount) : 0,
|
|
1422
|
-
processing_fees: isSet(object.processing_fees) ? globalThis.Number(object.processing_fees) :
|
|
1423
|
-
gst: isSet(object.gst) ? globalThis.Number(object.gst) :
|
|
1424
|
-
rate_of_interest: isSet(object.rate_of_interest) ? globalThis.Number(object.rate_of_interest) :
|
|
1442
|
+
processing_fees: isSet(object.processing_fees) ? globalThis.Number(object.processing_fees) : undefined,
|
|
1443
|
+
gst: isSet(object.gst) ? globalThis.Number(object.gst) : undefined,
|
|
1444
|
+
rate_of_interest: isSet(object.rate_of_interest) ? globalThis.Number(object.rate_of_interest) : undefined,
|
|
1425
1445
|
bill_amount: isSet(object.bill_amount) ? globalThis.Number(object.bill_amount) : 0,
|
|
1426
1446
|
early_foreclosure_fees: isSet(object.early_foreclosure_fees)
|
|
1427
1447
|
? globalThis.Number(object.early_foreclosure_fees)
|
|
1428
|
-
:
|
|
1429
|
-
convenience_fees: isSet(object.convenience_fees) ? globalThis.Number(object.convenience_fees) :
|
|
1430
|
-
total_interest_pay: isSet(object.total_interest_pay) ? globalThis.Number(object.total_interest_pay) :
|
|
1431
|
-
effective_annual_rate: isSet(object.effective_annual_rate)
|
|
1432
|
-
|
|
1448
|
+
: undefined,
|
|
1449
|
+
convenience_fees: isSet(object.convenience_fees) ? globalThis.Number(object.convenience_fees) : undefined,
|
|
1450
|
+
total_interest_pay: isSet(object.total_interest_pay) ? globalThis.Number(object.total_interest_pay) : undefined,
|
|
1451
|
+
effective_annual_rate: isSet(object.effective_annual_rate)
|
|
1452
|
+
? globalThis.Number(object.effective_annual_rate)
|
|
1453
|
+
: undefined,
|
|
1454
|
+
transaction_rate: isSet(object.transaction_rate) ? globalThis.Number(object.transaction_rate) : undefined,
|
|
1433
1455
|
transaction_fee_amount: isSet(object.transaction_fee_amount)
|
|
1434
1456
|
? globalThis.Number(object.transaction_fee_amount)
|
|
1435
|
-
:
|
|
1457
|
+
: undefined,
|
|
1436
1458
|
emi_date_l: isSet(object.emi_date_l) ? globalThis.String(object.emi_date_l) : "",
|
|
1437
1459
|
emi_amount_l: isSet(object.emi_amount_l) ? globalThis.String(object.emi_amount_l) : "",
|
|
1438
1460
|
first_emi_date_l: isSet(object.first_emi_date_l) ? globalThis.String(object.first_emi_date_l) : "",
|
|
@@ -1454,11 +1476,11 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1454
1476
|
: "",
|
|
1455
1477
|
transaction_fee_bill_amount: isSet(object.transaction_fee_bill_amount)
|
|
1456
1478
|
? globalThis.Number(object.transaction_fee_bill_amount)
|
|
1457
|
-
:
|
|
1479
|
+
: undefined,
|
|
1458
1480
|
processing_fee_plus_gst: isSet(object.processing_fee_plus_gst)
|
|
1459
1481
|
? globalThis.Number(object.processing_fee_plus_gst)
|
|
1460
|
-
:
|
|
1461
|
-
trans_fee_plus_gst: isSet(object.trans_fee_plus_gst) ? globalThis.Number(object.trans_fee_plus_gst) :
|
|
1482
|
+
: undefined,
|
|
1483
|
+
trans_fee_plus_gst: isSet(object.trans_fee_plus_gst) ? globalThis.Number(object.trans_fee_plus_gst) : undefined,
|
|
1462
1484
|
trans_fee_plus_gst_l: isSet(object.trans_fee_plus_gst_l) ? globalThis.String(object.trans_fee_plus_gst_l) : "",
|
|
1463
1485
|
processing_fee_plus_gst_l: isSet(object.processing_fee_plus_gst_l)
|
|
1464
1486
|
? globalThis.String(object.processing_fee_plus_gst_l)
|
|
@@ -1466,8 +1488,10 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1466
1488
|
max_amount_l: isSet(object.max_amount_l) ? globalThis.String(object.max_amount_l) : "",
|
|
1467
1489
|
credit_report_fees_l: isSet(object.credit_report_fees_l) ? globalThis.String(object.credit_report_fees_l) : "",
|
|
1468
1490
|
fee_and_charges_l: isSet(object.fee_and_charges_l) ? globalThis.String(object.fee_and_charges_l) : "",
|
|
1469
|
-
fee_and_charges: isSet(object.fee_and_charges) ? globalThis.Number(object.fee_and_charges) :
|
|
1470
|
-
fee_and_charges_bill: isSet(object.fee_and_charges_bill)
|
|
1491
|
+
fee_and_charges: isSet(object.fee_and_charges) ? globalThis.Number(object.fee_and_charges) : undefined,
|
|
1492
|
+
fee_and_charges_bill: isSet(object.fee_and_charges_bill)
|
|
1493
|
+
? globalThis.Number(object.fee_and_charges_bill)
|
|
1494
|
+
: undefined,
|
|
1471
1495
|
add_on_l: isSet(object.add_on_l) ? globalThis.String(object.add_on_l) : "",
|
|
1472
1496
|
total_loan_amount_l: isSet(object.total_loan_amount_l) ? globalThis.String(object.total_loan_amount_l) : "",
|
|
1473
1497
|
loan_amount_l: isSet(object.loan_amount_l) ? globalThis.String(object.loan_amount_l) : "",
|
|
@@ -1476,54 +1500,61 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1476
1500
|
? globalThis.String(object.total_payable_amount_l)
|
|
1477
1501
|
: "",
|
|
1478
1502
|
disbursal_amount_l: isSet(object.disbursal_amount_l) ? globalThis.String(object.disbursal_amount_l) : "",
|
|
1479
|
-
fcp_interest: isSet(object.fcp_interest) ? globalThis.Number(object.fcp_interest) :
|
|
1503
|
+
fcp_interest: isSet(object.fcp_interest) ? globalThis.Number(object.fcp_interest) : undefined,
|
|
1480
1504
|
number_of_emi_l: isSet(object.number_of_emi_l) ? globalThis.String(object.number_of_emi_l) : "",
|
|
1481
1505
|
first_emi_amt_l: isSet(object.first_emi_amt_l) ? globalThis.String(object.first_emi_amt_l) : "",
|
|
1482
1506
|
subsequent_emi_l: isSet(object.subsequent_emi_l) ? globalThis.String(object.subsequent_emi_l) : "",
|
|
1483
1507
|
effective_roi_l: isSet(object.effective_roi_l) ? globalThis.String(object.effective_roi_l) : "",
|
|
1484
|
-
effective_roi: isSet(object.effective_roi) ? globalThis.Number(object.effective_roi) :
|
|
1508
|
+
effective_roi: isSet(object.effective_roi) ? globalThis.Number(object.effective_roi) : undefined,
|
|
1485
1509
|
effective_annual_roi_l: isSet(object.effective_annual_roi_l)
|
|
1486
1510
|
? globalThis.String(object.effective_annual_roi_l)
|
|
1487
1511
|
: "",
|
|
1488
|
-
effective_annual_roi: isSet(object.effective_annual_roi)
|
|
1512
|
+
effective_annual_roi: isSet(object.effective_annual_roi)
|
|
1513
|
+
? globalThis.Number(object.effective_annual_roi)
|
|
1514
|
+
: undefined,
|
|
1489
1515
|
insurance_l: isSet(object.insurance_l) ? globalThis.String(object.insurance_l) : "",
|
|
1490
1516
|
emi_card_description: isSet(object.emi_card_description) ? globalThis.String(object.emi_card_description) : "",
|
|
1491
1517
|
bill_card_description: isSet(object.bill_card_description) ? globalThis.String(object.bill_card_description) : "",
|
|
1492
1518
|
loan_id: isSet(object.loan_id) ? globalThis.String(object.loan_id) : "",
|
|
1519
|
+
installment_amounts: isSet(object.installment_amounts) ? globalThis.String(object.installment_amounts) : "",
|
|
1493
1520
|
apr_title: isSet(object.apr_title) ? globalThis.String(object.apr_title) : "",
|
|
1494
1521
|
apr_value: isSet(object.apr_value) ? globalThis.String(object.apr_value) : "",
|
|
1495
1522
|
apr_type: isSet(object.apr_type) ? globalThis.String(object.apr_type) : "",
|
|
1496
|
-
colender_id: isSet(object.colender_id) ? globalThis.Number(object.colender_id) :
|
|
1523
|
+
colender_id: isSet(object.colender_id) ? globalThis.Number(object.colender_id) : undefined,
|
|
1497
1524
|
credit_line_details_sheet: isSet(object.credit_line_details_sheet)
|
|
1498
1525
|
? globalThis.String(object.credit_line_details_sheet)
|
|
1499
|
-
:
|
|
1500
|
-
Acknowledgement: isSet(object.Acknowledgement) ? globalThis.String(object.Acknowledgement) :
|
|
1501
|
-
payment_undertaking: isSet(object.payment_undertaking)
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1526
|
+
: undefined,
|
|
1527
|
+
Acknowledgement: isSet(object.Acknowledgement) ? globalThis.String(object.Acknowledgement) : undefined,
|
|
1528
|
+
payment_undertaking: isSet(object.payment_undertaking)
|
|
1529
|
+
? globalThis.String(object.payment_undertaking)
|
|
1530
|
+
: undefined,
|
|
1531
|
+
key_fact_statement: isSet(object.key_fact_statement) ? globalThis.String(object.key_fact_statement) : undefined,
|
|
1532
|
+
sanction_letter: isSet(object.sanction_letter) ? globalThis.String(object.sanction_letter) : undefined,
|
|
1533
|
+
financing_documents: isSet(object.financing_documents)
|
|
1534
|
+
? globalThis.String(object.financing_documents)
|
|
1535
|
+
: undefined,
|
|
1505
1536
|
landers_credit_facility_form: isSet(object.landers_credit_facility_form)
|
|
1506
1537
|
? globalThis.String(object.landers_credit_facility_form)
|
|
1507
|
-
:
|
|
1538
|
+
: undefined,
|
|
1508
1539
|
agreement_links: isSet(object.agreement_links) ? exports.AgreementLinks.fromJSON(object.agreement_links) : undefined,
|
|
1509
|
-
max_amount: isSet(object.max_amount) ? globalThis.Number(object.max_amount) :
|
|
1510
|
-
credit_report_fees: isSet(object.credit_report_fees) ? globalThis.Number(object.credit_report_fees) :
|
|
1540
|
+
max_amount: isSet(object.max_amount) ? globalThis.Number(object.max_amount) : undefined,
|
|
1541
|
+
credit_report_fees: isSet(object.credit_report_fees) ? globalThis.Number(object.credit_report_fees) : undefined,
|
|
1511
1542
|
credit_report_actual_fees: isSet(object.credit_report_actual_fees)
|
|
1512
1543
|
? globalThis.Number(object.credit_report_actual_fees)
|
|
1513
|
-
:
|
|
1514
|
-
plan_id: isSet(object.plan_id) ? globalThis.
|
|
1544
|
+
: undefined,
|
|
1545
|
+
plan_id: isSet(object.plan_id) ? globalThis.Number(object.plan_id) : undefined,
|
|
1515
1546
|
lender_name: isSet(object.lender_name) ? globalThis.String(object.lender_name) : undefined,
|
|
1516
1547
|
free_loc_eligible_bank: isSet(object.free_loc_eligible_bank)
|
|
1517
1548
|
? globalThis.String(object.free_loc_eligible_bank)
|
|
1518
|
-
:
|
|
1519
|
-
insurance_title: isSet(object.insurance_title) ? globalThis.String(object.insurance_title) :
|
|
1549
|
+
: undefined,
|
|
1550
|
+
insurance_title: isSet(object.insurance_title) ? globalThis.String(object.insurance_title) : undefined,
|
|
1520
1551
|
insurance_desc: globalThis.Array.isArray(object?.insurance_desc)
|
|
1521
1552
|
? object.insurance_desc.map((e) => exports.InsuranceDesc.fromJSON(e))
|
|
1522
1553
|
: [],
|
|
1523
1554
|
upfront_interest_description: isSet(object.upfront_interest_description)
|
|
1524
1555
|
? globalThis.String(object.upfront_interest_description)
|
|
1525
|
-
:
|
|
1526
|
-
txn_id: isSet(object.txn_id) ? globalThis.String(object.txn_id) :
|
|
1556
|
+
: undefined,
|
|
1557
|
+
txn_id: isSet(object.txn_id) ? globalThis.String(object.txn_id) : undefined,
|
|
1527
1558
|
};
|
|
1528
1559
|
},
|
|
1529
1560
|
toJSON(message) {
|
|
@@ -1541,19 +1572,19 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1541
1572
|
obj.matched = message.matched;
|
|
1542
1573
|
}
|
|
1543
1574
|
if (message.remaining_loc !== 0) {
|
|
1544
|
-
obj.remaining_loc = message.remaining_loc;
|
|
1575
|
+
obj.remaining_loc = Math.round(message.remaining_loc);
|
|
1545
1576
|
}
|
|
1546
1577
|
if (message.requested_amount !== 0) {
|
|
1547
|
-
obj.requested_amount = message.requested_amount;
|
|
1578
|
+
obj.requested_amount = Math.round(message.requested_amount);
|
|
1548
1579
|
}
|
|
1549
1580
|
if (message.tenure !== 0) {
|
|
1550
|
-
obj.tenure = message.tenure;
|
|
1581
|
+
obj.tenure = Math.round(message.tenure);
|
|
1551
1582
|
}
|
|
1552
1583
|
if (message.emi_amount !== 0) {
|
|
1553
|
-
obj.emi_amount = message.emi_amount;
|
|
1584
|
+
obj.emi_amount = Math.round(message.emi_amount);
|
|
1554
1585
|
}
|
|
1555
1586
|
if (message.net_amount_payable !== 0) {
|
|
1556
|
-
obj.net_amount_payable = message.net_amount_payable;
|
|
1587
|
+
obj.net_amount_payable = Math.round(message.net_amount_payable);
|
|
1557
1588
|
}
|
|
1558
1589
|
if (message.first_emi_date !== "") {
|
|
1559
1590
|
obj.first_emi_date = message.first_emi_date;
|
|
@@ -1562,43 +1593,43 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1562
1593
|
obj.emi_date = message.emi_date;
|
|
1563
1594
|
}
|
|
1564
1595
|
if (message.final_disbursal_amount !== 0) {
|
|
1565
|
-
obj.final_disbursal_amount = message.final_disbursal_amount;
|
|
1596
|
+
obj.final_disbursal_amount = Math.round(message.final_disbursal_amount);
|
|
1566
1597
|
}
|
|
1567
|
-
if (message.upfront_interest !==
|
|
1598
|
+
if (message.upfront_interest !== undefined) {
|
|
1568
1599
|
obj.upfront_interest = message.upfront_interest;
|
|
1569
1600
|
}
|
|
1570
1601
|
if (message.approved_amount !== 0) {
|
|
1571
|
-
obj.approved_amount = message.approved_amount;
|
|
1602
|
+
obj.approved_amount = Math.round(message.approved_amount);
|
|
1572
1603
|
}
|
|
1573
|
-
if (message.processing_fees !==
|
|
1574
|
-
obj.processing_fees = message.processing_fees;
|
|
1604
|
+
if (message.processing_fees !== undefined) {
|
|
1605
|
+
obj.processing_fees = Math.round(message.processing_fees);
|
|
1575
1606
|
}
|
|
1576
|
-
if (message.gst !==
|
|
1577
|
-
obj.gst = message.gst;
|
|
1607
|
+
if (message.gst !== undefined) {
|
|
1608
|
+
obj.gst = Math.round(message.gst);
|
|
1578
1609
|
}
|
|
1579
|
-
if (message.rate_of_interest !==
|
|
1610
|
+
if (message.rate_of_interest !== undefined) {
|
|
1580
1611
|
obj.rate_of_interest = message.rate_of_interest;
|
|
1581
1612
|
}
|
|
1582
1613
|
if (message.bill_amount !== 0) {
|
|
1583
|
-
obj.bill_amount = message.bill_amount;
|
|
1614
|
+
obj.bill_amount = Math.round(message.bill_amount);
|
|
1584
1615
|
}
|
|
1585
|
-
if (message.early_foreclosure_fees !==
|
|
1586
|
-
obj.early_foreclosure_fees = message.early_foreclosure_fees;
|
|
1616
|
+
if (message.early_foreclosure_fees !== undefined) {
|
|
1617
|
+
obj.early_foreclosure_fees = Math.round(message.early_foreclosure_fees);
|
|
1587
1618
|
}
|
|
1588
|
-
if (message.convenience_fees !==
|
|
1589
|
-
obj.convenience_fees = message.convenience_fees;
|
|
1619
|
+
if (message.convenience_fees !== undefined) {
|
|
1620
|
+
obj.convenience_fees = Math.round(message.convenience_fees);
|
|
1590
1621
|
}
|
|
1591
|
-
if (message.total_interest_pay !==
|
|
1592
|
-
obj.total_interest_pay = message.total_interest_pay;
|
|
1622
|
+
if (message.total_interest_pay !== undefined) {
|
|
1623
|
+
obj.total_interest_pay = Math.round(message.total_interest_pay);
|
|
1593
1624
|
}
|
|
1594
|
-
if (message.effective_annual_rate !==
|
|
1625
|
+
if (message.effective_annual_rate !== undefined) {
|
|
1595
1626
|
obj.effective_annual_rate = message.effective_annual_rate;
|
|
1596
1627
|
}
|
|
1597
|
-
if (message.transaction_rate !==
|
|
1628
|
+
if (message.transaction_rate !== undefined) {
|
|
1598
1629
|
obj.transaction_rate = message.transaction_rate;
|
|
1599
1630
|
}
|
|
1600
|
-
if (message.transaction_fee_amount !==
|
|
1601
|
-
obj.transaction_fee_amount = message.transaction_fee_amount;
|
|
1631
|
+
if (message.transaction_fee_amount !== undefined) {
|
|
1632
|
+
obj.transaction_fee_amount = Math.round(message.transaction_fee_amount);
|
|
1602
1633
|
}
|
|
1603
1634
|
if (message.emi_date_l !== "") {
|
|
1604
1635
|
obj.emi_date_l = message.emi_date_l;
|
|
@@ -1639,14 +1670,14 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1639
1670
|
if (message.effective_annual_rate_l !== "") {
|
|
1640
1671
|
obj.effective_annual_rate_l = message.effective_annual_rate_l;
|
|
1641
1672
|
}
|
|
1642
|
-
if (message.transaction_fee_bill_amount !==
|
|
1643
|
-
obj.transaction_fee_bill_amount = message.transaction_fee_bill_amount;
|
|
1673
|
+
if (message.transaction_fee_bill_amount !== undefined) {
|
|
1674
|
+
obj.transaction_fee_bill_amount = Math.round(message.transaction_fee_bill_amount);
|
|
1644
1675
|
}
|
|
1645
|
-
if (message.processing_fee_plus_gst !==
|
|
1646
|
-
obj.processing_fee_plus_gst = message.processing_fee_plus_gst;
|
|
1676
|
+
if (message.processing_fee_plus_gst !== undefined) {
|
|
1677
|
+
obj.processing_fee_plus_gst = Math.round(message.processing_fee_plus_gst);
|
|
1647
1678
|
}
|
|
1648
|
-
if (message.trans_fee_plus_gst !==
|
|
1649
|
-
obj.trans_fee_plus_gst = message.trans_fee_plus_gst;
|
|
1679
|
+
if (message.trans_fee_plus_gst !== undefined) {
|
|
1680
|
+
obj.trans_fee_plus_gst = Math.round(message.trans_fee_plus_gst);
|
|
1650
1681
|
}
|
|
1651
1682
|
if (message.trans_fee_plus_gst_l !== "") {
|
|
1652
1683
|
obj.trans_fee_plus_gst_l = message.trans_fee_plus_gst_l;
|
|
@@ -1663,11 +1694,11 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1663
1694
|
if (message.fee_and_charges_l !== "") {
|
|
1664
1695
|
obj.fee_and_charges_l = message.fee_and_charges_l;
|
|
1665
1696
|
}
|
|
1666
|
-
if (message.fee_and_charges !==
|
|
1667
|
-
obj.fee_and_charges = message.fee_and_charges;
|
|
1697
|
+
if (message.fee_and_charges !== undefined) {
|
|
1698
|
+
obj.fee_and_charges = Math.round(message.fee_and_charges);
|
|
1668
1699
|
}
|
|
1669
|
-
if (message.fee_and_charges_bill !==
|
|
1670
|
-
obj.fee_and_charges_bill = message.fee_and_charges_bill;
|
|
1700
|
+
if (message.fee_and_charges_bill !== undefined) {
|
|
1701
|
+
obj.fee_and_charges_bill = Math.round(message.fee_and_charges_bill);
|
|
1671
1702
|
}
|
|
1672
1703
|
if (message.add_on_l !== "") {
|
|
1673
1704
|
obj.add_on_l = message.add_on_l;
|
|
@@ -1687,8 +1718,8 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1687
1718
|
if (message.disbursal_amount_l !== "") {
|
|
1688
1719
|
obj.disbursal_amount_l = message.disbursal_amount_l;
|
|
1689
1720
|
}
|
|
1690
|
-
if (message.fcp_interest !==
|
|
1691
|
-
obj.fcp_interest = message.fcp_interest;
|
|
1721
|
+
if (message.fcp_interest !== undefined) {
|
|
1722
|
+
obj.fcp_interest = Math.round(message.fcp_interest);
|
|
1692
1723
|
}
|
|
1693
1724
|
if (message.number_of_emi_l !== "") {
|
|
1694
1725
|
obj.number_of_emi_l = message.number_of_emi_l;
|
|
@@ -1702,13 +1733,13 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1702
1733
|
if (message.effective_roi_l !== "") {
|
|
1703
1734
|
obj.effective_roi_l = message.effective_roi_l;
|
|
1704
1735
|
}
|
|
1705
|
-
if (message.effective_roi !==
|
|
1736
|
+
if (message.effective_roi !== undefined) {
|
|
1706
1737
|
obj.effective_roi = message.effective_roi;
|
|
1707
1738
|
}
|
|
1708
1739
|
if (message.effective_annual_roi_l !== "") {
|
|
1709
1740
|
obj.effective_annual_roi_l = message.effective_annual_roi_l;
|
|
1710
1741
|
}
|
|
1711
|
-
if (message.effective_annual_roi !==
|
|
1742
|
+
if (message.effective_annual_roi !== undefined) {
|
|
1712
1743
|
obj.effective_annual_roi = message.effective_annual_roi;
|
|
1713
1744
|
}
|
|
1714
1745
|
if (message.insurance_l !== "") {
|
|
@@ -1723,6 +1754,9 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1723
1754
|
if (message.loan_id !== "") {
|
|
1724
1755
|
obj.loan_id = message.loan_id;
|
|
1725
1756
|
}
|
|
1757
|
+
if (message.installment_amounts !== "") {
|
|
1758
|
+
obj.installment_amounts = message.installment_amounts;
|
|
1759
|
+
}
|
|
1726
1760
|
if (message.apr_title !== "") {
|
|
1727
1761
|
obj.apr_title = message.apr_title;
|
|
1728
1762
|
}
|
|
@@ -1732,61 +1766,61 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1732
1766
|
if (message.apr_type !== "") {
|
|
1733
1767
|
obj.apr_type = message.apr_type;
|
|
1734
1768
|
}
|
|
1735
|
-
if (message.colender_id !==
|
|
1769
|
+
if (message.colender_id !== undefined) {
|
|
1736
1770
|
obj.colender_id = Math.round(message.colender_id);
|
|
1737
1771
|
}
|
|
1738
|
-
if (message.credit_line_details_sheet !==
|
|
1772
|
+
if (message.credit_line_details_sheet !== undefined) {
|
|
1739
1773
|
obj.credit_line_details_sheet = message.credit_line_details_sheet;
|
|
1740
1774
|
}
|
|
1741
|
-
if (message.Acknowledgement !==
|
|
1775
|
+
if (message.Acknowledgement !== undefined) {
|
|
1742
1776
|
obj.Acknowledgement = message.Acknowledgement;
|
|
1743
1777
|
}
|
|
1744
|
-
if (message.payment_undertaking !==
|
|
1778
|
+
if (message.payment_undertaking !== undefined) {
|
|
1745
1779
|
obj.payment_undertaking = message.payment_undertaking;
|
|
1746
1780
|
}
|
|
1747
|
-
if (message.key_fact_statement !==
|
|
1781
|
+
if (message.key_fact_statement !== undefined) {
|
|
1748
1782
|
obj.key_fact_statement = message.key_fact_statement;
|
|
1749
1783
|
}
|
|
1750
|
-
if (message.sanction_letter !==
|
|
1784
|
+
if (message.sanction_letter !== undefined) {
|
|
1751
1785
|
obj.sanction_letter = message.sanction_letter;
|
|
1752
1786
|
}
|
|
1753
|
-
if (message.financing_documents !==
|
|
1787
|
+
if (message.financing_documents !== undefined) {
|
|
1754
1788
|
obj.financing_documents = message.financing_documents;
|
|
1755
1789
|
}
|
|
1756
|
-
if (message.landers_credit_facility_form !==
|
|
1790
|
+
if (message.landers_credit_facility_form !== undefined) {
|
|
1757
1791
|
obj.landers_credit_facility_form = message.landers_credit_facility_form;
|
|
1758
1792
|
}
|
|
1759
1793
|
if (message.agreement_links !== undefined) {
|
|
1760
1794
|
obj.agreement_links = exports.AgreementLinks.toJSON(message.agreement_links);
|
|
1761
1795
|
}
|
|
1762
|
-
if (message.max_amount !==
|
|
1763
|
-
obj.max_amount = message.max_amount;
|
|
1796
|
+
if (message.max_amount !== undefined) {
|
|
1797
|
+
obj.max_amount = Math.round(message.max_amount);
|
|
1764
1798
|
}
|
|
1765
|
-
if (message.credit_report_fees !==
|
|
1766
|
-
obj.credit_report_fees = message.credit_report_fees;
|
|
1799
|
+
if (message.credit_report_fees !== undefined) {
|
|
1800
|
+
obj.credit_report_fees = Math.round(message.credit_report_fees);
|
|
1767
1801
|
}
|
|
1768
|
-
if (message.credit_report_actual_fees !==
|
|
1769
|
-
obj.credit_report_actual_fees = message.credit_report_actual_fees;
|
|
1802
|
+
if (message.credit_report_actual_fees !== undefined) {
|
|
1803
|
+
obj.credit_report_actual_fees = Math.round(message.credit_report_actual_fees);
|
|
1770
1804
|
}
|
|
1771
|
-
if (message.plan_id !==
|
|
1772
|
-
obj.plan_id = message.plan_id;
|
|
1805
|
+
if (message.plan_id !== undefined) {
|
|
1806
|
+
obj.plan_id = Math.round(message.plan_id);
|
|
1773
1807
|
}
|
|
1774
1808
|
if (message.lender_name !== undefined) {
|
|
1775
1809
|
obj.lender_name = message.lender_name;
|
|
1776
1810
|
}
|
|
1777
|
-
if (message.free_loc_eligible_bank !==
|
|
1811
|
+
if (message.free_loc_eligible_bank !== undefined) {
|
|
1778
1812
|
obj.free_loc_eligible_bank = message.free_loc_eligible_bank;
|
|
1779
1813
|
}
|
|
1780
|
-
if (message.insurance_title !==
|
|
1814
|
+
if (message.insurance_title !== undefined) {
|
|
1781
1815
|
obj.insurance_title = message.insurance_title;
|
|
1782
1816
|
}
|
|
1783
1817
|
if (message.insurance_desc?.length) {
|
|
1784
1818
|
obj.insurance_desc = message.insurance_desc.map((e) => exports.InsuranceDesc.toJSON(e));
|
|
1785
1819
|
}
|
|
1786
|
-
if (message.upfront_interest_description !==
|
|
1820
|
+
if (message.upfront_interest_description !== undefined) {
|
|
1787
1821
|
obj.upfront_interest_description = message.upfront_interest_description;
|
|
1788
1822
|
}
|
|
1789
|
-
if (message.txn_id !==
|
|
1823
|
+
if (message.txn_id !== undefined) {
|
|
1790
1824
|
obj.txn_id = message.txn_id;
|
|
1791
1825
|
}
|
|
1792
1826
|
return obj;
|
|
@@ -1808,18 +1842,18 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1808
1842
|
message.first_emi_date = object.first_emi_date ?? "";
|
|
1809
1843
|
message.emi_date = object.emi_date ?? "";
|
|
1810
1844
|
message.final_disbursal_amount = object.final_disbursal_amount ?? 0;
|
|
1811
|
-
message.upfront_interest = object.upfront_interest ??
|
|
1845
|
+
message.upfront_interest = object.upfront_interest ?? undefined;
|
|
1812
1846
|
message.approved_amount = object.approved_amount ?? 0;
|
|
1813
|
-
message.processing_fees = object.processing_fees ??
|
|
1814
|
-
message.gst = object.gst ??
|
|
1815
|
-
message.rate_of_interest = object.rate_of_interest ??
|
|
1847
|
+
message.processing_fees = object.processing_fees ?? undefined;
|
|
1848
|
+
message.gst = object.gst ?? undefined;
|
|
1849
|
+
message.rate_of_interest = object.rate_of_interest ?? undefined;
|
|
1816
1850
|
message.bill_amount = object.bill_amount ?? 0;
|
|
1817
|
-
message.early_foreclosure_fees = object.early_foreclosure_fees ??
|
|
1818
|
-
message.convenience_fees = object.convenience_fees ??
|
|
1819
|
-
message.total_interest_pay = object.total_interest_pay ??
|
|
1820
|
-
message.effective_annual_rate = object.effective_annual_rate ??
|
|
1821
|
-
message.transaction_rate = object.transaction_rate ??
|
|
1822
|
-
message.transaction_fee_amount = object.transaction_fee_amount ??
|
|
1851
|
+
message.early_foreclosure_fees = object.early_foreclosure_fees ?? undefined;
|
|
1852
|
+
message.convenience_fees = object.convenience_fees ?? undefined;
|
|
1853
|
+
message.total_interest_pay = object.total_interest_pay ?? undefined;
|
|
1854
|
+
message.effective_annual_rate = object.effective_annual_rate ?? undefined;
|
|
1855
|
+
message.transaction_rate = object.transaction_rate ?? undefined;
|
|
1856
|
+
message.transaction_fee_amount = object.transaction_fee_amount ?? undefined;
|
|
1823
1857
|
message.emi_date_l = object.emi_date_l ?? "";
|
|
1824
1858
|
message.emi_amount_l = object.emi_amount_l ?? "";
|
|
1825
1859
|
message.first_emi_date_l = object.first_emi_date_l ?? "";
|
|
@@ -1833,58 +1867,59 @@ exports.GetLocWithdrawlResponse = {
|
|
|
1833
1867
|
message.convenience_fees_l = object.convenience_fees_l ?? "";
|
|
1834
1868
|
message.total_interest_pay_l = object.total_interest_pay_l ?? "";
|
|
1835
1869
|
message.effective_annual_rate_l = object.effective_annual_rate_l ?? "";
|
|
1836
|
-
message.transaction_fee_bill_amount = object.transaction_fee_bill_amount ??
|
|
1837
|
-
message.processing_fee_plus_gst = object.processing_fee_plus_gst ??
|
|
1838
|
-
message.trans_fee_plus_gst = object.trans_fee_plus_gst ??
|
|
1870
|
+
message.transaction_fee_bill_amount = object.transaction_fee_bill_amount ?? undefined;
|
|
1871
|
+
message.processing_fee_plus_gst = object.processing_fee_plus_gst ?? undefined;
|
|
1872
|
+
message.trans_fee_plus_gst = object.trans_fee_plus_gst ?? undefined;
|
|
1839
1873
|
message.trans_fee_plus_gst_l = object.trans_fee_plus_gst_l ?? "";
|
|
1840
1874
|
message.processing_fee_plus_gst_l = object.processing_fee_plus_gst_l ?? "";
|
|
1841
1875
|
message.max_amount_l = object.max_amount_l ?? "";
|
|
1842
1876
|
message.credit_report_fees_l = object.credit_report_fees_l ?? "";
|
|
1843
1877
|
message.fee_and_charges_l = object.fee_and_charges_l ?? "";
|
|
1844
|
-
message.fee_and_charges = object.fee_and_charges ??
|
|
1845
|
-
message.fee_and_charges_bill = object.fee_and_charges_bill ??
|
|
1878
|
+
message.fee_and_charges = object.fee_and_charges ?? undefined;
|
|
1879
|
+
message.fee_and_charges_bill = object.fee_and_charges_bill ?? undefined;
|
|
1846
1880
|
message.add_on_l = object.add_on_l ?? "";
|
|
1847
1881
|
message.total_loan_amount_l = object.total_loan_amount_l ?? "";
|
|
1848
1882
|
message.loan_amount_l = object.loan_amount_l ?? "";
|
|
1849
1883
|
message.disbursed_amount_l = object.disbursed_amount_l ?? "";
|
|
1850
1884
|
message.total_payable_amount_l = object.total_payable_amount_l ?? "";
|
|
1851
1885
|
message.disbursal_amount_l = object.disbursal_amount_l ?? "";
|
|
1852
|
-
message.fcp_interest = object.fcp_interest ??
|
|
1886
|
+
message.fcp_interest = object.fcp_interest ?? undefined;
|
|
1853
1887
|
message.number_of_emi_l = object.number_of_emi_l ?? "";
|
|
1854
1888
|
message.first_emi_amt_l = object.first_emi_amt_l ?? "";
|
|
1855
1889
|
message.subsequent_emi_l = object.subsequent_emi_l ?? "";
|
|
1856
1890
|
message.effective_roi_l = object.effective_roi_l ?? "";
|
|
1857
|
-
message.effective_roi = object.effective_roi ??
|
|
1891
|
+
message.effective_roi = object.effective_roi ?? undefined;
|
|
1858
1892
|
message.effective_annual_roi_l = object.effective_annual_roi_l ?? "";
|
|
1859
|
-
message.effective_annual_roi = object.effective_annual_roi ??
|
|
1893
|
+
message.effective_annual_roi = object.effective_annual_roi ?? undefined;
|
|
1860
1894
|
message.insurance_l = object.insurance_l ?? "";
|
|
1861
1895
|
message.emi_card_description = object.emi_card_description ?? "";
|
|
1862
1896
|
message.bill_card_description = object.bill_card_description ?? "";
|
|
1863
1897
|
message.loan_id = object.loan_id ?? "";
|
|
1898
|
+
message.installment_amounts = object.installment_amounts ?? "";
|
|
1864
1899
|
message.apr_title = object.apr_title ?? "";
|
|
1865
1900
|
message.apr_value = object.apr_value ?? "";
|
|
1866
1901
|
message.apr_type = object.apr_type ?? "";
|
|
1867
|
-
message.colender_id = object.colender_id ??
|
|
1868
|
-
message.credit_line_details_sheet = object.credit_line_details_sheet ??
|
|
1869
|
-
message.Acknowledgement = object.Acknowledgement ??
|
|
1870
|
-
message.payment_undertaking = object.payment_undertaking ??
|
|
1871
|
-
message.key_fact_statement = object.key_fact_statement ??
|
|
1872
|
-
message.sanction_letter = object.sanction_letter ??
|
|
1873
|
-
message.financing_documents = object.financing_documents ??
|
|
1874
|
-
message.landers_credit_facility_form = object.landers_credit_facility_form ??
|
|
1902
|
+
message.colender_id = object.colender_id ?? undefined;
|
|
1903
|
+
message.credit_line_details_sheet = object.credit_line_details_sheet ?? undefined;
|
|
1904
|
+
message.Acknowledgement = object.Acknowledgement ?? undefined;
|
|
1905
|
+
message.payment_undertaking = object.payment_undertaking ?? undefined;
|
|
1906
|
+
message.key_fact_statement = object.key_fact_statement ?? undefined;
|
|
1907
|
+
message.sanction_letter = object.sanction_letter ?? undefined;
|
|
1908
|
+
message.financing_documents = object.financing_documents ?? undefined;
|
|
1909
|
+
message.landers_credit_facility_form = object.landers_credit_facility_form ?? undefined;
|
|
1875
1910
|
message.agreement_links = (object.agreement_links !== undefined && object.agreement_links !== null)
|
|
1876
1911
|
? exports.AgreementLinks.fromPartial(object.agreement_links)
|
|
1877
1912
|
: undefined;
|
|
1878
|
-
message.max_amount = object.max_amount ??
|
|
1879
|
-
message.credit_report_fees = object.credit_report_fees ??
|
|
1880
|
-
message.credit_report_actual_fees = object.credit_report_actual_fees ??
|
|
1881
|
-
message.plan_id = object.plan_id ??
|
|
1913
|
+
message.max_amount = object.max_amount ?? undefined;
|
|
1914
|
+
message.credit_report_fees = object.credit_report_fees ?? undefined;
|
|
1915
|
+
message.credit_report_actual_fees = object.credit_report_actual_fees ?? undefined;
|
|
1916
|
+
message.plan_id = object.plan_id ?? undefined;
|
|
1882
1917
|
message.lender_name = object.lender_name ?? undefined;
|
|
1883
|
-
message.free_loc_eligible_bank = object.free_loc_eligible_bank ??
|
|
1884
|
-
message.insurance_title = object.insurance_title ??
|
|
1918
|
+
message.free_loc_eligible_bank = object.free_loc_eligible_bank ?? undefined;
|
|
1919
|
+
message.insurance_title = object.insurance_title ?? undefined;
|
|
1885
1920
|
message.insurance_desc = object.insurance_desc?.map((e) => exports.InsuranceDesc.fromPartial(e)) || [];
|
|
1886
|
-
message.upfront_interest_description = object.upfront_interest_description ??
|
|
1887
|
-
message.txn_id = object.txn_id ??
|
|
1921
|
+
message.upfront_interest_description = object.upfront_interest_description ?? undefined;
|
|
1922
|
+
message.txn_id = object.txn_id ?? undefined;
|
|
1888
1923
|
return message;
|
|
1889
1924
|
},
|
|
1890
1925
|
};
|