@sniipwebmaster/payment-methods-client-grpcweb 26.4.8285 → 26.4.8294
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
|
@@ -15090,7 +15090,8 @@ proto.sniippaymentmethodsserviceapi.GooglePayDetail.toObject = function(includeI
|
|
|
15090
15090
|
iscryptocomcard: jspb.Message.getBooleanFieldWithDefault(msg, 16, false),
|
|
15091
15091
|
iscorporate: jspb.Message.getBooleanFieldWithDefault(msg, 17, false),
|
|
15092
15092
|
issmallbusiness: jspb.Message.getBooleanFieldWithDefault(msg, 18, false),
|
|
15093
|
-
cardsubtypecode: jspb.Message.getFieldWithDefault(msg, 19, "")
|
|
15093
|
+
cardsubtypecode: jspb.Message.getFieldWithDefault(msg, 19, ""),
|
|
15094
|
+
checkouttokenid: jspb.Message.getFieldWithDefault(msg, 20, "")
|
|
15094
15095
|
};
|
|
15095
15096
|
|
|
15096
15097
|
if (includeInstance) {
|
|
@@ -15204,6 +15205,10 @@ proto.sniippaymentmethodsserviceapi.GooglePayDetail.deserializeBinaryFromReader
|
|
|
15204
15205
|
var value = /** @type {string} */ (reader.readString());
|
|
15205
15206
|
msg.setCardsubtypecode(value);
|
|
15206
15207
|
break;
|
|
15208
|
+
case 20:
|
|
15209
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15210
|
+
msg.setCheckouttokenid(value);
|
|
15211
|
+
break;
|
|
15207
15212
|
default:
|
|
15208
15213
|
reader.skipField();
|
|
15209
15214
|
break;
|
|
@@ -15367,6 +15372,13 @@ proto.sniippaymentmethodsserviceapi.GooglePayDetail.serializeBinaryToWriter = fu
|
|
|
15367
15372
|
f
|
|
15368
15373
|
);
|
|
15369
15374
|
}
|
|
15375
|
+
f = message.getCheckouttokenid();
|
|
15376
|
+
if (f.length > 0) {
|
|
15377
|
+
writer.writeString(
|
|
15378
|
+
20,
|
|
15379
|
+
f
|
|
15380
|
+
);
|
|
15381
|
+
}
|
|
15370
15382
|
};
|
|
15371
15383
|
|
|
15372
15384
|
|
|
@@ -15731,6 +15743,24 @@ proto.sniippaymentmethodsserviceapi.GooglePayDetail.prototype.setCardsubtypecode
|
|
|
15731
15743
|
};
|
|
15732
15744
|
|
|
15733
15745
|
|
|
15746
|
+
/**
|
|
15747
|
+
* optional string checkoutTokenId = 20;
|
|
15748
|
+
* @return {string}
|
|
15749
|
+
*/
|
|
15750
|
+
proto.sniippaymentmethodsserviceapi.GooglePayDetail.prototype.getCheckouttokenid = function() {
|
|
15751
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 20, ""));
|
|
15752
|
+
};
|
|
15753
|
+
|
|
15754
|
+
|
|
15755
|
+
/**
|
|
15756
|
+
* @param {string} value
|
|
15757
|
+
* @return {!proto.sniippaymentmethodsserviceapi.GooglePayDetail} returns this
|
|
15758
|
+
*/
|
|
15759
|
+
proto.sniippaymentmethodsserviceapi.GooglePayDetail.prototype.setCheckouttokenid = function(value) {
|
|
15760
|
+
return jspb.Message.setProto3StringField(this, 20, value);
|
|
15761
|
+
};
|
|
15762
|
+
|
|
15763
|
+
|
|
15734
15764
|
|
|
15735
15765
|
|
|
15736
15766
|
|