@sniipwebmaster/transaction-service-client-grpcweb 0.2.3935 → 0.2.3946
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
|
@@ -7082,7 +7082,8 @@ proto.sniiptransactionapi.PayBillInternalResponse.prototype.toObject = function(
|
|
|
7082
7082
|
proto.sniiptransactionapi.PayBillInternalResponse.toObject = function(includeInstance, msg) {
|
|
7083
7083
|
var f, obj = {
|
|
7084
7084
|
transactionid: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
7085
|
-
responsecode: (f = msg.getResponsecode()) && proto.sniiptransactionapi.ResponseCode.toObject(includeInstance, f)
|
|
7085
|
+
responsecode: (f = msg.getResponsecode()) && proto.sniiptransactionapi.ResponseCode.toObject(includeInstance, f),
|
|
7086
|
+
transactionstatus: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
7086
7087
|
};
|
|
7087
7088
|
|
|
7088
7089
|
if (includeInstance) {
|
|
@@ -7128,6 +7129,10 @@ proto.sniiptransactionapi.PayBillInternalResponse.deserializeBinaryFromReader =
|
|
|
7128
7129
|
reader.readMessage(value,proto.sniiptransactionapi.ResponseCode.deserializeBinaryFromReader);
|
|
7129
7130
|
msg.setResponsecode(value);
|
|
7130
7131
|
break;
|
|
7132
|
+
case 3:
|
|
7133
|
+
var value = /** @type {string} */ (reader.readString());
|
|
7134
|
+
msg.setTransactionstatus(value);
|
|
7135
|
+
break;
|
|
7131
7136
|
default:
|
|
7132
7137
|
reader.skipField();
|
|
7133
7138
|
break;
|
|
@@ -7172,6 +7177,13 @@ proto.sniiptransactionapi.PayBillInternalResponse.serializeBinaryToWriter = func
|
|
|
7172
7177
|
proto.sniiptransactionapi.ResponseCode.serializeBinaryToWriter
|
|
7173
7178
|
);
|
|
7174
7179
|
}
|
|
7180
|
+
f = message.getTransactionstatus();
|
|
7181
|
+
if (f.length > 0) {
|
|
7182
|
+
writer.writeString(
|
|
7183
|
+
3,
|
|
7184
|
+
f
|
|
7185
|
+
);
|
|
7186
|
+
}
|
|
7175
7187
|
};
|
|
7176
7188
|
|
|
7177
7189
|
|
|
@@ -7220,6 +7232,21 @@ proto.sniiptransactionapi.PayBillInternalResponse.prototype.hasResponsecode = fu
|
|
|
7220
7232
|
};
|
|
7221
7233
|
|
|
7222
7234
|
|
|
7235
|
+
/**
|
|
7236
|
+
* optional string transactionStatus = 3;
|
|
7237
|
+
* @return {string}
|
|
7238
|
+
*/
|
|
7239
|
+
proto.sniiptransactionapi.PayBillInternalResponse.prototype.getTransactionstatus = function() {
|
|
7240
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
|
7241
|
+
};
|
|
7242
|
+
|
|
7243
|
+
|
|
7244
|
+
/** @param {string} value */
|
|
7245
|
+
proto.sniiptransactionapi.PayBillInternalResponse.prototype.setTransactionstatus = function(value) {
|
|
7246
|
+
jspb.Message.setProto3StringField(this, 3, value);
|
|
7247
|
+
};
|
|
7248
|
+
|
|
7249
|
+
|
|
7223
7250
|
|
|
7224
7251
|
/**
|
|
7225
7252
|
* Generated by JsPbCodeGenerator.
|