@sniipwebmaster/payment-methods-client-grpcweb 0.2.2860 → 0.2.2879
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
|
@@ -1608,7 +1608,8 @@ proto.sniippaymentmethodsserviceapi.ApplePay.toObject = function(includeInstance
|
|
|
1608
1608
|
displayname: msg.getDisplayname(),
|
|
1609
1609
|
network: msg.getNetwork(),
|
|
1610
1610
|
transactionidentifier: msg.getTransactionidentifier(),
|
|
1611
|
-
type: msg.getType()
|
|
1611
|
+
type: msg.getType(),
|
|
1612
|
+
merchantid: msg.getMerchantid()
|
|
1612
1613
|
};
|
|
1613
1614
|
|
|
1614
1615
|
if (includeInstance) {
|
|
@@ -1665,6 +1666,10 @@ proto.sniippaymentmethodsserviceapi.ApplePay.deserializeBinaryFromReader = funct
|
|
|
1665
1666
|
var value = /** @type {string} */ (reader.readString());
|
|
1666
1667
|
msg.setType(value);
|
|
1667
1668
|
break;
|
|
1669
|
+
case 6:
|
|
1670
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1671
|
+
msg.setMerchantid(value);
|
|
1672
|
+
break;
|
|
1668
1673
|
default:
|
|
1669
1674
|
reader.skipField();
|
|
1670
1675
|
break;
|
|
@@ -1738,6 +1743,13 @@ proto.sniippaymentmethodsserviceapi.ApplePay.prototype.serializeBinaryToWriter =
|
|
|
1738
1743
|
f
|
|
1739
1744
|
);
|
|
1740
1745
|
}
|
|
1746
|
+
f = this.getMerchantid();
|
|
1747
|
+
if (f.length > 0) {
|
|
1748
|
+
writer.writeString(
|
|
1749
|
+
6,
|
|
1750
|
+
f
|
|
1751
|
+
);
|
|
1752
|
+
}
|
|
1741
1753
|
};
|
|
1742
1754
|
|
|
1743
1755
|
|
|
@@ -1825,6 +1837,21 @@ proto.sniippaymentmethodsserviceapi.ApplePay.prototype.setType = function(value)
|
|
|
1825
1837
|
};
|
|
1826
1838
|
|
|
1827
1839
|
|
|
1840
|
+
/**
|
|
1841
|
+
* optional string merchantId = 6;
|
|
1842
|
+
* @return {string}
|
|
1843
|
+
*/
|
|
1844
|
+
proto.sniippaymentmethodsserviceapi.ApplePay.prototype.getMerchantid = function() {
|
|
1845
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 6, ""));
|
|
1846
|
+
};
|
|
1847
|
+
|
|
1848
|
+
|
|
1849
|
+
/** @param {string} value */
|
|
1850
|
+
proto.sniippaymentmethodsserviceapi.ApplePay.prototype.setMerchantid = function(value) {
|
|
1851
|
+
jspb.Message.setField(this, 6, value);
|
|
1852
|
+
};
|
|
1853
|
+
|
|
1854
|
+
|
|
1828
1855
|
|
|
1829
1856
|
/**
|
|
1830
1857
|
* Generated by JsPbCodeGenerator.
|