protobuf-platform 1.0.77 → 1.0.79

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/game/game.proto CHANGED
@@ -51,7 +51,12 @@ service Game {
51
51
 
52
52
  message PingRequest { string ping = 1; }
53
53
  message PongResponse { string pong = 1; }
54
- message PaginationRequest { int32 limit = 1; int32 offset = 2; }
54
+ message PaginationRequest { int32 limit = 1; int32 offset = 2; optional GameSearchRequest game_search_params = 3; }
55
+ message GameSearchRequest {
56
+ optional int32 is_active = 1;
57
+ optional int32 is_deactivated = 2;
58
+ optional int32 has_category = 3;
59
+ }
55
60
  //Media
56
61
  message File { bytes media = 1; }
57
62
  message GetFileRequest { string file_name = 1; string instance_type = 2; }
package/game/game_pb.js CHANGED
@@ -43,6 +43,7 @@ goog.exportSymbol('proto.game.GameItemsResponse', null, global);
43
43
  goog.exportSymbol('proto.game.GameRequest', null, global);
44
44
  goog.exportSymbol('proto.game.GameRequest.RequestCase', null, global);
45
45
  goog.exportSymbol('proto.game.GameResponse', null, global);
46
+ goog.exportSymbol('proto.game.GameSearchRequest', null, global);
46
47
  goog.exportSymbol('proto.game.GameStatusResponse', null, global);
47
48
  goog.exportSymbol('proto.game.GamesPriorityRequest', null, global);
48
49
  goog.exportSymbol('proto.game.GetCategoryRequest', null, global);
@@ -142,6 +143,27 @@ if (goog.DEBUG && !COMPILED) {
142
143
  */
143
144
  proto.game.PaginationRequest.displayName = 'proto.game.PaginationRequest';
144
145
  }
146
+ /**
147
+ * Generated by JsPbCodeGenerator.
148
+ * @param {Array=} opt_data Optional initial data array, typically from a
149
+ * server response, or constructed directly in Javascript. The array is used
150
+ * in place and becomes part of the constructed object. It is not cloned.
151
+ * If no data is provided, the constructed object will be empty, but still
152
+ * valid.
153
+ * @extends {jspb.Message}
154
+ * @constructor
155
+ */
156
+ proto.game.GameSearchRequest = function(opt_data) {
157
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
158
+ };
159
+ goog.inherits(proto.game.GameSearchRequest, jspb.Message);
160
+ if (goog.DEBUG && !COMPILED) {
161
+ /**
162
+ * @public
163
+ * @override
164
+ */
165
+ proto.game.GameSearchRequest.displayName = 'proto.game.GameSearchRequest';
166
+ }
145
167
  /**
146
168
  * Generated by JsPbCodeGenerator.
147
169
  * @param {Array=} opt_data Optional initial data array, typically from a
@@ -1485,7 +1507,8 @@ proto.game.PaginationRequest.prototype.toObject = function(opt_includeInstance)
1485
1507
  proto.game.PaginationRequest.toObject = function(includeInstance, msg) {
1486
1508
  var f, obj = {
1487
1509
  limit: jspb.Message.getFieldWithDefault(msg, 1, 0),
1488
- offset: jspb.Message.getFieldWithDefault(msg, 2, 0)
1510
+ offset: jspb.Message.getFieldWithDefault(msg, 2, 0),
1511
+ gameSearchParams: (f = msg.getGameSearchParams()) && proto.game.GameSearchRequest.toObject(includeInstance, f)
1489
1512
  };
1490
1513
 
1491
1514
  if (includeInstance) {
@@ -1530,6 +1553,11 @@ proto.game.PaginationRequest.deserializeBinaryFromReader = function(msg, reader)
1530
1553
  var value = /** @type {number} */ (reader.readInt32());
1531
1554
  msg.setOffset(value);
1532
1555
  break;
1556
+ case 3:
1557
+ var value = new proto.game.GameSearchRequest;
1558
+ reader.readMessage(value,proto.game.GameSearchRequest.deserializeBinaryFromReader);
1559
+ msg.setGameSearchParams(value);
1560
+ break;
1533
1561
  default:
1534
1562
  reader.skipField();
1535
1563
  break;
@@ -1573,6 +1601,14 @@ proto.game.PaginationRequest.serializeBinaryToWriter = function(message, writer)
1573
1601
  f
1574
1602
  );
1575
1603
  }
1604
+ f = message.getGameSearchParams();
1605
+ if (f != null) {
1606
+ writer.writeMessage(
1607
+ 3,
1608
+ f,
1609
+ proto.game.GameSearchRequest.serializeBinaryToWriter
1610
+ );
1611
+ }
1576
1612
  };
1577
1613
 
1578
1614
 
@@ -1612,6 +1648,287 @@ proto.game.PaginationRequest.prototype.setOffset = function(value) {
1612
1648
  };
1613
1649
 
1614
1650
 
1651
+ /**
1652
+ * optional GameSearchRequest game_search_params = 3;
1653
+ * @return {?proto.game.GameSearchRequest}
1654
+ */
1655
+ proto.game.PaginationRequest.prototype.getGameSearchParams = function() {
1656
+ return /** @type{?proto.game.GameSearchRequest} */ (
1657
+ jspb.Message.getWrapperField(this, proto.game.GameSearchRequest, 3));
1658
+ };
1659
+
1660
+
1661
+ /**
1662
+ * @param {?proto.game.GameSearchRequest|undefined} value
1663
+ * @return {!proto.game.PaginationRequest} returns this
1664
+ */
1665
+ proto.game.PaginationRequest.prototype.setGameSearchParams = function(value) {
1666
+ return jspb.Message.setWrapperField(this, 3, value);
1667
+ };
1668
+
1669
+
1670
+ /**
1671
+ * Clears the message field making it undefined.
1672
+ * @return {!proto.game.PaginationRequest} returns this
1673
+ */
1674
+ proto.game.PaginationRequest.prototype.clearGameSearchParams = function() {
1675
+ return this.setGameSearchParams(undefined);
1676
+ };
1677
+
1678
+
1679
+ /**
1680
+ * Returns whether this field is set.
1681
+ * @return {boolean}
1682
+ */
1683
+ proto.game.PaginationRequest.prototype.hasGameSearchParams = function() {
1684
+ return jspb.Message.getField(this, 3) != null;
1685
+ };
1686
+
1687
+
1688
+
1689
+
1690
+
1691
+ if (jspb.Message.GENERATE_TO_OBJECT) {
1692
+ /**
1693
+ * Creates an object representation of this proto.
1694
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
1695
+ * Optional fields that are not set will be set to undefined.
1696
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
1697
+ * For the list of reserved names please see:
1698
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
1699
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
1700
+ * JSPB instance for transitional soy proto support:
1701
+ * http://goto/soy-param-migration
1702
+ * @return {!Object}
1703
+ */
1704
+ proto.game.GameSearchRequest.prototype.toObject = function(opt_includeInstance) {
1705
+ return proto.game.GameSearchRequest.toObject(opt_includeInstance, this);
1706
+ };
1707
+
1708
+
1709
+ /**
1710
+ * Static version of the {@see toObject} method.
1711
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
1712
+ * the JSPB instance for transitional soy proto support:
1713
+ * http://goto/soy-param-migration
1714
+ * @param {!proto.game.GameSearchRequest} msg The msg instance to transform.
1715
+ * @return {!Object}
1716
+ * @suppress {unusedLocalVariables} f is only used for nested messages
1717
+ */
1718
+ proto.game.GameSearchRequest.toObject = function(includeInstance, msg) {
1719
+ var f, obj = {
1720
+ isActive: jspb.Message.getFieldWithDefault(msg, 1, 0),
1721
+ isDeactivated: jspb.Message.getFieldWithDefault(msg, 2, 0),
1722
+ hasCategory: jspb.Message.getFieldWithDefault(msg, 3, 0)
1723
+ };
1724
+
1725
+ if (includeInstance) {
1726
+ obj.$jspbMessageInstance = msg;
1727
+ }
1728
+ return obj;
1729
+ };
1730
+ }
1731
+
1732
+
1733
+ /**
1734
+ * Deserializes binary data (in protobuf wire format).
1735
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
1736
+ * @return {!proto.game.GameSearchRequest}
1737
+ */
1738
+ proto.game.GameSearchRequest.deserializeBinary = function(bytes) {
1739
+ var reader = new jspb.BinaryReader(bytes);
1740
+ var msg = new proto.game.GameSearchRequest;
1741
+ return proto.game.GameSearchRequest.deserializeBinaryFromReader(msg, reader);
1742
+ };
1743
+
1744
+
1745
+ /**
1746
+ * Deserializes binary data (in protobuf wire format) from the
1747
+ * given reader into the given message object.
1748
+ * @param {!proto.game.GameSearchRequest} msg The message object to deserialize into.
1749
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
1750
+ * @return {!proto.game.GameSearchRequest}
1751
+ */
1752
+ proto.game.GameSearchRequest.deserializeBinaryFromReader = function(msg, reader) {
1753
+ while (reader.nextField()) {
1754
+ if (reader.isEndGroup()) {
1755
+ break;
1756
+ }
1757
+ var field = reader.getFieldNumber();
1758
+ switch (field) {
1759
+ case 1:
1760
+ var value = /** @type {number} */ (reader.readInt32());
1761
+ msg.setIsActive(value);
1762
+ break;
1763
+ case 2:
1764
+ var value = /** @type {number} */ (reader.readInt32());
1765
+ msg.setIsDeactivated(value);
1766
+ break;
1767
+ case 3:
1768
+ var value = /** @type {number} */ (reader.readInt32());
1769
+ msg.setHasCategory(value);
1770
+ break;
1771
+ default:
1772
+ reader.skipField();
1773
+ break;
1774
+ }
1775
+ }
1776
+ return msg;
1777
+ };
1778
+
1779
+
1780
+ /**
1781
+ * Serializes the message to binary data (in protobuf wire format).
1782
+ * @return {!Uint8Array}
1783
+ */
1784
+ proto.game.GameSearchRequest.prototype.serializeBinary = function() {
1785
+ var writer = new jspb.BinaryWriter();
1786
+ proto.game.GameSearchRequest.serializeBinaryToWriter(this, writer);
1787
+ return writer.getResultBuffer();
1788
+ };
1789
+
1790
+
1791
+ /**
1792
+ * Serializes the given message to binary data (in protobuf wire
1793
+ * format), writing to the given BinaryWriter.
1794
+ * @param {!proto.game.GameSearchRequest} message
1795
+ * @param {!jspb.BinaryWriter} writer
1796
+ * @suppress {unusedLocalVariables} f is only used for nested messages
1797
+ */
1798
+ proto.game.GameSearchRequest.serializeBinaryToWriter = function(message, writer) {
1799
+ var f = undefined;
1800
+ f = /** @type {number} */ (jspb.Message.getField(message, 1));
1801
+ if (f != null) {
1802
+ writer.writeInt32(
1803
+ 1,
1804
+ f
1805
+ );
1806
+ }
1807
+ f = /** @type {number} */ (jspb.Message.getField(message, 2));
1808
+ if (f != null) {
1809
+ writer.writeInt32(
1810
+ 2,
1811
+ f
1812
+ );
1813
+ }
1814
+ f = /** @type {number} */ (jspb.Message.getField(message, 3));
1815
+ if (f != null) {
1816
+ writer.writeInt32(
1817
+ 3,
1818
+ f
1819
+ );
1820
+ }
1821
+ };
1822
+
1823
+
1824
+ /**
1825
+ * optional int32 is_active = 1;
1826
+ * @return {number}
1827
+ */
1828
+ proto.game.GameSearchRequest.prototype.getIsActive = function() {
1829
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 1, 0));
1830
+ };
1831
+
1832
+
1833
+ /**
1834
+ * @param {number} value
1835
+ * @return {!proto.game.GameSearchRequest} returns this
1836
+ */
1837
+ proto.game.GameSearchRequest.prototype.setIsActive = function(value) {
1838
+ return jspb.Message.setField(this, 1, value);
1839
+ };
1840
+
1841
+
1842
+ /**
1843
+ * Clears the field making it undefined.
1844
+ * @return {!proto.game.GameSearchRequest} returns this
1845
+ */
1846
+ proto.game.GameSearchRequest.prototype.clearIsActive = function() {
1847
+ return jspb.Message.setField(this, 1, undefined);
1848
+ };
1849
+
1850
+
1851
+ /**
1852
+ * Returns whether this field is set.
1853
+ * @return {boolean}
1854
+ */
1855
+ proto.game.GameSearchRequest.prototype.hasIsActive = function() {
1856
+ return jspb.Message.getField(this, 1) != null;
1857
+ };
1858
+
1859
+
1860
+ /**
1861
+ * optional int32 is_deactivated = 2;
1862
+ * @return {number}
1863
+ */
1864
+ proto.game.GameSearchRequest.prototype.getIsDeactivated = function() {
1865
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
1866
+ };
1867
+
1868
+
1869
+ /**
1870
+ * @param {number} value
1871
+ * @return {!proto.game.GameSearchRequest} returns this
1872
+ */
1873
+ proto.game.GameSearchRequest.prototype.setIsDeactivated = function(value) {
1874
+ return jspb.Message.setField(this, 2, value);
1875
+ };
1876
+
1877
+
1878
+ /**
1879
+ * Clears the field making it undefined.
1880
+ * @return {!proto.game.GameSearchRequest} returns this
1881
+ */
1882
+ proto.game.GameSearchRequest.prototype.clearIsDeactivated = function() {
1883
+ return jspb.Message.setField(this, 2, undefined);
1884
+ };
1885
+
1886
+
1887
+ /**
1888
+ * Returns whether this field is set.
1889
+ * @return {boolean}
1890
+ */
1891
+ proto.game.GameSearchRequest.prototype.hasIsDeactivated = function() {
1892
+ return jspb.Message.getField(this, 2) != null;
1893
+ };
1894
+
1895
+
1896
+ /**
1897
+ * optional int32 has_category = 3;
1898
+ * @return {number}
1899
+ */
1900
+ proto.game.GameSearchRequest.prototype.getHasCategory = function() {
1901
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
1902
+ };
1903
+
1904
+
1905
+ /**
1906
+ * @param {number} value
1907
+ * @return {!proto.game.GameSearchRequest} returns this
1908
+ */
1909
+ proto.game.GameSearchRequest.prototype.setHasCategory = function(value) {
1910
+ return jspb.Message.setField(this, 3, value);
1911
+ };
1912
+
1913
+
1914
+ /**
1915
+ * Clears the field making it undefined.
1916
+ * @return {!proto.game.GameSearchRequest} returns this
1917
+ */
1918
+ proto.game.GameSearchRequest.prototype.clearHasCategory = function() {
1919
+ return jspb.Message.setField(this, 3, undefined);
1920
+ };
1921
+
1922
+
1923
+ /**
1924
+ * Returns whether this field is set.
1925
+ * @return {boolean}
1926
+ */
1927
+ proto.game.GameSearchRequest.prototype.hasHasCategory = function() {
1928
+ return jspb.Message.getField(this, 3) != null;
1929
+ };
1930
+
1931
+
1615
1932
 
1616
1933
 
1617
1934
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.0.77",
3
+ "version": "1.0.79",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/user/user.proto CHANGED
@@ -47,6 +47,7 @@ message LoginRequest {
47
47
  }
48
48
  message UserDataRequest {
49
49
  string public_id = 1;
50
+ optional string requested_area = 2;
50
51
  }
51
52
  message UserDataResponse {
52
53
  int32 id = 1;
@@ -60,6 +61,9 @@ message UserDataResponse {
60
61
  optional string locale = 9;
61
62
  optional string permissions = 10;
62
63
  optional string role_name = 11;
64
+ optional float balance_real = 12;
65
+ optional float balance_bonus = 13;
66
+ optional string balance_type = 14;
63
67
  }
64
68
  //Permissions
65
69
  message RolePermissionRequest {
package/user/user_pb.js CHANGED
@@ -1749,7 +1749,8 @@ proto.user.UserDataRequest.prototype.toObject = function(opt_includeInstance) {
1749
1749
  */
1750
1750
  proto.user.UserDataRequest.toObject = function(includeInstance, msg) {
1751
1751
  var f, obj = {
1752
- publicId: jspb.Message.getFieldWithDefault(msg, 1, "")
1752
+ publicId: jspb.Message.getFieldWithDefault(msg, 1, ""),
1753
+ requestedArea: jspb.Message.getFieldWithDefault(msg, 2, "")
1753
1754
  };
1754
1755
 
1755
1756
  if (includeInstance) {
@@ -1790,6 +1791,10 @@ proto.user.UserDataRequest.deserializeBinaryFromReader = function(msg, reader) {
1790
1791
  var value = /** @type {string} */ (reader.readString());
1791
1792
  msg.setPublicId(value);
1792
1793
  break;
1794
+ case 2:
1795
+ var value = /** @type {string} */ (reader.readString());
1796
+ msg.setRequestedArea(value);
1797
+ break;
1793
1798
  default:
1794
1799
  reader.skipField();
1795
1800
  break;
@@ -1826,6 +1831,13 @@ proto.user.UserDataRequest.serializeBinaryToWriter = function(message, writer) {
1826
1831
  f
1827
1832
  );
1828
1833
  }
1834
+ f = /** @type {string} */ (jspb.Message.getField(message, 2));
1835
+ if (f != null) {
1836
+ writer.writeString(
1837
+ 2,
1838
+ f
1839
+ );
1840
+ }
1829
1841
  };
1830
1842
 
1831
1843
 
@@ -1847,6 +1859,42 @@ proto.user.UserDataRequest.prototype.setPublicId = function(value) {
1847
1859
  };
1848
1860
 
1849
1861
 
1862
+ /**
1863
+ * optional string requested_area = 2;
1864
+ * @return {string}
1865
+ */
1866
+ proto.user.UserDataRequest.prototype.getRequestedArea = function() {
1867
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
1868
+ };
1869
+
1870
+
1871
+ /**
1872
+ * @param {string} value
1873
+ * @return {!proto.user.UserDataRequest} returns this
1874
+ */
1875
+ proto.user.UserDataRequest.prototype.setRequestedArea = function(value) {
1876
+ return jspb.Message.setField(this, 2, value);
1877
+ };
1878
+
1879
+
1880
+ /**
1881
+ * Clears the field making it undefined.
1882
+ * @return {!proto.user.UserDataRequest} returns this
1883
+ */
1884
+ proto.user.UserDataRequest.prototype.clearRequestedArea = function() {
1885
+ return jspb.Message.setField(this, 2, undefined);
1886
+ };
1887
+
1888
+
1889
+ /**
1890
+ * Returns whether this field is set.
1891
+ * @return {boolean}
1892
+ */
1893
+ proto.user.UserDataRequest.prototype.hasRequestedArea = function() {
1894
+ return jspb.Message.getField(this, 2) != null;
1895
+ };
1896
+
1897
+
1850
1898
 
1851
1899
 
1852
1900
 
@@ -1889,7 +1937,10 @@ proto.user.UserDataResponse.toObject = function(includeInstance, msg) {
1889
1937
  birthday: jspb.Message.getFieldWithDefault(msg, 8, ""),
1890
1938
  locale: jspb.Message.getFieldWithDefault(msg, 9, ""),
1891
1939
  permissions: jspb.Message.getFieldWithDefault(msg, 10, ""),
1892
- roleName: jspb.Message.getFieldWithDefault(msg, 11, "")
1940
+ roleName: jspb.Message.getFieldWithDefault(msg, 11, ""),
1941
+ balanceReal: jspb.Message.getFloatingPointFieldWithDefault(msg, 12, 0.0),
1942
+ balanceBonus: jspb.Message.getFloatingPointFieldWithDefault(msg, 13, 0.0),
1943
+ balanceType: jspb.Message.getFieldWithDefault(msg, 14, "")
1893
1944
  };
1894
1945
 
1895
1946
  if (includeInstance) {
@@ -1970,6 +2021,18 @@ proto.user.UserDataResponse.deserializeBinaryFromReader = function(msg, reader)
1970
2021
  var value = /** @type {string} */ (reader.readString());
1971
2022
  msg.setRoleName(value);
1972
2023
  break;
2024
+ case 12:
2025
+ var value = /** @type {number} */ (reader.readFloat());
2026
+ msg.setBalanceReal(value);
2027
+ break;
2028
+ case 13:
2029
+ var value = /** @type {number} */ (reader.readFloat());
2030
+ msg.setBalanceBonus(value);
2031
+ break;
2032
+ case 14:
2033
+ var value = /** @type {string} */ (reader.readString());
2034
+ msg.setBalanceType(value);
2035
+ break;
1973
2036
  default:
1974
2037
  reader.skipField();
1975
2038
  break;
@@ -2076,6 +2139,27 @@ proto.user.UserDataResponse.serializeBinaryToWriter = function(message, writer)
2076
2139
  f
2077
2140
  );
2078
2141
  }
2142
+ f = /** @type {number} */ (jspb.Message.getField(message, 12));
2143
+ if (f != null) {
2144
+ writer.writeFloat(
2145
+ 12,
2146
+ f
2147
+ );
2148
+ }
2149
+ f = /** @type {number} */ (jspb.Message.getField(message, 13));
2150
+ if (f != null) {
2151
+ writer.writeFloat(
2152
+ 13,
2153
+ f
2154
+ );
2155
+ }
2156
+ f = /** @type {string} */ (jspb.Message.getField(message, 14));
2157
+ if (f != null) {
2158
+ writer.writeString(
2159
+ 14,
2160
+ f
2161
+ );
2162
+ }
2079
2163
  };
2080
2164
 
2081
2165
 
@@ -2421,6 +2505,114 @@ proto.user.UserDataResponse.prototype.hasRoleName = function() {
2421
2505
  };
2422
2506
 
2423
2507
 
2508
+ /**
2509
+ * optional float balance_real = 12;
2510
+ * @return {number}
2511
+ */
2512
+ proto.user.UserDataResponse.prototype.getBalanceReal = function() {
2513
+ return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 12, 0.0));
2514
+ };
2515
+
2516
+
2517
+ /**
2518
+ * @param {number} value
2519
+ * @return {!proto.user.UserDataResponse} returns this
2520
+ */
2521
+ proto.user.UserDataResponse.prototype.setBalanceReal = function(value) {
2522
+ return jspb.Message.setField(this, 12, value);
2523
+ };
2524
+
2525
+
2526
+ /**
2527
+ * Clears the field making it undefined.
2528
+ * @return {!proto.user.UserDataResponse} returns this
2529
+ */
2530
+ proto.user.UserDataResponse.prototype.clearBalanceReal = function() {
2531
+ return jspb.Message.setField(this, 12, undefined);
2532
+ };
2533
+
2534
+
2535
+ /**
2536
+ * Returns whether this field is set.
2537
+ * @return {boolean}
2538
+ */
2539
+ proto.user.UserDataResponse.prototype.hasBalanceReal = function() {
2540
+ return jspb.Message.getField(this, 12) != null;
2541
+ };
2542
+
2543
+
2544
+ /**
2545
+ * optional float balance_bonus = 13;
2546
+ * @return {number}
2547
+ */
2548
+ proto.user.UserDataResponse.prototype.getBalanceBonus = function() {
2549
+ return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 13, 0.0));
2550
+ };
2551
+
2552
+
2553
+ /**
2554
+ * @param {number} value
2555
+ * @return {!proto.user.UserDataResponse} returns this
2556
+ */
2557
+ proto.user.UserDataResponse.prototype.setBalanceBonus = function(value) {
2558
+ return jspb.Message.setField(this, 13, value);
2559
+ };
2560
+
2561
+
2562
+ /**
2563
+ * Clears the field making it undefined.
2564
+ * @return {!proto.user.UserDataResponse} returns this
2565
+ */
2566
+ proto.user.UserDataResponse.prototype.clearBalanceBonus = function() {
2567
+ return jspb.Message.setField(this, 13, undefined);
2568
+ };
2569
+
2570
+
2571
+ /**
2572
+ * Returns whether this field is set.
2573
+ * @return {boolean}
2574
+ */
2575
+ proto.user.UserDataResponse.prototype.hasBalanceBonus = function() {
2576
+ return jspb.Message.getField(this, 13) != null;
2577
+ };
2578
+
2579
+
2580
+ /**
2581
+ * optional string balance_type = 14;
2582
+ * @return {string}
2583
+ */
2584
+ proto.user.UserDataResponse.prototype.getBalanceType = function() {
2585
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
2586
+ };
2587
+
2588
+
2589
+ /**
2590
+ * @param {string} value
2591
+ * @return {!proto.user.UserDataResponse} returns this
2592
+ */
2593
+ proto.user.UserDataResponse.prototype.setBalanceType = function(value) {
2594
+ return jspb.Message.setField(this, 14, value);
2595
+ };
2596
+
2597
+
2598
+ /**
2599
+ * Clears the field making it undefined.
2600
+ * @return {!proto.user.UserDataResponse} returns this
2601
+ */
2602
+ proto.user.UserDataResponse.prototype.clearBalanceType = function() {
2603
+ return jspb.Message.setField(this, 14, undefined);
2604
+ };
2605
+
2606
+
2607
+ /**
2608
+ * Returns whether this field is set.
2609
+ * @return {boolean}
2610
+ */
2611
+ proto.user.UserDataResponse.prototype.hasBalanceType = function() {
2612
+ return jspb.Message.getField(this, 14) != null;
2613
+ };
2614
+
2615
+
2424
2616
 
2425
2617
 
2426
2618