@sniipwebmaster/payment-methods-client-grpcweb 0.2.2774 → 0.2.2792
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
|
@@ -1877,7 +1877,8 @@ proto.sniippaymentmethodsserviceapi.ApplePayDetail.toObject = function(includeIn
|
|
|
1877
1877
|
stripecardid: msg.getStripecardid(),
|
|
1878
1878
|
stripetokenid: msg.getStripetokenid(),
|
|
1879
1879
|
paymentType: msg.getPaymentType(),
|
|
1880
|
-
cardvariant: msg.getCardvariant()
|
|
1880
|
+
cardvariant: msg.getCardvariant(),
|
|
1881
|
+
stripecustomerid: msg.getStripecustomerid()
|
|
1881
1882
|
};
|
|
1882
1883
|
|
|
1883
1884
|
if (includeInstance) {
|
|
@@ -1943,6 +1944,10 @@ proto.sniippaymentmethodsserviceapi.ApplePayDetail.deserializeBinaryFromReader =
|
|
|
1943
1944
|
var value = /** @type {string} */ (reader.readString());
|
|
1944
1945
|
msg.setCardvariant(value);
|
|
1945
1946
|
break;
|
|
1947
|
+
case 8:
|
|
1948
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1949
|
+
msg.setStripecustomerid(value);
|
|
1950
|
+
break;
|
|
1946
1951
|
default:
|
|
1947
1952
|
reader.skipField();
|
|
1948
1953
|
break;
|
|
@@ -2031,6 +2036,13 @@ proto.sniippaymentmethodsserviceapi.ApplePayDetail.prototype.serializeBinaryToWr
|
|
|
2031
2036
|
f
|
|
2032
2037
|
);
|
|
2033
2038
|
}
|
|
2039
|
+
f = this.getStripecustomerid();
|
|
2040
|
+
if (f.length > 0) {
|
|
2041
|
+
writer.writeString(
|
|
2042
|
+
8,
|
|
2043
|
+
f
|
|
2044
|
+
);
|
|
2045
|
+
}
|
|
2034
2046
|
};
|
|
2035
2047
|
|
|
2036
2048
|
|
|
@@ -2163,6 +2175,21 @@ proto.sniippaymentmethodsserviceapi.ApplePayDetail.prototype.setCardvariant = fu
|
|
|
2163
2175
|
};
|
|
2164
2176
|
|
|
2165
2177
|
|
|
2178
|
+
/**
|
|
2179
|
+
* optional string stripeCustomerId = 8;
|
|
2180
|
+
* @return {string}
|
|
2181
|
+
*/
|
|
2182
|
+
proto.sniippaymentmethodsserviceapi.ApplePayDetail.prototype.getStripecustomerid = function() {
|
|
2183
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 8, ""));
|
|
2184
|
+
};
|
|
2185
|
+
|
|
2186
|
+
|
|
2187
|
+
/** @param {string} value */
|
|
2188
|
+
proto.sniippaymentmethodsserviceapi.ApplePayDetail.prototype.setStripecustomerid = function(value) {
|
|
2189
|
+
jspb.Message.setField(this, 8, value);
|
|
2190
|
+
};
|
|
2191
|
+
|
|
2192
|
+
|
|
2166
2193
|
|
|
2167
2194
|
/**
|
|
2168
2195
|
* Generated by JsPbCodeGenerator.
|