@sniipwebmaster/biller-service-client-grpcweb 23.1.5345 → 23.1.5355
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 +56 -29
- package/package.json +1 -1
|
@@ -14852,11 +14852,12 @@ proto.sniipbillerapi.BusinessBillerReference.toObject = function(includeInstance
|
|
|
14852
14852
|
businessbillerrefid: msg.getBusinessbillerrefid(),
|
|
14853
14853
|
paymentprocessor: msg.getPaymentprocessor(),
|
|
14854
14854
|
billerid: msg.getBillerid(),
|
|
14855
|
+
billercode: msg.getBillercode(),
|
|
14855
14856
|
billerexternalid: msg.getBillerexternalid(),
|
|
14856
14857
|
userid: msg.getUserid(),
|
|
14857
14858
|
deleteddatetime: msg.getDeleteddatetime(),
|
|
14858
14859
|
markpaymentas: msg.getMarkpaymentas(),
|
|
14859
|
-
|
|
14860
|
+
modifieddatetime: msg.getModifieddatetime()
|
|
14860
14861
|
};
|
|
14861
14862
|
|
|
14862
14863
|
if (includeInstance) {
|
|
@@ -14907,23 +14908,27 @@ proto.sniipbillerapi.BusinessBillerReference.deserializeBinaryFromReader = funct
|
|
|
14907
14908
|
break;
|
|
14908
14909
|
case 4:
|
|
14909
14910
|
var value = /** @type {string} */ (reader.readString());
|
|
14910
|
-
msg.
|
|
14911
|
+
msg.setBillercode(value);
|
|
14911
14912
|
break;
|
|
14912
14913
|
case 5:
|
|
14914
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14915
|
+
msg.setBillerexternalid(value);
|
|
14916
|
+
break;
|
|
14917
|
+
case 6:
|
|
14913
14918
|
var value = /** @type {number} */ (reader.readInt64());
|
|
14914
14919
|
msg.setUserid(value);
|
|
14915
14920
|
break;
|
|
14916
|
-
case
|
|
14921
|
+
case 7:
|
|
14917
14922
|
var value = /** @type {string} */ (reader.readString());
|
|
14918
14923
|
msg.setDeleteddatetime(value);
|
|
14919
14924
|
break;
|
|
14920
|
-
case
|
|
14925
|
+
case 8:
|
|
14921
14926
|
var value = /** @type {!proto.sniipbillerapi.BusinessBillerReference.BusinessBillerReferenceMarkPaymentAs} */ (reader.readEnum());
|
|
14922
14927
|
msg.setMarkpaymentas(value);
|
|
14923
14928
|
break;
|
|
14924
|
-
case
|
|
14929
|
+
case 9:
|
|
14925
14930
|
var value = /** @type {string} */ (reader.readString());
|
|
14926
|
-
msg.
|
|
14931
|
+
msg.setModifieddatetime(value);
|
|
14927
14932
|
break;
|
|
14928
14933
|
default:
|
|
14929
14934
|
reader.skipField();
|
|
@@ -14984,38 +14989,45 @@ proto.sniipbillerapi.BusinessBillerReference.prototype.serializeBinaryToWriter =
|
|
|
14984
14989
|
f
|
|
14985
14990
|
);
|
|
14986
14991
|
}
|
|
14987
|
-
f = this.
|
|
14992
|
+
f = this.getBillercode();
|
|
14988
14993
|
if (f.length > 0) {
|
|
14989
14994
|
writer.writeString(
|
|
14990
14995
|
4,
|
|
14991
14996
|
f
|
|
14992
14997
|
);
|
|
14993
14998
|
}
|
|
14999
|
+
f = this.getBillerexternalid();
|
|
15000
|
+
if (f.length > 0) {
|
|
15001
|
+
writer.writeString(
|
|
15002
|
+
5,
|
|
15003
|
+
f
|
|
15004
|
+
);
|
|
15005
|
+
}
|
|
14994
15006
|
f = this.getUserid();
|
|
14995
15007
|
if (f !== 0) {
|
|
14996
15008
|
writer.writeInt64(
|
|
14997
|
-
|
|
15009
|
+
6,
|
|
14998
15010
|
f
|
|
14999
15011
|
);
|
|
15000
15012
|
}
|
|
15001
15013
|
f = this.getDeleteddatetime();
|
|
15002
15014
|
if (f.length > 0) {
|
|
15003
15015
|
writer.writeString(
|
|
15004
|
-
|
|
15016
|
+
7,
|
|
15005
15017
|
f
|
|
15006
15018
|
);
|
|
15007
15019
|
}
|
|
15008
15020
|
f = this.getMarkpaymentas();
|
|
15009
15021
|
if (f !== 0.0) {
|
|
15010
15022
|
writer.writeEnum(
|
|
15011
|
-
|
|
15023
|
+
8,
|
|
15012
15024
|
f
|
|
15013
15025
|
);
|
|
15014
15026
|
}
|
|
15015
|
-
f = this.
|
|
15027
|
+
f = this.getModifieddatetime();
|
|
15016
15028
|
if (f.length > 0) {
|
|
15017
15029
|
writer.writeString(
|
|
15018
|
-
|
|
15030
|
+
9,
|
|
15019
15031
|
f
|
|
15020
15032
|
);
|
|
15021
15033
|
}
|
|
@@ -15077,77 +15089,92 @@ proto.sniipbillerapi.BusinessBillerReference.prototype.setBillerid = function(va
|
|
|
15077
15089
|
|
|
15078
15090
|
|
|
15079
15091
|
/**
|
|
15080
|
-
* optional string
|
|
15092
|
+
* optional string billerCode = 4;
|
|
15093
|
+
* @return {string}
|
|
15094
|
+
*/
|
|
15095
|
+
proto.sniipbillerapi.BusinessBillerReference.prototype.getBillercode = function() {
|
|
15096
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 4, ""));
|
|
15097
|
+
};
|
|
15098
|
+
|
|
15099
|
+
|
|
15100
|
+
/** @param {string} value */
|
|
15101
|
+
proto.sniipbillerapi.BusinessBillerReference.prototype.setBillercode = function(value) {
|
|
15102
|
+
jspb.Message.setField(this, 4, value);
|
|
15103
|
+
};
|
|
15104
|
+
|
|
15105
|
+
|
|
15106
|
+
/**
|
|
15107
|
+
* optional string billerExternalId = 5;
|
|
15081
15108
|
* @return {string}
|
|
15082
15109
|
*/
|
|
15083
15110
|
proto.sniipbillerapi.BusinessBillerReference.prototype.getBillerexternalid = function() {
|
|
15084
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this,
|
|
15111
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 5, ""));
|
|
15085
15112
|
};
|
|
15086
15113
|
|
|
15087
15114
|
|
|
15088
15115
|
/** @param {string} value */
|
|
15089
15116
|
proto.sniipbillerapi.BusinessBillerReference.prototype.setBillerexternalid = function(value) {
|
|
15090
|
-
jspb.Message.setField(this,
|
|
15117
|
+
jspb.Message.setField(this, 5, value);
|
|
15091
15118
|
};
|
|
15092
15119
|
|
|
15093
15120
|
|
|
15094
15121
|
/**
|
|
15095
|
-
* optional int64 userId =
|
|
15122
|
+
* optional int64 userId = 6;
|
|
15096
15123
|
* @return {number}
|
|
15097
15124
|
*/
|
|
15098
15125
|
proto.sniipbillerapi.BusinessBillerReference.prototype.getUserid = function() {
|
|
15099
|
-
return /** @type {number} */ (jspb.Message.getFieldProto3(this,
|
|
15126
|
+
return /** @type {number} */ (jspb.Message.getFieldProto3(this, 6, 0));
|
|
15100
15127
|
};
|
|
15101
15128
|
|
|
15102
15129
|
|
|
15103
15130
|
/** @param {number} value */
|
|
15104
15131
|
proto.sniipbillerapi.BusinessBillerReference.prototype.setUserid = function(value) {
|
|
15105
|
-
jspb.Message.setField(this,
|
|
15132
|
+
jspb.Message.setField(this, 6, value);
|
|
15106
15133
|
};
|
|
15107
15134
|
|
|
15108
15135
|
|
|
15109
15136
|
/**
|
|
15110
|
-
* optional string deletedDateTime =
|
|
15137
|
+
* optional string deletedDateTime = 7;
|
|
15111
15138
|
* @return {string}
|
|
15112
15139
|
*/
|
|
15113
15140
|
proto.sniipbillerapi.BusinessBillerReference.prototype.getDeleteddatetime = function() {
|
|
15114
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this,
|
|
15141
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 7, ""));
|
|
15115
15142
|
};
|
|
15116
15143
|
|
|
15117
15144
|
|
|
15118
15145
|
/** @param {string} value */
|
|
15119
15146
|
proto.sniipbillerapi.BusinessBillerReference.prototype.setDeleteddatetime = function(value) {
|
|
15120
|
-
jspb.Message.setField(this,
|
|
15147
|
+
jspb.Message.setField(this, 7, value);
|
|
15121
15148
|
};
|
|
15122
15149
|
|
|
15123
15150
|
|
|
15124
15151
|
/**
|
|
15125
|
-
* optional BusinessBillerReferenceMarkPaymentAs markPaymentAs =
|
|
15152
|
+
* optional BusinessBillerReferenceMarkPaymentAs markPaymentAs = 8;
|
|
15126
15153
|
* @return {!proto.sniipbillerapi.BusinessBillerReference.BusinessBillerReferenceMarkPaymentAs}
|
|
15127
15154
|
*/
|
|
15128
15155
|
proto.sniipbillerapi.BusinessBillerReference.prototype.getMarkpaymentas = function() {
|
|
15129
|
-
return /** @type {!proto.sniipbillerapi.BusinessBillerReference.BusinessBillerReferenceMarkPaymentAs} */ (jspb.Message.getFieldProto3(this,
|
|
15156
|
+
return /** @type {!proto.sniipbillerapi.BusinessBillerReference.BusinessBillerReferenceMarkPaymentAs} */ (jspb.Message.getFieldProto3(this, 8, 0));
|
|
15130
15157
|
};
|
|
15131
15158
|
|
|
15132
15159
|
|
|
15133
15160
|
/** @param {!proto.sniipbillerapi.BusinessBillerReference.BusinessBillerReferenceMarkPaymentAs} value */
|
|
15134
15161
|
proto.sniipbillerapi.BusinessBillerReference.prototype.setMarkpaymentas = function(value) {
|
|
15135
|
-
jspb.Message.setField(this,
|
|
15162
|
+
jspb.Message.setField(this, 8, value);
|
|
15136
15163
|
};
|
|
15137
15164
|
|
|
15138
15165
|
|
|
15139
15166
|
/**
|
|
15140
|
-
* optional string
|
|
15167
|
+
* optional string modifiedDateTime = 9;
|
|
15141
15168
|
* @return {string}
|
|
15142
15169
|
*/
|
|
15143
|
-
proto.sniipbillerapi.BusinessBillerReference.prototype.
|
|
15144
|
-
return /** @type {string} */ (jspb.Message.getFieldProto3(this,
|
|
15170
|
+
proto.sniipbillerapi.BusinessBillerReference.prototype.getModifieddatetime = function() {
|
|
15171
|
+
return /** @type {string} */ (jspb.Message.getFieldProto3(this, 9, ""));
|
|
15145
15172
|
};
|
|
15146
15173
|
|
|
15147
15174
|
|
|
15148
15175
|
/** @param {string} value */
|
|
15149
|
-
proto.sniipbillerapi.BusinessBillerReference.prototype.
|
|
15150
|
-
jspb.Message.setField(this,
|
|
15176
|
+
proto.sniipbillerapi.BusinessBillerReference.prototype.setModifieddatetime = function(value) {
|
|
15177
|
+
jspb.Message.setField(this, 9, value);
|
|
15151
15178
|
};
|
|
15152
15179
|
|
|
15153
15180
|
|