@sniipwebmaster/payment-methods-client-grpcweb 21.22.3827 → 21.22.3845
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/dependancies/service_pb.js +28 -1
- package/package.json +1 -1
|
@@ -2378,7 +2378,8 @@ proto.sniippaymentmethodsserviceapi.BankAccount.toObject = function(includeInsta
|
|
|
2378
2378
|
isverified: msg.getIsverified(),
|
|
2379
2379
|
bankname: msg.getBankname(),
|
|
2380
2380
|
colourscheme: (f = msg.getColourscheme()) && proto.sniippaymentmethodsserviceapi.ColourScheme.toObject(includeInstance, f),
|
|
2381
|
-
isverifyexpired: msg.getIsverifyexpired()
|
|
2381
|
+
isverifyexpired: msg.getIsverifyexpired(),
|
|
2382
|
+
contactid: msg.getContactid()
|
|
2382
2383
|
};
|
|
2383
2384
|
|
|
2384
2385
|
if (includeInstance) {
|
|
@@ -2452,6 +2453,10 @@ proto.sniippaymentmethodsserviceapi.BankAccount.deserializeBinaryFromReader = fu
|
|
|
2452
2453
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
2453
2454
|
msg.setIsverifyexpired(value);
|
|
2454
2455
|
break;
|
|
2456
|
+
case 11:
|
|
2457
|
+
var value = /** @type {string} */ (reader.readString());
|
|
2458
|
+
msg.setContactid(value);
|
|
2459
|
+
break;
|
|
2455
2460
|
default:
|
|
2456
2461
|
reader.skipField();
|
|
2457
2462
|
break;
|
|
@@ -2554,6 +2559,13 @@ proto.sniippaymentmethodsserviceapi.BankAccount.prototype.serializeBinaryToWrite
|
|
|
2554
2559
|
f
|
|
2555
2560
|
);
|
|
2556
2561
|
}
|
|
2562
|
+
f = this.getContactid();
|
|
2563
|
+
if (f.length > 0) {
|
|
2564
|
+
writer.writeString(
|
|
2565
|
+
11,
|
|
2566
|
+
f
|
|
2567
|
+
);
|
|
2568
|
+
}
|
|
2557
2569
|
};
|
|
2558
2570
|
|
|
2559
2571
|
|
|
@@ -2720,6 +2732,21 @@ proto.sniippaymentmethodsserviceapi.BankAccount.prototype.setIsverifyexpired = f
|
|
|
2720
2732
|
};
|
|
2721
2733
|
|
|
2722
2734
|
|
|
2735
|
+
/**
|
|
2736
|
+
* optional string contactId = 11;
|
|
2737
|
+
* @return {string}
|
|
2738
|
+
*/
|
|
2739
|
+
proto.sniippaymentmethodsserviceapi.BankAccount.prototype.getContactid = function() {
|
|
2740
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 11, ""));
|
|
2741
|
+
};
|
|
2742
|
+
|
|
2743
|
+
|
|
2744
|
+
/** @param {string} value */
|
|
2745
|
+
proto.sniippaymentmethodsserviceapi.BankAccount.prototype.setContactid = function(value) {
|
|
2746
|
+
jspb.Message.setField(this, 11, value);
|
|
2747
|
+
};
|
|
2748
|
+
|
|
2749
|
+
|
|
2723
2750
|
|
|
2724
2751
|
/**
|
|
2725
2752
|
* Generated by JsPbCodeGenerator.
|