@sniipwebmaster/payment-methods-client-grpcweb 25.11.7448 → 25.11.7464
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 +31 -1
- package/package.json +1 -1
|
@@ -9397,7 +9397,8 @@ proto.sniippaymentmethodsserviceapi.ColourScheme.toObject = function(includeInst
|
|
|
9397
9397
|
isdark: jspb.Message.getBooleanFieldWithDefault(msg, 6, false),
|
|
9398
9398
|
bankaccountimageurl: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
9399
9399
|
creditcardimageurl: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
9400
|
-
groupname: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
9400
|
+
groupname: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
9401
|
+
paytobankaccountimageurl: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
9401
9402
|
};
|
|
9402
9403
|
|
|
9403
9404
|
if (includeInstance) {
|
|
@@ -9470,6 +9471,10 @@ proto.sniippaymentmethodsserviceapi.ColourScheme.deserializeBinaryFromReader = f
|
|
|
9470
9471
|
var value = /** @type {string} */ (reader.readString());
|
|
9471
9472
|
msg.setGroupname(value);
|
|
9472
9473
|
break;
|
|
9474
|
+
case 10:
|
|
9475
|
+
var value = /** @type {string} */ (reader.readString());
|
|
9476
|
+
msg.setPaytobankaccountimageurl(value);
|
|
9477
|
+
break;
|
|
9473
9478
|
default:
|
|
9474
9479
|
reader.skipField();
|
|
9475
9480
|
break;
|
|
@@ -9562,6 +9567,13 @@ proto.sniippaymentmethodsserviceapi.ColourScheme.serializeBinaryToWriter = funct
|
|
|
9562
9567
|
f
|
|
9563
9568
|
);
|
|
9564
9569
|
}
|
|
9570
|
+
f = message.getPaytobankaccountimageurl();
|
|
9571
|
+
if (f.length > 0) {
|
|
9572
|
+
writer.writeString(
|
|
9573
|
+
10,
|
|
9574
|
+
f
|
|
9575
|
+
);
|
|
9576
|
+
}
|
|
9565
9577
|
};
|
|
9566
9578
|
|
|
9567
9579
|
|
|
@@ -9727,6 +9739,24 @@ proto.sniippaymentmethodsserviceapi.ColourScheme.prototype.setGroupname = functi
|
|
|
9727
9739
|
};
|
|
9728
9740
|
|
|
9729
9741
|
|
|
9742
|
+
/**
|
|
9743
|
+
* optional string payToBankAccountImageUrl = 10;
|
|
9744
|
+
* @return {string}
|
|
9745
|
+
*/
|
|
9746
|
+
proto.sniippaymentmethodsserviceapi.ColourScheme.prototype.getPaytobankaccountimageurl = function() {
|
|
9747
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
9748
|
+
};
|
|
9749
|
+
|
|
9750
|
+
|
|
9751
|
+
/**
|
|
9752
|
+
* @param {string} value
|
|
9753
|
+
* @return {!proto.sniippaymentmethodsserviceapi.ColourScheme} returns this
|
|
9754
|
+
*/
|
|
9755
|
+
proto.sniippaymentmethodsserviceapi.ColourScheme.prototype.setPaytobankaccountimageurl = function(value) {
|
|
9756
|
+
return jspb.Message.setProto3StringField(this, 10, value);
|
|
9757
|
+
};
|
|
9758
|
+
|
|
9759
|
+
|
|
9730
9760
|
|
|
9731
9761
|
|
|
9732
9762
|
|