@sniipwebmaster/payment-methods-client-grpcweb 21.2.3044 → 21.2.3062
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
|
@@ -1907,7 +1907,8 @@ proto.sniippaymentmethodsserviceapi.ApplePayDetail.toObject = function(includeIn
|
|
|
1907
1907
|
stripetokenid: msg.getStripetokenid(),
|
|
1908
1908
|
paymentType: msg.getPaymentType(),
|
|
1909
1909
|
cardvariant: msg.getCardvariant(),
|
|
1910
|
-
stripecustomerid: msg.getStripecustomerid()
|
|
1910
|
+
stripecustomerid: msg.getStripecustomerid(),
|
|
1911
|
+
createddatetime: msg.getCreateddatetime()
|
|
1911
1912
|
};
|
|
1912
1913
|
|
|
1913
1914
|
if (includeInstance) {
|
|
@@ -1977,6 +1978,10 @@ proto.sniippaymentmethodsserviceapi.ApplePayDetail.deserializeBinaryFromReader =
|
|
|
1977
1978
|
var value = /** @type {string} */ (reader.readString());
|
|
1978
1979
|
msg.setStripecustomerid(value);
|
|
1979
1980
|
break;
|
|
1981
|
+
case 9:
|
|
1982
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1983
|
+
msg.setCreateddatetime(value);
|
|
1984
|
+
break;
|
|
1980
1985
|
default:
|
|
1981
1986
|
reader.skipField();
|
|
1982
1987
|
break;
|
|
@@ -2072,6 +2077,13 @@ proto.sniippaymentmethodsserviceapi.ApplePayDetail.prototype.serializeBinaryToWr
|
|
|
2072
2077
|
f
|
|
2073
2078
|
);
|
|
2074
2079
|
}
|
|
2080
|
+
f = this.getCreateddatetime();
|
|
2081
|
+
if (f.length > 0) {
|
|
2082
|
+
writer.writeString(
|
|
2083
|
+
9,
|
|
2084
|
+
f
|
|
2085
|
+
);
|
|
2086
|
+
}
|
|
2075
2087
|
};
|
|
2076
2088
|
|
|
2077
2089
|
|
|
@@ -2219,6 +2231,21 @@ proto.sniippaymentmethodsserviceapi.ApplePayDetail.prototype.setStripecustomerid
|
|
|
2219
2231
|
};
|
|
2220
2232
|
|
|
2221
2233
|
|
|
2234
|
+
/**
|
|
2235
|
+
* optional string createdDateTime = 9;
|
|
2236
|
+
* @return {string}
|
|
2237
|
+
*/
|
|
2238
|
+
proto.sniippaymentmethodsserviceapi.ApplePayDetail.prototype.getCreateddatetime = function() {
|
|
2239
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 9, ""));
|
|
2240
|
+
};
|
|
2241
|
+
|
|
2242
|
+
|
|
2243
|
+
/** @param {string} value */
|
|
2244
|
+
proto.sniippaymentmethodsserviceapi.ApplePayDetail.prototype.setCreateddatetime = function(value) {
|
|
2245
|
+
jspb.Message.setField(this, 9, value);
|
|
2246
|
+
};
|
|
2247
|
+
|
|
2248
|
+
|
|
2222
2249
|
|
|
2223
2250
|
/**
|
|
2224
2251
|
* Generated by JsPbCodeGenerator.
|