protobuf-platform 1.2.465 → 1.2.470
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/bonus/bonus.proto +3 -3
- package/bonus/bonus_pb.js +9 -27
- package/package.json +1 -1
- package/payment/payment.proto +1 -0
- package/payment/payment_pb.js +49 -1
- package/user/user.proto +6 -0
- package/user/user_pb.js +289 -1
package/bonus/bonus.proto
CHANGED
|
@@ -218,10 +218,10 @@ message BonusItem {
|
|
|
218
218
|
optional string category = 36;
|
|
219
219
|
optional string mobile_image = 37;
|
|
220
220
|
optional string mobile_image_cdn = 38;
|
|
221
|
-
repeated
|
|
222
|
-
repeated
|
|
221
|
+
repeated int64 wager_games_list_ids = 39;
|
|
222
|
+
repeated int64 excluded_segment_ids = 40;
|
|
223
223
|
// Business-allowed: "any" | "real" | "bonus"
|
|
224
|
-
|
|
224
|
+
string wager_balance_priority = 41;
|
|
225
225
|
}
|
|
226
226
|
message BonusItemsResponse {
|
|
227
227
|
repeated BonusItem items = 1;
|
package/bonus/bonus_pb.js
CHANGED
|
@@ -7440,13 +7440,13 @@ proto.bonus.BonusItem.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
7440
7440
|
msg.setMobileImageCdn(value);
|
|
7441
7441
|
break;
|
|
7442
7442
|
case 39:
|
|
7443
|
-
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.
|
|
7443
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt64() : [reader.readInt64()]);
|
|
7444
7444
|
for (var i = 0; i < values.length; i++) {
|
|
7445
7445
|
msg.addWagerGamesListIds(values[i]);
|
|
7446
7446
|
}
|
|
7447
7447
|
break;
|
|
7448
7448
|
case 40:
|
|
7449
|
-
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.
|
|
7449
|
+
var values = /** @type {!Array<number>} */ (reader.isDelimited() ? reader.readPackedInt64() : [reader.readInt64()]);
|
|
7450
7450
|
for (var i = 0; i < values.length; i++) {
|
|
7451
7451
|
msg.addExcludedSegmentIds(values[i]);
|
|
7452
7452
|
}
|
|
@@ -7759,20 +7759,20 @@ proto.bonus.BonusItem.serializeBinaryToWriter = function(message, writer) {
|
|
|
7759
7759
|
}
|
|
7760
7760
|
f = message.getWagerGamesListIdsList();
|
|
7761
7761
|
if (f.length > 0) {
|
|
7762
|
-
writer.
|
|
7762
|
+
writer.writePackedInt64(
|
|
7763
7763
|
39,
|
|
7764
7764
|
f
|
|
7765
7765
|
);
|
|
7766
7766
|
}
|
|
7767
7767
|
f = message.getExcludedSegmentIdsList();
|
|
7768
7768
|
if (f.length > 0) {
|
|
7769
|
-
writer.
|
|
7769
|
+
writer.writePackedInt64(
|
|
7770
7770
|
40,
|
|
7771
7771
|
f
|
|
7772
7772
|
);
|
|
7773
7773
|
}
|
|
7774
|
-
f =
|
|
7775
|
-
if (f
|
|
7774
|
+
f = message.getWagerBalancePriority();
|
|
7775
|
+
if (f.length > 0) {
|
|
7776
7776
|
writer.writeString(
|
|
7777
7777
|
41,
|
|
7778
7778
|
f
|
|
@@ -9165,7 +9165,7 @@ proto.bonus.BonusItem.prototype.hasMobileImageCdn = function() {
|
|
|
9165
9165
|
|
|
9166
9166
|
|
|
9167
9167
|
/**
|
|
9168
|
-
* repeated
|
|
9168
|
+
* repeated int64 wager_games_list_ids = 39;
|
|
9169
9169
|
* @return {!Array<number>}
|
|
9170
9170
|
*/
|
|
9171
9171
|
proto.bonus.BonusItem.prototype.getWagerGamesListIdsList = function() {
|
|
@@ -9202,7 +9202,7 @@ proto.bonus.BonusItem.prototype.clearWagerGamesListIdsList = function() {
|
|
|
9202
9202
|
|
|
9203
9203
|
|
|
9204
9204
|
/**
|
|
9205
|
-
* repeated
|
|
9205
|
+
* repeated int64 excluded_segment_ids = 40;
|
|
9206
9206
|
* @return {!Array<number>}
|
|
9207
9207
|
*/
|
|
9208
9208
|
proto.bonus.BonusItem.prototype.getExcludedSegmentIdsList = function() {
|
|
@@ -9252,25 +9252,7 @@ proto.bonus.BonusItem.prototype.getWagerBalancePriority = function() {
|
|
|
9252
9252
|
* @return {!proto.bonus.BonusItem} returns this
|
|
9253
9253
|
*/
|
|
9254
9254
|
proto.bonus.BonusItem.prototype.setWagerBalancePriority = function(value) {
|
|
9255
|
-
return jspb.Message.
|
|
9256
|
-
};
|
|
9257
|
-
|
|
9258
|
-
|
|
9259
|
-
/**
|
|
9260
|
-
* Clears the field making it undefined.
|
|
9261
|
-
* @return {!proto.bonus.BonusItem} returns this
|
|
9262
|
-
*/
|
|
9263
|
-
proto.bonus.BonusItem.prototype.clearWagerBalancePriority = function() {
|
|
9264
|
-
return jspb.Message.setField(this, 41, undefined);
|
|
9265
|
-
};
|
|
9266
|
-
|
|
9267
|
-
|
|
9268
|
-
/**
|
|
9269
|
-
* Returns whether this field is set.
|
|
9270
|
-
* @return {boolean}
|
|
9271
|
-
*/
|
|
9272
|
-
proto.bonus.BonusItem.prototype.hasWagerBalancePriority = function() {
|
|
9273
|
-
return jspb.Message.getField(this, 41) != null;
|
|
9255
|
+
return jspb.Message.setProto3StringField(this, 41, value);
|
|
9274
9256
|
};
|
|
9275
9257
|
|
|
9276
9258
|
|
package/package.json
CHANGED
package/payment/payment.proto
CHANGED
|
@@ -639,6 +639,7 @@ message UserPaymentMethodItem {
|
|
|
639
639
|
optional string provider_payment_id = 17;
|
|
640
640
|
optional string flow_type = 18;
|
|
641
641
|
repeated CashierFieldItem cashier_fields = 19;
|
|
642
|
+
optional string provider_currency = 20;
|
|
642
643
|
}
|
|
643
644
|
message UserPaymentMethodsResponse {
|
|
644
645
|
repeated UserPaymentMethodItem items = 1;
|
package/payment/payment_pb.js
CHANGED
|
@@ -26938,7 +26938,8 @@ proto.payment.UserPaymentMethodItem.toObject = function(includeInstance, msg) {
|
|
|
26938
26938
|
providerPaymentId: jspb.Message.getFieldWithDefault(msg, 17, ""),
|
|
26939
26939
|
flowType: jspb.Message.getFieldWithDefault(msg, 18, ""),
|
|
26940
26940
|
cashierFieldsList: jspb.Message.toObjectList(msg.getCashierFieldsList(),
|
|
26941
|
-
proto.payment.CashierFieldItem.toObject, includeInstance)
|
|
26941
|
+
proto.payment.CashierFieldItem.toObject, includeInstance),
|
|
26942
|
+
providerCurrency: jspb.Message.getFieldWithDefault(msg, 20, "")
|
|
26942
26943
|
};
|
|
26943
26944
|
|
|
26944
26945
|
if (includeInstance) {
|
|
@@ -27052,6 +27053,10 @@ proto.payment.UserPaymentMethodItem.deserializeBinaryFromReader = function(msg,
|
|
|
27052
27053
|
reader.readMessage(value,proto.payment.CashierFieldItem.deserializeBinaryFromReader);
|
|
27053
27054
|
msg.addCashierFields(value);
|
|
27054
27055
|
break;
|
|
27056
|
+
case 20:
|
|
27057
|
+
var value = /** @type {string} */ (reader.readString());
|
|
27058
|
+
msg.setProviderCurrency(value);
|
|
27059
|
+
break;
|
|
27055
27060
|
default:
|
|
27056
27061
|
reader.skipField();
|
|
27057
27062
|
break;
|
|
@@ -27215,6 +27220,13 @@ proto.payment.UserPaymentMethodItem.serializeBinaryToWriter = function(message,
|
|
|
27215
27220
|
proto.payment.CashierFieldItem.serializeBinaryToWriter
|
|
27216
27221
|
);
|
|
27217
27222
|
}
|
|
27223
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 20));
|
|
27224
|
+
if (f != null) {
|
|
27225
|
+
writer.writeString(
|
|
27226
|
+
20,
|
|
27227
|
+
f
|
|
27228
|
+
);
|
|
27229
|
+
}
|
|
27218
27230
|
};
|
|
27219
27231
|
|
|
27220
27232
|
|
|
@@ -27778,6 +27790,42 @@ proto.payment.UserPaymentMethodItem.prototype.clearCashierFieldsList = function(
|
|
|
27778
27790
|
};
|
|
27779
27791
|
|
|
27780
27792
|
|
|
27793
|
+
/**
|
|
27794
|
+
* optional string provider_currency = 20;
|
|
27795
|
+
* @return {string}
|
|
27796
|
+
*/
|
|
27797
|
+
proto.payment.UserPaymentMethodItem.prototype.getProviderCurrency = function() {
|
|
27798
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 20, ""));
|
|
27799
|
+
};
|
|
27800
|
+
|
|
27801
|
+
|
|
27802
|
+
/**
|
|
27803
|
+
* @param {string} value
|
|
27804
|
+
* @return {!proto.payment.UserPaymentMethodItem} returns this
|
|
27805
|
+
*/
|
|
27806
|
+
proto.payment.UserPaymentMethodItem.prototype.setProviderCurrency = function(value) {
|
|
27807
|
+
return jspb.Message.setField(this, 20, value);
|
|
27808
|
+
};
|
|
27809
|
+
|
|
27810
|
+
|
|
27811
|
+
/**
|
|
27812
|
+
* Clears the field making it undefined.
|
|
27813
|
+
* @return {!proto.payment.UserPaymentMethodItem} returns this
|
|
27814
|
+
*/
|
|
27815
|
+
proto.payment.UserPaymentMethodItem.prototype.clearProviderCurrency = function() {
|
|
27816
|
+
return jspb.Message.setField(this, 20, undefined);
|
|
27817
|
+
};
|
|
27818
|
+
|
|
27819
|
+
|
|
27820
|
+
/**
|
|
27821
|
+
* Returns whether this field is set.
|
|
27822
|
+
* @return {boolean}
|
|
27823
|
+
*/
|
|
27824
|
+
proto.payment.UserPaymentMethodItem.prototype.hasProviderCurrency = function() {
|
|
27825
|
+
return jspb.Message.getField(this, 20) != null;
|
|
27826
|
+
};
|
|
27827
|
+
|
|
27828
|
+
|
|
27781
27829
|
|
|
27782
27830
|
/**
|
|
27783
27831
|
* List of repeated fields within this message type.
|
package/user/user.proto
CHANGED
|
@@ -557,6 +557,12 @@ message UserDataResponse {
|
|
|
557
557
|
optional string house = 50;
|
|
558
558
|
optional string apartment = 51;
|
|
559
559
|
optional bool two_fa_enabled = 52;
|
|
560
|
+
optional string nationality = 53;
|
|
561
|
+
optional string last_ip = 54;
|
|
562
|
+
optional string referral = 55;
|
|
563
|
+
optional string updated_at = 56;
|
|
564
|
+
optional string email_subscribed_at = 57;
|
|
565
|
+
optional string email_unsubscribed_at = 58;
|
|
560
566
|
}
|
|
561
567
|
message UserDepositProfileResponse {
|
|
562
568
|
int32 id = 1;
|
package/user/user_pb.js
CHANGED
|
@@ -19914,7 +19914,13 @@ proto.user.UserDataResponse.toObject = function(includeInstance, msg) {
|
|
|
19914
19914
|
street: jspb.Message.getFieldWithDefault(msg, 49, ""),
|
|
19915
19915
|
house: jspb.Message.getFieldWithDefault(msg, 50, ""),
|
|
19916
19916
|
apartment: jspb.Message.getFieldWithDefault(msg, 51, ""),
|
|
19917
|
-
twoFaEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 52, false)
|
|
19917
|
+
twoFaEnabled: jspb.Message.getBooleanFieldWithDefault(msg, 52, false),
|
|
19918
|
+
nationality: jspb.Message.getFieldWithDefault(msg, 53, ""),
|
|
19919
|
+
lastIp: jspb.Message.getFieldWithDefault(msg, 54, ""),
|
|
19920
|
+
referral: jspb.Message.getFieldWithDefault(msg, 55, ""),
|
|
19921
|
+
updatedAt: jspb.Message.getFieldWithDefault(msg, 56, ""),
|
|
19922
|
+
emailSubscribedAt: jspb.Message.getFieldWithDefault(msg, 57, ""),
|
|
19923
|
+
emailUnsubscribedAt: jspb.Message.getFieldWithDefault(msg, 58, "")
|
|
19918
19924
|
};
|
|
19919
19925
|
|
|
19920
19926
|
if (includeInstance) {
|
|
@@ -20160,6 +20166,30 @@ proto.user.UserDataResponse.deserializeBinaryFromReader = function(msg, reader)
|
|
|
20160
20166
|
var value = /** @type {boolean} */ (reader.readBool());
|
|
20161
20167
|
msg.setTwoFaEnabled(value);
|
|
20162
20168
|
break;
|
|
20169
|
+
case 53:
|
|
20170
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20171
|
+
msg.setNationality(value);
|
|
20172
|
+
break;
|
|
20173
|
+
case 54:
|
|
20174
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20175
|
+
msg.setLastIp(value);
|
|
20176
|
+
break;
|
|
20177
|
+
case 55:
|
|
20178
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20179
|
+
msg.setReferral(value);
|
|
20180
|
+
break;
|
|
20181
|
+
case 56:
|
|
20182
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20183
|
+
msg.setUpdatedAt(value);
|
|
20184
|
+
break;
|
|
20185
|
+
case 57:
|
|
20186
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20187
|
+
msg.setEmailSubscribedAt(value);
|
|
20188
|
+
break;
|
|
20189
|
+
case 58:
|
|
20190
|
+
var value = /** @type {string} */ (reader.readString());
|
|
20191
|
+
msg.setEmailUnsubscribedAt(value);
|
|
20192
|
+
break;
|
|
20163
20193
|
default:
|
|
20164
20194
|
reader.skipField();
|
|
20165
20195
|
break;
|
|
@@ -20554,6 +20584,48 @@ proto.user.UserDataResponse.serializeBinaryToWriter = function(message, writer)
|
|
|
20554
20584
|
f
|
|
20555
20585
|
);
|
|
20556
20586
|
}
|
|
20587
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 53));
|
|
20588
|
+
if (f != null) {
|
|
20589
|
+
writer.writeString(
|
|
20590
|
+
53,
|
|
20591
|
+
f
|
|
20592
|
+
);
|
|
20593
|
+
}
|
|
20594
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 54));
|
|
20595
|
+
if (f != null) {
|
|
20596
|
+
writer.writeString(
|
|
20597
|
+
54,
|
|
20598
|
+
f
|
|
20599
|
+
);
|
|
20600
|
+
}
|
|
20601
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 55));
|
|
20602
|
+
if (f != null) {
|
|
20603
|
+
writer.writeString(
|
|
20604
|
+
55,
|
|
20605
|
+
f
|
|
20606
|
+
);
|
|
20607
|
+
}
|
|
20608
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 56));
|
|
20609
|
+
if (f != null) {
|
|
20610
|
+
writer.writeString(
|
|
20611
|
+
56,
|
|
20612
|
+
f
|
|
20613
|
+
);
|
|
20614
|
+
}
|
|
20615
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 57));
|
|
20616
|
+
if (f != null) {
|
|
20617
|
+
writer.writeString(
|
|
20618
|
+
57,
|
|
20619
|
+
f
|
|
20620
|
+
);
|
|
20621
|
+
}
|
|
20622
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 58));
|
|
20623
|
+
if (f != null) {
|
|
20624
|
+
writer.writeString(
|
|
20625
|
+
58,
|
|
20626
|
+
f
|
|
20627
|
+
);
|
|
20628
|
+
}
|
|
20557
20629
|
};
|
|
20558
20630
|
|
|
20559
20631
|
|
|
@@ -22394,6 +22466,222 @@ proto.user.UserDataResponse.prototype.hasTwoFaEnabled = function() {
|
|
|
22394
22466
|
};
|
|
22395
22467
|
|
|
22396
22468
|
|
|
22469
|
+
/**
|
|
22470
|
+
* optional string nationality = 53;
|
|
22471
|
+
* @return {string}
|
|
22472
|
+
*/
|
|
22473
|
+
proto.user.UserDataResponse.prototype.getNationality = function() {
|
|
22474
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 53, ""));
|
|
22475
|
+
};
|
|
22476
|
+
|
|
22477
|
+
|
|
22478
|
+
/**
|
|
22479
|
+
* @param {string} value
|
|
22480
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22481
|
+
*/
|
|
22482
|
+
proto.user.UserDataResponse.prototype.setNationality = function(value) {
|
|
22483
|
+
return jspb.Message.setField(this, 53, value);
|
|
22484
|
+
};
|
|
22485
|
+
|
|
22486
|
+
|
|
22487
|
+
/**
|
|
22488
|
+
* Clears the field making it undefined.
|
|
22489
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22490
|
+
*/
|
|
22491
|
+
proto.user.UserDataResponse.prototype.clearNationality = function() {
|
|
22492
|
+
return jspb.Message.setField(this, 53, undefined);
|
|
22493
|
+
};
|
|
22494
|
+
|
|
22495
|
+
|
|
22496
|
+
/**
|
|
22497
|
+
* Returns whether this field is set.
|
|
22498
|
+
* @return {boolean}
|
|
22499
|
+
*/
|
|
22500
|
+
proto.user.UserDataResponse.prototype.hasNationality = function() {
|
|
22501
|
+
return jspb.Message.getField(this, 53) != null;
|
|
22502
|
+
};
|
|
22503
|
+
|
|
22504
|
+
|
|
22505
|
+
/**
|
|
22506
|
+
* optional string last_ip = 54;
|
|
22507
|
+
* @return {string}
|
|
22508
|
+
*/
|
|
22509
|
+
proto.user.UserDataResponse.prototype.getLastIp = function() {
|
|
22510
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 54, ""));
|
|
22511
|
+
};
|
|
22512
|
+
|
|
22513
|
+
|
|
22514
|
+
/**
|
|
22515
|
+
* @param {string} value
|
|
22516
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22517
|
+
*/
|
|
22518
|
+
proto.user.UserDataResponse.prototype.setLastIp = function(value) {
|
|
22519
|
+
return jspb.Message.setField(this, 54, value);
|
|
22520
|
+
};
|
|
22521
|
+
|
|
22522
|
+
|
|
22523
|
+
/**
|
|
22524
|
+
* Clears the field making it undefined.
|
|
22525
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22526
|
+
*/
|
|
22527
|
+
proto.user.UserDataResponse.prototype.clearLastIp = function() {
|
|
22528
|
+
return jspb.Message.setField(this, 54, undefined);
|
|
22529
|
+
};
|
|
22530
|
+
|
|
22531
|
+
|
|
22532
|
+
/**
|
|
22533
|
+
* Returns whether this field is set.
|
|
22534
|
+
* @return {boolean}
|
|
22535
|
+
*/
|
|
22536
|
+
proto.user.UserDataResponse.prototype.hasLastIp = function() {
|
|
22537
|
+
return jspb.Message.getField(this, 54) != null;
|
|
22538
|
+
};
|
|
22539
|
+
|
|
22540
|
+
|
|
22541
|
+
/**
|
|
22542
|
+
* optional string referral = 55;
|
|
22543
|
+
* @return {string}
|
|
22544
|
+
*/
|
|
22545
|
+
proto.user.UserDataResponse.prototype.getReferral = function() {
|
|
22546
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 55, ""));
|
|
22547
|
+
};
|
|
22548
|
+
|
|
22549
|
+
|
|
22550
|
+
/**
|
|
22551
|
+
* @param {string} value
|
|
22552
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22553
|
+
*/
|
|
22554
|
+
proto.user.UserDataResponse.prototype.setReferral = function(value) {
|
|
22555
|
+
return jspb.Message.setField(this, 55, value);
|
|
22556
|
+
};
|
|
22557
|
+
|
|
22558
|
+
|
|
22559
|
+
/**
|
|
22560
|
+
* Clears the field making it undefined.
|
|
22561
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22562
|
+
*/
|
|
22563
|
+
proto.user.UserDataResponse.prototype.clearReferral = function() {
|
|
22564
|
+
return jspb.Message.setField(this, 55, undefined);
|
|
22565
|
+
};
|
|
22566
|
+
|
|
22567
|
+
|
|
22568
|
+
/**
|
|
22569
|
+
* Returns whether this field is set.
|
|
22570
|
+
* @return {boolean}
|
|
22571
|
+
*/
|
|
22572
|
+
proto.user.UserDataResponse.prototype.hasReferral = function() {
|
|
22573
|
+
return jspb.Message.getField(this, 55) != null;
|
|
22574
|
+
};
|
|
22575
|
+
|
|
22576
|
+
|
|
22577
|
+
/**
|
|
22578
|
+
* optional string updated_at = 56;
|
|
22579
|
+
* @return {string}
|
|
22580
|
+
*/
|
|
22581
|
+
proto.user.UserDataResponse.prototype.getUpdatedAt = function() {
|
|
22582
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 56, ""));
|
|
22583
|
+
};
|
|
22584
|
+
|
|
22585
|
+
|
|
22586
|
+
/**
|
|
22587
|
+
* @param {string} value
|
|
22588
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22589
|
+
*/
|
|
22590
|
+
proto.user.UserDataResponse.prototype.setUpdatedAt = function(value) {
|
|
22591
|
+
return jspb.Message.setField(this, 56, value);
|
|
22592
|
+
};
|
|
22593
|
+
|
|
22594
|
+
|
|
22595
|
+
/**
|
|
22596
|
+
* Clears the field making it undefined.
|
|
22597
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22598
|
+
*/
|
|
22599
|
+
proto.user.UserDataResponse.prototype.clearUpdatedAt = function() {
|
|
22600
|
+
return jspb.Message.setField(this, 56, undefined);
|
|
22601
|
+
};
|
|
22602
|
+
|
|
22603
|
+
|
|
22604
|
+
/**
|
|
22605
|
+
* Returns whether this field is set.
|
|
22606
|
+
* @return {boolean}
|
|
22607
|
+
*/
|
|
22608
|
+
proto.user.UserDataResponse.prototype.hasUpdatedAt = function() {
|
|
22609
|
+
return jspb.Message.getField(this, 56) != null;
|
|
22610
|
+
};
|
|
22611
|
+
|
|
22612
|
+
|
|
22613
|
+
/**
|
|
22614
|
+
* optional string email_subscribed_at = 57;
|
|
22615
|
+
* @return {string}
|
|
22616
|
+
*/
|
|
22617
|
+
proto.user.UserDataResponse.prototype.getEmailSubscribedAt = function() {
|
|
22618
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 57, ""));
|
|
22619
|
+
};
|
|
22620
|
+
|
|
22621
|
+
|
|
22622
|
+
/**
|
|
22623
|
+
* @param {string} value
|
|
22624
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22625
|
+
*/
|
|
22626
|
+
proto.user.UserDataResponse.prototype.setEmailSubscribedAt = function(value) {
|
|
22627
|
+
return jspb.Message.setField(this, 57, value);
|
|
22628
|
+
};
|
|
22629
|
+
|
|
22630
|
+
|
|
22631
|
+
/**
|
|
22632
|
+
* Clears the field making it undefined.
|
|
22633
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22634
|
+
*/
|
|
22635
|
+
proto.user.UserDataResponse.prototype.clearEmailSubscribedAt = function() {
|
|
22636
|
+
return jspb.Message.setField(this, 57, undefined);
|
|
22637
|
+
};
|
|
22638
|
+
|
|
22639
|
+
|
|
22640
|
+
/**
|
|
22641
|
+
* Returns whether this field is set.
|
|
22642
|
+
* @return {boolean}
|
|
22643
|
+
*/
|
|
22644
|
+
proto.user.UserDataResponse.prototype.hasEmailSubscribedAt = function() {
|
|
22645
|
+
return jspb.Message.getField(this, 57) != null;
|
|
22646
|
+
};
|
|
22647
|
+
|
|
22648
|
+
|
|
22649
|
+
/**
|
|
22650
|
+
* optional string email_unsubscribed_at = 58;
|
|
22651
|
+
* @return {string}
|
|
22652
|
+
*/
|
|
22653
|
+
proto.user.UserDataResponse.prototype.getEmailUnsubscribedAt = function() {
|
|
22654
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 58, ""));
|
|
22655
|
+
};
|
|
22656
|
+
|
|
22657
|
+
|
|
22658
|
+
/**
|
|
22659
|
+
* @param {string} value
|
|
22660
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22661
|
+
*/
|
|
22662
|
+
proto.user.UserDataResponse.prototype.setEmailUnsubscribedAt = function(value) {
|
|
22663
|
+
return jspb.Message.setField(this, 58, value);
|
|
22664
|
+
};
|
|
22665
|
+
|
|
22666
|
+
|
|
22667
|
+
/**
|
|
22668
|
+
* Clears the field making it undefined.
|
|
22669
|
+
* @return {!proto.user.UserDataResponse} returns this
|
|
22670
|
+
*/
|
|
22671
|
+
proto.user.UserDataResponse.prototype.clearEmailUnsubscribedAt = function() {
|
|
22672
|
+
return jspb.Message.setField(this, 58, undefined);
|
|
22673
|
+
};
|
|
22674
|
+
|
|
22675
|
+
|
|
22676
|
+
/**
|
|
22677
|
+
* Returns whether this field is set.
|
|
22678
|
+
* @return {boolean}
|
|
22679
|
+
*/
|
|
22680
|
+
proto.user.UserDataResponse.prototype.hasEmailUnsubscribedAt = function() {
|
|
22681
|
+
return jspb.Message.getField(this, 58) != null;
|
|
22682
|
+
};
|
|
22683
|
+
|
|
22684
|
+
|
|
22397
22685
|
|
|
22398
22686
|
|
|
22399
22687
|
|