@sniipwebmaster/transaction-service-client-grpcweb-ts 26.3.14097 → 26.3.14117
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.
|
@@ -2765,6 +2765,9 @@ export class PaymentDetailsBulkRequest extends jspb.Message {
|
|
|
2765
2765
|
getUsermembershipid(): number;
|
|
2766
2766
|
setUsermembershipid(value: number): PaymentDetailsBulkRequest;
|
|
2767
2767
|
|
|
2768
|
+
getIsinstalmentplan(): boolean;
|
|
2769
|
+
setIsinstalmentplan(value: boolean): PaymentDetailsBulkRequest;
|
|
2770
|
+
|
|
2768
2771
|
serializeBinary(): Uint8Array;
|
|
2769
2772
|
toObject(includeInstance?: boolean): PaymentDetailsBulkRequest.AsObject;
|
|
2770
2773
|
static toObject(includeInstance: boolean, msg: PaymentDetailsBulkRequest): PaymentDetailsBulkRequest.AsObject;
|
|
@@ -2787,6 +2790,7 @@ export namespace PaymentDetailsBulkRequest {
|
|
|
2787
2790
|
isgooglepaysurchargerequest: boolean,
|
|
2788
2791
|
bulkitemList: Array<BulkItem.AsObject>,
|
|
2789
2792
|
usermembershipid: number,
|
|
2793
|
+
isinstalmentplan: boolean,
|
|
2790
2794
|
}
|
|
2791
2795
|
|
|
2792
2796
|
export enum PaymentDetailsBulkRequestPaymentMethod {
|
|
@@ -23713,7 +23713,8 @@ proto.sniiptransactionapi.PaymentDetailsBulkRequest.toObject = function(includeI
|
|
|
23713
23713
|
isgooglepaysurchargerequest: jspb.Message.getBooleanFieldWithDefault(msg, 11, false),
|
|
23714
23714
|
bulkitemList: jspb.Message.toObjectList(msg.getBulkitemList(),
|
|
23715
23715
|
proto.sniiptransactionapi.BulkItem.toObject, includeInstance),
|
|
23716
|
-
usermembershipid: jspb.Message.getFieldWithDefault(msg, 14, 0)
|
|
23716
|
+
usermembershipid: jspb.Message.getFieldWithDefault(msg, 14, 0),
|
|
23717
|
+
isinstalmentplan: jspb.Message.getBooleanFieldWithDefault(msg, 15, false)
|
|
23717
23718
|
};
|
|
23718
23719
|
|
|
23719
23720
|
if (includeInstance) {
|
|
@@ -23799,6 +23800,10 @@ proto.sniiptransactionapi.PaymentDetailsBulkRequest.deserializeBinaryFromReader
|
|
|
23799
23800
|
var value = /** @type {number} */ (reader.readInt64());
|
|
23800
23801
|
msg.setUsermembershipid(value);
|
|
23801
23802
|
break;
|
|
23803
|
+
case 15:
|
|
23804
|
+
var value = /** @type {boolean} */ (reader.readBool());
|
|
23805
|
+
msg.setIsinstalmentplan(value);
|
|
23806
|
+
break;
|
|
23802
23807
|
default:
|
|
23803
23808
|
reader.skipField();
|
|
23804
23809
|
break;
|
|
@@ -23913,6 +23918,13 @@ proto.sniiptransactionapi.PaymentDetailsBulkRequest.serializeBinaryToWriter = fu
|
|
|
23913
23918
|
f
|
|
23914
23919
|
);
|
|
23915
23920
|
}
|
|
23921
|
+
f = message.getIsinstalmentplan();
|
|
23922
|
+
if (f) {
|
|
23923
|
+
writer.writeBool(
|
|
23924
|
+
15,
|
|
23925
|
+
f
|
|
23926
|
+
);
|
|
23927
|
+
}
|
|
23916
23928
|
};
|
|
23917
23929
|
|
|
23918
23930
|
|
|
@@ -24166,6 +24178,24 @@ proto.sniiptransactionapi.PaymentDetailsBulkRequest.prototype.setUsermembershipi
|
|
|
24166
24178
|
};
|
|
24167
24179
|
|
|
24168
24180
|
|
|
24181
|
+
/**
|
|
24182
|
+
* optional bool isInstalmentPlan = 15;
|
|
24183
|
+
* @return {boolean}
|
|
24184
|
+
*/
|
|
24185
|
+
proto.sniiptransactionapi.PaymentDetailsBulkRequest.prototype.getIsinstalmentplan = function() {
|
|
24186
|
+
return /** @type {boolean} */ (jspb.Message.getBooleanFieldWithDefault(this, 15, false));
|
|
24187
|
+
};
|
|
24188
|
+
|
|
24189
|
+
|
|
24190
|
+
/**
|
|
24191
|
+
* @param {boolean} value
|
|
24192
|
+
* @return {!proto.sniiptransactionapi.PaymentDetailsBulkRequest} returns this
|
|
24193
|
+
*/
|
|
24194
|
+
proto.sniiptransactionapi.PaymentDetailsBulkRequest.prototype.setIsinstalmentplan = function(value) {
|
|
24195
|
+
return jspb.Message.setProto3BooleanField(this, 15, value);
|
|
24196
|
+
};
|
|
24197
|
+
|
|
24198
|
+
|
|
24169
24199
|
|
|
24170
24200
|
/**
|
|
24171
24201
|
* List of repeated fields within this message type.
|