protobuf-platform 1.2.365 → 1.2.366
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
package/payment/payment_pb.js
CHANGED
|
@@ -11923,7 +11923,8 @@ proto.payment.AttemptDepositRequest.toObject = function(includeInstance, msg) {
|
|
|
11923
11923
|
javaEnabled: jspb.Message.getFieldWithDefault(msg, 20, 0),
|
|
11924
11924
|
javascriptEnabled: jspb.Message.getFieldWithDefault(msg, 21, 0),
|
|
11925
11925
|
acceptLanguage: jspb.Message.getFieldWithDefault(msg, 22, ""),
|
|
11926
|
-
acceptHeader: jspb.Message.getFieldWithDefault(msg, 23, "")
|
|
11926
|
+
acceptHeader: jspb.Message.getFieldWithDefault(msg, 23, ""),
|
|
11927
|
+
userBirthday: jspb.Message.getFieldWithDefault(msg, 24, "")
|
|
11927
11928
|
};
|
|
11928
11929
|
|
|
11929
11930
|
if (includeInstance) {
|
|
@@ -12052,6 +12053,10 @@ proto.payment.AttemptDepositRequest.deserializeBinaryFromReader = function(msg,
|
|
|
12052
12053
|
var value = /** @type {string} */ (reader.readString());
|
|
12053
12054
|
msg.setAcceptHeader(value);
|
|
12054
12055
|
break;
|
|
12056
|
+
case 24:
|
|
12057
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12058
|
+
msg.setUserBirthday(value);
|
|
12059
|
+
break;
|
|
12055
12060
|
default:
|
|
12056
12061
|
reader.skipField();
|
|
12057
12062
|
break;
|
|
@@ -12242,6 +12247,13 @@ proto.payment.AttemptDepositRequest.serializeBinaryToWriter = function(message,
|
|
|
12242
12247
|
f
|
|
12243
12248
|
);
|
|
12244
12249
|
}
|
|
12250
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 24));
|
|
12251
|
+
if (f != null) {
|
|
12252
|
+
writer.writeString(
|
|
12253
|
+
24,
|
|
12254
|
+
f
|
|
12255
|
+
);
|
|
12256
|
+
}
|
|
12245
12257
|
};
|
|
12246
12258
|
|
|
12247
12259
|
|
|
@@ -13019,6 +13031,42 @@ proto.payment.AttemptDepositRequest.prototype.hasAcceptHeader = function() {
|
|
|
13019
13031
|
};
|
|
13020
13032
|
|
|
13021
13033
|
|
|
13034
|
+
/**
|
|
13035
|
+
* optional string user_birthday = 24;
|
|
13036
|
+
* @return {string}
|
|
13037
|
+
*/
|
|
13038
|
+
proto.payment.AttemptDepositRequest.prototype.getUserBirthday = function() {
|
|
13039
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 24, ""));
|
|
13040
|
+
};
|
|
13041
|
+
|
|
13042
|
+
|
|
13043
|
+
/**
|
|
13044
|
+
* @param {string} value
|
|
13045
|
+
* @return {!proto.payment.AttemptDepositRequest} returns this
|
|
13046
|
+
*/
|
|
13047
|
+
proto.payment.AttemptDepositRequest.prototype.setUserBirthday = function(value) {
|
|
13048
|
+
return jspb.Message.setField(this, 24, value);
|
|
13049
|
+
};
|
|
13050
|
+
|
|
13051
|
+
|
|
13052
|
+
/**
|
|
13053
|
+
* Clears the field making it undefined.
|
|
13054
|
+
* @return {!proto.payment.AttemptDepositRequest} returns this
|
|
13055
|
+
*/
|
|
13056
|
+
proto.payment.AttemptDepositRequest.prototype.clearUserBirthday = function() {
|
|
13057
|
+
return jspb.Message.setField(this, 24, undefined);
|
|
13058
|
+
};
|
|
13059
|
+
|
|
13060
|
+
|
|
13061
|
+
/**
|
|
13062
|
+
* Returns whether this field is set.
|
|
13063
|
+
* @return {boolean}
|
|
13064
|
+
*/
|
|
13065
|
+
proto.payment.AttemptDepositRequest.prototype.hasUserBirthday = function() {
|
|
13066
|
+
return jspb.Message.getField(this, 24) != null;
|
|
13067
|
+
};
|
|
13068
|
+
|
|
13069
|
+
|
|
13022
13070
|
|
|
13023
13071
|
|
|
13024
13072
|
|