protobuf-platform 1.2.306 → 1.2.307
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/package.json +1 -1
- package/payment/payment.proto +1 -0
- package/payment/payment_pb.js +49 -1
package/package.json
CHANGED
package/payment/payment.proto
CHANGED
|
@@ -494,6 +494,7 @@ message UserWithdrawalItem {
|
|
|
494
494
|
optional string destination = 11;
|
|
495
495
|
optional string destination_type = 12;
|
|
496
496
|
optional string external_ref = 13;
|
|
497
|
+
optional string processing_type = 14;
|
|
497
498
|
}
|
|
498
499
|
message UserWithdrawalItemsResponse {
|
|
499
500
|
repeated UserWithdrawalItem items = 1;
|
package/payment/payment_pb.js
CHANGED
|
@@ -20311,7 +20311,8 @@ proto.payment.UserWithdrawalItem.toObject = function(includeInstance, msg) {
|
|
|
20311
20311
|
status: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
20312
20312
|
destination: jspb.Message.getFieldWithDefault(msg, 11, ""),
|
|
20313
20313
|
destinationType: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
20314
|
-
externalRef: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
20314
|
+
externalRef: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
20315
|
+
processingType: jspb.Message.getFieldWithDefault(msg, 14, "")
|
|
20315
20316
|
};
|
|
20316
20317
|
|
|
20317
20318
|
if (includeInstance) {
|
|
@@ -20400,6 +20401,10 @@ proto.payment.UserWithdrawalItem.deserializeBinaryFromReader = function(msg, rea
|
|
|
20400
20401
|
var value = /** @type {string} */ (reader.readString());
|
|
20401
20402
|
msg.setExternalRef(value);
|
|
20402
20403
|
break;
|
|
20404
|
+
case 14:
|
|
20405
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20406
|
+
msg.setProcessingType(value);
|
|
20407
|
+
break;
|
|
20403
20408
|
default:
|
|
20404
20409
|
reader.skipField();
|
|
20405
20410
|
break;
|
|
@@ -20520,6 +20525,13 @@ proto.payment.UserWithdrawalItem.serializeBinaryToWriter = function(message, wri
|
|
|
20520
20525
|
f
|
|
20521
20526
|
);
|
|
20522
20527
|
}
|
|
20528
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 14));
|
|
20529
|
+
if (f != null) {
|
|
20530
|
+
writer.writeString(
|
|
20531
|
+
14,
|
|
20532
|
+
f
|
|
20533
|
+
);
|
|
20534
|
+
}
|
|
20523
20535
|
};
|
|
20524
20536
|
|
|
20525
20537
|
|
|
@@ -20919,6 +20931,42 @@ proto.payment.UserWithdrawalItem.prototype.hasExternalRef = function() {
|
|
|
20919
20931
|
};
|
|
20920
20932
|
|
|
20921
20933
|
|
|
20934
|
+
/**
|
|
20935
|
+
* optional string processing_type = 14;
|
|
20936
|
+
* @return {string}
|
|
20937
|
+
*/
|
|
20938
|
+
proto.payment.UserWithdrawalItem.prototype.getProcessingType = function() {
|
|
20939
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
|
|
20940
|
+
};
|
|
20941
|
+
|
|
20942
|
+
|
|
20943
|
+
/**
|
|
20944
|
+
* @param {string} value
|
|
20945
|
+
* @return {!proto.payment.UserWithdrawalItem} returns this
|
|
20946
|
+
*/
|
|
20947
|
+
proto.payment.UserWithdrawalItem.prototype.setProcessingType = function(value) {
|
|
20948
|
+
return jspb.Message.setField(this, 14, value);
|
|
20949
|
+
};
|
|
20950
|
+
|
|
20951
|
+
|
|
20952
|
+
/**
|
|
20953
|
+
* Clears the field making it undefined.
|
|
20954
|
+
* @return {!proto.payment.UserWithdrawalItem} returns this
|
|
20955
|
+
*/
|
|
20956
|
+
proto.payment.UserWithdrawalItem.prototype.clearProcessingType = function() {
|
|
20957
|
+
return jspb.Message.setField(this, 14, undefined);
|
|
20958
|
+
};
|
|
20959
|
+
|
|
20960
|
+
|
|
20961
|
+
/**
|
|
20962
|
+
* Returns whether this field is set.
|
|
20963
|
+
* @return {boolean}
|
|
20964
|
+
*/
|
|
20965
|
+
proto.payment.UserWithdrawalItem.prototype.hasProcessingType = function() {
|
|
20966
|
+
return jspb.Message.getField(this, 14) != null;
|
|
20967
|
+
};
|
|
20968
|
+
|
|
20969
|
+
|
|
20922
20970
|
|
|
20923
20971
|
/**
|
|
20924
20972
|
* List of repeated fields within this message type.
|