@sniipwebmaster/payment-methods-client-grpcweb 21.24.3969 → 21.24.3979
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
|
@@ -3752,7 +3752,8 @@ proto.sniippaymentmethodsserviceapi.ColourScheme.toObject = function(includeInst
|
|
|
3752
3752
|
isdefaultcolour: msg.getIsdefaultcolour(),
|
|
3753
3753
|
isdark: msg.getIsdark(),
|
|
3754
3754
|
bankaccountimageurl: msg.getBankaccountimageurl(),
|
|
3755
|
-
creditcardimageurl: msg.getCreditcardimageurl()
|
|
3755
|
+
creditcardimageurl: msg.getCreditcardimageurl(),
|
|
3756
|
+
groupname: msg.getGroupname()
|
|
3756
3757
|
};
|
|
3757
3758
|
|
|
3758
3759
|
if (includeInstance) {
|
|
@@ -3821,6 +3822,10 @@ proto.sniippaymentmethodsserviceapi.ColourScheme.deserializeBinaryFromReader = f
|
|
|
3821
3822
|
var value = /** @type {string} */ (reader.readString());
|
|
3822
3823
|
msg.setCreditcardimageurl(value);
|
|
3823
3824
|
break;
|
|
3825
|
+
case 9:
|
|
3826
|
+
var value = /** @type {string} */ (reader.readString());
|
|
3827
|
+
msg.setGroupname(value);
|
|
3828
|
+
break;
|
|
3824
3829
|
default:
|
|
3825
3830
|
reader.skipField();
|
|
3826
3831
|
break;
|
|
@@ -3915,6 +3920,13 @@ proto.sniippaymentmethodsserviceapi.ColourScheme.prototype.serializeBinaryToWrit
|
|
|
3915
3920
|
f
|
|
3916
3921
|
);
|
|
3917
3922
|
}
|
|
3923
|
+
f = this.getGroupname();
|
|
3924
|
+
if (f.length > 0) {
|
|
3925
|
+
writer.writeString(
|
|
3926
|
+
9,
|
|
3927
|
+
f
|
|
3928
|
+
);
|
|
3929
|
+
}
|
|
3918
3930
|
};
|
|
3919
3931
|
|
|
3920
3932
|
|
|
@@ -4051,6 +4063,21 @@ proto.sniippaymentmethodsserviceapi.ColourScheme.prototype.setCreditcardimageurl
|
|
|
4051
4063
|
};
|
|
4052
4064
|
|
|
4053
4065
|
|
|
4066
|
+
/**
|
|
4067
|
+
* optional string groupName = 9;
|
|
4068
|
+
* @return {string}
|
|
4069
|
+
*/
|
|
4070
|
+
proto.sniippaymentmethodsserviceapi.ColourScheme.prototype.getGroupname = function() {
|
|
4071
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 9, ""));
|
|
4072
|
+
};
|
|
4073
|
+
|
|
4074
|
+
|
|
4075
|
+
/** @param {string} value */
|
|
4076
|
+
proto.sniippaymentmethodsserviceapi.ColourScheme.prototype.setGroupname = function(value) {
|
|
4077
|
+
jspb.Message.setField(this, 9, value);
|
|
4078
|
+
};
|
|
4079
|
+
|
|
4080
|
+
|
|
4054
4081
|
|
|
4055
4082
|
/**
|
|
4056
4083
|
* Generated by JsPbCodeGenerator.
|