@sniipwebmaster/transaction-service-client-grpcweb-ts 25.5.12591 → 25.5.12600
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.
|
@@ -3141,6 +3141,9 @@ export class PostPayBillResponse extends jspb.Message {
|
|
|
3141
3141
|
hasSwitchandsavedetail(): boolean;
|
|
3142
3142
|
clearSwitchandsavedetail(): PostPayBillResponse;
|
|
3143
3143
|
|
|
3144
|
+
getActionurlbase64image(): string;
|
|
3145
|
+
setActionurlbase64image(value: string): PostPayBillResponse;
|
|
3146
|
+
|
|
3144
3147
|
serializeBinary(): Uint8Array;
|
|
3145
3148
|
toObject(includeInstance?: boolean): PostPayBillResponse.AsObject;
|
|
3146
3149
|
static toObject(includeInstance: boolean, msg: PostPayBillResponse): PostPayBillResponse.AsObject;
|
|
@@ -3159,6 +3162,7 @@ export namespace PostPayBillResponse {
|
|
|
3159
3162
|
actionurl: string,
|
|
3160
3163
|
showpopupdetails: boolean,
|
|
3161
3164
|
switchandsavedetail?: SwitchAndSaveDetail.AsObject,
|
|
3165
|
+
actionurlbase64image: string,
|
|
3162
3166
|
}
|
|
3163
3167
|
}
|
|
3164
3168
|
|
|
@@ -26134,7 +26134,8 @@ proto.sniiptransactionapi.PostPayBillResponse.toObject = function(includeInstanc
|
|
|
26134
26134
|
showemailverificationmsg: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
|
|
26135
26135
|
actionurl: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
26136
26136
|
showpopupdetails: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
|
|
26137
|
-
switchandsavedetail: (f = msg.getSwitchandsavedetail()) && proto.sniiptransactionapi.SwitchAndSaveDetail.toObject(includeInstance, f)
|
|
26137
|
+
switchandsavedetail: (f = msg.getSwitchandsavedetail()) && proto.sniiptransactionapi.SwitchAndSaveDetail.toObject(includeInstance, f),
|
|
26138
|
+
actionurlbase64image: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
26138
26139
|
};
|
|
26139
26140
|
|
|
26140
26141
|
if (includeInstance) {
|
|
@@ -26207,6 +26208,10 @@ proto.sniiptransactionapi.PostPayBillResponse.deserializeBinaryFromReader = func
|
|
|
26207
26208
|
reader.readMessage(value,proto.sniiptransactionapi.SwitchAndSaveDetail.deserializeBinaryFromReader);
|
|
26208
26209
|
msg.setSwitchandsavedetail(value);
|
|
26209
26210
|
break;
|
|
26211
|
+
case 9:
|
|
26212
|
+
var value = /** @type {string} */ (reader.readString());
|
|
26213
|
+
msg.setActionurlbase64image(value);
|
|
26214
|
+
break;
|
|
26210
26215
|
default:
|
|
26211
26216
|
reader.skipField();
|
|
26212
26217
|
break;
|
|
@@ -26296,6 +26301,13 @@ proto.sniiptransactionapi.PostPayBillResponse.serializeBinaryToWriter = function
|
|
|
26296
26301
|
proto.sniiptransactionapi.SwitchAndSaveDetail.serializeBinaryToWriter
|
|
26297
26302
|
);
|
|
26298
26303
|
}
|
|
26304
|
+
f = message.getActionurlbase64image();
|
|
26305
|
+
if (f.length > 0) {
|
|
26306
|
+
writer.writeString(
|
|
26307
|
+
9,
|
|
26308
|
+
f
|
|
26309
|
+
);
|
|
26310
|
+
}
|
|
26299
26311
|
};
|
|
26300
26312
|
|
|
26301
26313
|
|
|
@@ -26519,6 +26531,24 @@ proto.sniiptransactionapi.PostPayBillResponse.prototype.hasSwitchandsavedetail =
|
|
|
26519
26531
|
};
|
|
26520
26532
|
|
|
26521
26533
|
|
|
26534
|
+
/**
|
|
26535
|
+
* optional string actionUrlBase64Image = 9;
|
|
26536
|
+
* @return {string}
|
|
26537
|
+
*/
|
|
26538
|
+
proto.sniiptransactionapi.PostPayBillResponse.prototype.getActionurlbase64image = function() {
|
|
26539
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
26540
|
+
};
|
|
26541
|
+
|
|
26542
|
+
|
|
26543
|
+
/**
|
|
26544
|
+
* @param {string} value
|
|
26545
|
+
* @return {!proto.sniiptransactionapi.PostPayBillResponse} returns this
|
|
26546
|
+
*/
|
|
26547
|
+
proto.sniiptransactionapi.PostPayBillResponse.prototype.setActionurlbase64image = function(value) {
|
|
26548
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
26549
|
+
};
|
|
26550
|
+
|
|
26551
|
+
|
|
26522
26552
|
|
|
26523
26553
|
|
|
26524
26554
|
|