protobuf-platform 1.2.123 → 1.2.124

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "protobuf-platform",
3
- "version": "1.2.123",
3
+ "version": "1.2.124",
4
4
  "description": "Protobuf structures",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/sport/sport.proto CHANGED
@@ -6,6 +6,8 @@ service Sport {
6
6
  rpc checkConnection(PingRequest) returns (PongResponse);
7
7
  // Launch Betby sportsbook widget for user or guest.
8
8
  rpc launchBetby(LaunchBetbyRequest) returns (LaunchBetbyResponse);
9
+ rpc runSelfValidationBetby(selfValidationBetbyRequest) returns (selfValidationBetbyResponse);
10
+ rpc checkSelfValidationBetby(selfValidationBetbyRequest) returns (selfValidationBetbyResponse);
9
11
  //Vendor
10
12
  rpc processedVendorActionCallback(VendorActionRequest) returns (VendorActionResponse);
11
13
  }
@@ -52,4 +54,14 @@ message VendorActionRequest {
52
54
  }
53
55
  message VendorActionResponse {
54
56
  string data = 1;
57
+ }
58
+ //Self validation BetBy
59
+ message selfValidationBetbyRequest {
60
+ optional string session_id = 1;
61
+ optional string player_id = 2;
62
+ optional string currency = 3;
63
+ optional string task_id = 4;
64
+ }
65
+ message selfValidationBetbyResponse {
66
+ string result = 1;
55
67
  }
@@ -70,6 +70,28 @@ function deserialize_sport_VendorActionResponse(buffer_arg) {
70
70
  return sport_pb.VendorActionResponse.deserializeBinary(new Uint8Array(buffer_arg));
71
71
  }
72
72
 
73
+ function serialize_sport_selfValidationBetbyRequest(arg) {
74
+ if (!(arg instanceof sport_pb.selfValidationBetbyRequest)) {
75
+ throw new Error('Expected argument of type sport.selfValidationBetbyRequest');
76
+ }
77
+ return Buffer.from(arg.serializeBinary());
78
+ }
79
+
80
+ function deserialize_sport_selfValidationBetbyRequest(buffer_arg) {
81
+ return sport_pb.selfValidationBetbyRequest.deserializeBinary(new Uint8Array(buffer_arg));
82
+ }
83
+
84
+ function serialize_sport_selfValidationBetbyResponse(arg) {
85
+ if (!(arg instanceof sport_pb.selfValidationBetbyResponse)) {
86
+ throw new Error('Expected argument of type sport.selfValidationBetbyResponse');
87
+ }
88
+ return Buffer.from(arg.serializeBinary());
89
+ }
90
+
91
+ function deserialize_sport_selfValidationBetbyResponse(buffer_arg) {
92
+ return sport_pb.selfValidationBetbyResponse.deserializeBinary(new Uint8Array(buffer_arg));
93
+ }
94
+
73
95
 
74
96
  var SportService = exports.SportService = {
75
97
  checkConnection: {
@@ -95,6 +117,28 @@ launchBetby: {
95
117
  responseSerialize: serialize_sport_LaunchBetbyResponse,
96
118
  responseDeserialize: deserialize_sport_LaunchBetbyResponse,
97
119
  },
120
+ runSelfValidationBetby: {
121
+ path: '/sport.Sport/runSelfValidationBetby',
122
+ requestStream: false,
123
+ responseStream: false,
124
+ requestType: sport_pb.selfValidationBetbyRequest,
125
+ responseType: sport_pb.selfValidationBetbyResponse,
126
+ requestSerialize: serialize_sport_selfValidationBetbyRequest,
127
+ requestDeserialize: deserialize_sport_selfValidationBetbyRequest,
128
+ responseSerialize: serialize_sport_selfValidationBetbyResponse,
129
+ responseDeserialize: deserialize_sport_selfValidationBetbyResponse,
130
+ },
131
+ checkSelfValidationBetby: {
132
+ path: '/sport.Sport/checkSelfValidationBetby',
133
+ requestStream: false,
134
+ responseStream: false,
135
+ requestType: sport_pb.selfValidationBetbyRequest,
136
+ responseType: sport_pb.selfValidationBetbyResponse,
137
+ requestSerialize: serialize_sport_selfValidationBetbyRequest,
138
+ requestDeserialize: deserialize_sport_selfValidationBetbyRequest,
139
+ responseSerialize: serialize_sport_selfValidationBetbyResponse,
140
+ responseDeserialize: deserialize_sport_selfValidationBetbyResponse,
141
+ },
98
142
  // Vendor
99
143
  processedVendorActionCallback: {
100
144
  path: '/sport.Sport/processedVendorActionCallback',
package/sport/sport_pb.js CHANGED
@@ -28,6 +28,8 @@ goog.exportSymbol('proto.sport.PingRequest', null, global);
28
28
  goog.exportSymbol('proto.sport.PongResponse', null, global);
29
29
  goog.exportSymbol('proto.sport.VendorActionRequest', null, global);
30
30
  goog.exportSymbol('proto.sport.VendorActionResponse', null, global);
31
+ goog.exportSymbol('proto.sport.selfValidationBetbyRequest', null, global);
32
+ goog.exportSymbol('proto.sport.selfValidationBetbyResponse', null, global);
31
33
  /**
32
34
  * Generated by JsPbCodeGenerator.
33
35
  * @param {Array=} opt_data Optional initial data array, typically from a
@@ -175,6 +177,48 @@ if (goog.DEBUG && !COMPILED) {
175
177
  */
176
178
  proto.sport.VendorActionResponse.displayName = 'proto.sport.VendorActionResponse';
177
179
  }
180
+ /**
181
+ * Generated by JsPbCodeGenerator.
182
+ * @param {Array=} opt_data Optional initial data array, typically from a
183
+ * server response, or constructed directly in Javascript. The array is used
184
+ * in place and becomes part of the constructed object. It is not cloned.
185
+ * If no data is provided, the constructed object will be empty, but still
186
+ * valid.
187
+ * @extends {jspb.Message}
188
+ * @constructor
189
+ */
190
+ proto.sport.selfValidationBetbyRequest = function(opt_data) {
191
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
192
+ };
193
+ goog.inherits(proto.sport.selfValidationBetbyRequest, jspb.Message);
194
+ if (goog.DEBUG && !COMPILED) {
195
+ /**
196
+ * @public
197
+ * @override
198
+ */
199
+ proto.sport.selfValidationBetbyRequest.displayName = 'proto.sport.selfValidationBetbyRequest';
200
+ }
201
+ /**
202
+ * Generated by JsPbCodeGenerator.
203
+ * @param {Array=} opt_data Optional initial data array, typically from a
204
+ * server response, or constructed directly in Javascript. The array is used
205
+ * in place and becomes part of the constructed object. It is not cloned.
206
+ * If no data is provided, the constructed object will be empty, but still
207
+ * valid.
208
+ * @extends {jspb.Message}
209
+ * @constructor
210
+ */
211
+ proto.sport.selfValidationBetbyResponse = function(opt_data) {
212
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
213
+ };
214
+ goog.inherits(proto.sport.selfValidationBetbyResponse, jspb.Message);
215
+ if (goog.DEBUG && !COMPILED) {
216
+ /**
217
+ * @public
218
+ * @override
219
+ */
220
+ proto.sport.selfValidationBetbyResponse.displayName = 'proto.sport.selfValidationBetbyResponse';
221
+ }
178
222
 
179
223
 
180
224
 
@@ -1565,4 +1609,426 @@ proto.sport.VendorActionResponse.prototype.setData = function(value) {
1565
1609
  };
1566
1610
 
1567
1611
 
1612
+
1613
+
1614
+
1615
+ if (jspb.Message.GENERATE_TO_OBJECT) {
1616
+ /**
1617
+ * Creates an object representation of this proto.
1618
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
1619
+ * Optional fields that are not set will be set to undefined.
1620
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
1621
+ * For the list of reserved names please see:
1622
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
1623
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
1624
+ * JSPB instance for transitional soy proto support:
1625
+ * http://goto/soy-param-migration
1626
+ * @return {!Object}
1627
+ */
1628
+ proto.sport.selfValidationBetbyRequest.prototype.toObject = function(opt_includeInstance) {
1629
+ return proto.sport.selfValidationBetbyRequest.toObject(opt_includeInstance, this);
1630
+ };
1631
+
1632
+
1633
+ /**
1634
+ * Static version of the {@see toObject} method.
1635
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
1636
+ * the JSPB instance for transitional soy proto support:
1637
+ * http://goto/soy-param-migration
1638
+ * @param {!proto.sport.selfValidationBetbyRequest} msg The msg instance to transform.
1639
+ * @return {!Object}
1640
+ * @suppress {unusedLocalVariables} f is only used for nested messages
1641
+ */
1642
+ proto.sport.selfValidationBetbyRequest.toObject = function(includeInstance, msg) {
1643
+ var f, obj = {
1644
+ sessionId: jspb.Message.getFieldWithDefault(msg, 1, ""),
1645
+ playerId: jspb.Message.getFieldWithDefault(msg, 2, ""),
1646
+ currency: jspb.Message.getFieldWithDefault(msg, 3, ""),
1647
+ taskId: jspb.Message.getFieldWithDefault(msg, 4, "")
1648
+ };
1649
+
1650
+ if (includeInstance) {
1651
+ obj.$jspbMessageInstance = msg;
1652
+ }
1653
+ return obj;
1654
+ };
1655
+ }
1656
+
1657
+
1658
+ /**
1659
+ * Deserializes binary data (in protobuf wire format).
1660
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
1661
+ * @return {!proto.sport.selfValidationBetbyRequest}
1662
+ */
1663
+ proto.sport.selfValidationBetbyRequest.deserializeBinary = function(bytes) {
1664
+ var reader = new jspb.BinaryReader(bytes);
1665
+ var msg = new proto.sport.selfValidationBetbyRequest;
1666
+ return proto.sport.selfValidationBetbyRequest.deserializeBinaryFromReader(msg, reader);
1667
+ };
1668
+
1669
+
1670
+ /**
1671
+ * Deserializes binary data (in protobuf wire format) from the
1672
+ * given reader into the given message object.
1673
+ * @param {!proto.sport.selfValidationBetbyRequest} msg The message object to deserialize into.
1674
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
1675
+ * @return {!proto.sport.selfValidationBetbyRequest}
1676
+ */
1677
+ proto.sport.selfValidationBetbyRequest.deserializeBinaryFromReader = function(msg, reader) {
1678
+ while (reader.nextField()) {
1679
+ if (reader.isEndGroup()) {
1680
+ break;
1681
+ }
1682
+ var field = reader.getFieldNumber();
1683
+ switch (field) {
1684
+ case 1:
1685
+ var value = /** @type {string} */ (reader.readString());
1686
+ msg.setSessionId(value);
1687
+ break;
1688
+ case 2:
1689
+ var value = /** @type {string} */ (reader.readString());
1690
+ msg.setPlayerId(value);
1691
+ break;
1692
+ case 3:
1693
+ var value = /** @type {string} */ (reader.readString());
1694
+ msg.setCurrency(value);
1695
+ break;
1696
+ case 4:
1697
+ var value = /** @type {string} */ (reader.readString());
1698
+ msg.setTaskId(value);
1699
+ break;
1700
+ default:
1701
+ reader.skipField();
1702
+ break;
1703
+ }
1704
+ }
1705
+ return msg;
1706
+ };
1707
+
1708
+
1709
+ /**
1710
+ * Serializes the message to binary data (in protobuf wire format).
1711
+ * @return {!Uint8Array}
1712
+ */
1713
+ proto.sport.selfValidationBetbyRequest.prototype.serializeBinary = function() {
1714
+ var writer = new jspb.BinaryWriter();
1715
+ proto.sport.selfValidationBetbyRequest.serializeBinaryToWriter(this, writer);
1716
+ return writer.getResultBuffer();
1717
+ };
1718
+
1719
+
1720
+ /**
1721
+ * Serializes the given message to binary data (in protobuf wire
1722
+ * format), writing to the given BinaryWriter.
1723
+ * @param {!proto.sport.selfValidationBetbyRequest} message
1724
+ * @param {!jspb.BinaryWriter} writer
1725
+ * @suppress {unusedLocalVariables} f is only used for nested messages
1726
+ */
1727
+ proto.sport.selfValidationBetbyRequest.serializeBinaryToWriter = function(message, writer) {
1728
+ var f = undefined;
1729
+ f = /** @type {string} */ (jspb.Message.getField(message, 1));
1730
+ if (f != null) {
1731
+ writer.writeString(
1732
+ 1,
1733
+ f
1734
+ );
1735
+ }
1736
+ f = /** @type {string} */ (jspb.Message.getField(message, 2));
1737
+ if (f != null) {
1738
+ writer.writeString(
1739
+ 2,
1740
+ f
1741
+ );
1742
+ }
1743
+ f = /** @type {string} */ (jspb.Message.getField(message, 3));
1744
+ if (f != null) {
1745
+ writer.writeString(
1746
+ 3,
1747
+ f
1748
+ );
1749
+ }
1750
+ f = /** @type {string} */ (jspb.Message.getField(message, 4));
1751
+ if (f != null) {
1752
+ writer.writeString(
1753
+ 4,
1754
+ f
1755
+ );
1756
+ }
1757
+ };
1758
+
1759
+
1760
+ /**
1761
+ * optional string session_id = 1;
1762
+ * @return {string}
1763
+ */
1764
+ proto.sport.selfValidationBetbyRequest.prototype.getSessionId = function() {
1765
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
1766
+ };
1767
+
1768
+
1769
+ /**
1770
+ * @param {string} value
1771
+ * @return {!proto.sport.selfValidationBetbyRequest} returns this
1772
+ */
1773
+ proto.sport.selfValidationBetbyRequest.prototype.setSessionId = function(value) {
1774
+ return jspb.Message.setField(this, 1, value);
1775
+ };
1776
+
1777
+
1778
+ /**
1779
+ * Clears the field making it undefined.
1780
+ * @return {!proto.sport.selfValidationBetbyRequest} returns this
1781
+ */
1782
+ proto.sport.selfValidationBetbyRequest.prototype.clearSessionId = function() {
1783
+ return jspb.Message.setField(this, 1, undefined);
1784
+ };
1785
+
1786
+
1787
+ /**
1788
+ * Returns whether this field is set.
1789
+ * @return {boolean}
1790
+ */
1791
+ proto.sport.selfValidationBetbyRequest.prototype.hasSessionId = function() {
1792
+ return jspb.Message.getField(this, 1) != null;
1793
+ };
1794
+
1795
+
1796
+ /**
1797
+ * optional string player_id = 2;
1798
+ * @return {string}
1799
+ */
1800
+ proto.sport.selfValidationBetbyRequest.prototype.getPlayerId = function() {
1801
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
1802
+ };
1803
+
1804
+
1805
+ /**
1806
+ * @param {string} value
1807
+ * @return {!proto.sport.selfValidationBetbyRequest} returns this
1808
+ */
1809
+ proto.sport.selfValidationBetbyRequest.prototype.setPlayerId = function(value) {
1810
+ return jspb.Message.setField(this, 2, value);
1811
+ };
1812
+
1813
+
1814
+ /**
1815
+ * Clears the field making it undefined.
1816
+ * @return {!proto.sport.selfValidationBetbyRequest} returns this
1817
+ */
1818
+ proto.sport.selfValidationBetbyRequest.prototype.clearPlayerId = function() {
1819
+ return jspb.Message.setField(this, 2, undefined);
1820
+ };
1821
+
1822
+
1823
+ /**
1824
+ * Returns whether this field is set.
1825
+ * @return {boolean}
1826
+ */
1827
+ proto.sport.selfValidationBetbyRequest.prototype.hasPlayerId = function() {
1828
+ return jspb.Message.getField(this, 2) != null;
1829
+ };
1830
+
1831
+
1832
+ /**
1833
+ * optional string currency = 3;
1834
+ * @return {string}
1835
+ */
1836
+ proto.sport.selfValidationBetbyRequest.prototype.getCurrency = function() {
1837
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
1838
+ };
1839
+
1840
+
1841
+ /**
1842
+ * @param {string} value
1843
+ * @return {!proto.sport.selfValidationBetbyRequest} returns this
1844
+ */
1845
+ proto.sport.selfValidationBetbyRequest.prototype.setCurrency = function(value) {
1846
+ return jspb.Message.setField(this, 3, value);
1847
+ };
1848
+
1849
+
1850
+ /**
1851
+ * Clears the field making it undefined.
1852
+ * @return {!proto.sport.selfValidationBetbyRequest} returns this
1853
+ */
1854
+ proto.sport.selfValidationBetbyRequest.prototype.clearCurrency = function() {
1855
+ return jspb.Message.setField(this, 3, undefined);
1856
+ };
1857
+
1858
+
1859
+ /**
1860
+ * Returns whether this field is set.
1861
+ * @return {boolean}
1862
+ */
1863
+ proto.sport.selfValidationBetbyRequest.prototype.hasCurrency = function() {
1864
+ return jspb.Message.getField(this, 3) != null;
1865
+ };
1866
+
1867
+
1868
+ /**
1869
+ * optional string task_id = 4;
1870
+ * @return {string}
1871
+ */
1872
+ proto.sport.selfValidationBetbyRequest.prototype.getTaskId = function() {
1873
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 4, ""));
1874
+ };
1875
+
1876
+
1877
+ /**
1878
+ * @param {string} value
1879
+ * @return {!proto.sport.selfValidationBetbyRequest} returns this
1880
+ */
1881
+ proto.sport.selfValidationBetbyRequest.prototype.setTaskId = function(value) {
1882
+ return jspb.Message.setField(this, 4, value);
1883
+ };
1884
+
1885
+
1886
+ /**
1887
+ * Clears the field making it undefined.
1888
+ * @return {!proto.sport.selfValidationBetbyRequest} returns this
1889
+ */
1890
+ proto.sport.selfValidationBetbyRequest.prototype.clearTaskId = function() {
1891
+ return jspb.Message.setField(this, 4, undefined);
1892
+ };
1893
+
1894
+
1895
+ /**
1896
+ * Returns whether this field is set.
1897
+ * @return {boolean}
1898
+ */
1899
+ proto.sport.selfValidationBetbyRequest.prototype.hasTaskId = function() {
1900
+ return jspb.Message.getField(this, 4) != null;
1901
+ };
1902
+
1903
+
1904
+
1905
+
1906
+
1907
+ if (jspb.Message.GENERATE_TO_OBJECT) {
1908
+ /**
1909
+ * Creates an object representation of this proto.
1910
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
1911
+ * Optional fields that are not set will be set to undefined.
1912
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
1913
+ * For the list of reserved names please see:
1914
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
1915
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
1916
+ * JSPB instance for transitional soy proto support:
1917
+ * http://goto/soy-param-migration
1918
+ * @return {!Object}
1919
+ */
1920
+ proto.sport.selfValidationBetbyResponse.prototype.toObject = function(opt_includeInstance) {
1921
+ return proto.sport.selfValidationBetbyResponse.toObject(opt_includeInstance, this);
1922
+ };
1923
+
1924
+
1925
+ /**
1926
+ * Static version of the {@see toObject} method.
1927
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
1928
+ * the JSPB instance for transitional soy proto support:
1929
+ * http://goto/soy-param-migration
1930
+ * @param {!proto.sport.selfValidationBetbyResponse} msg The msg instance to transform.
1931
+ * @return {!Object}
1932
+ * @suppress {unusedLocalVariables} f is only used for nested messages
1933
+ */
1934
+ proto.sport.selfValidationBetbyResponse.toObject = function(includeInstance, msg) {
1935
+ var f, obj = {
1936
+ result: jspb.Message.getFieldWithDefault(msg, 1, "")
1937
+ };
1938
+
1939
+ if (includeInstance) {
1940
+ obj.$jspbMessageInstance = msg;
1941
+ }
1942
+ return obj;
1943
+ };
1944
+ }
1945
+
1946
+
1947
+ /**
1948
+ * Deserializes binary data (in protobuf wire format).
1949
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
1950
+ * @return {!proto.sport.selfValidationBetbyResponse}
1951
+ */
1952
+ proto.sport.selfValidationBetbyResponse.deserializeBinary = function(bytes) {
1953
+ var reader = new jspb.BinaryReader(bytes);
1954
+ var msg = new proto.sport.selfValidationBetbyResponse;
1955
+ return proto.sport.selfValidationBetbyResponse.deserializeBinaryFromReader(msg, reader);
1956
+ };
1957
+
1958
+
1959
+ /**
1960
+ * Deserializes binary data (in protobuf wire format) from the
1961
+ * given reader into the given message object.
1962
+ * @param {!proto.sport.selfValidationBetbyResponse} msg The message object to deserialize into.
1963
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
1964
+ * @return {!proto.sport.selfValidationBetbyResponse}
1965
+ */
1966
+ proto.sport.selfValidationBetbyResponse.deserializeBinaryFromReader = function(msg, reader) {
1967
+ while (reader.nextField()) {
1968
+ if (reader.isEndGroup()) {
1969
+ break;
1970
+ }
1971
+ var field = reader.getFieldNumber();
1972
+ switch (field) {
1973
+ case 1:
1974
+ var value = /** @type {string} */ (reader.readString());
1975
+ msg.setResult(value);
1976
+ break;
1977
+ default:
1978
+ reader.skipField();
1979
+ break;
1980
+ }
1981
+ }
1982
+ return msg;
1983
+ };
1984
+
1985
+
1986
+ /**
1987
+ * Serializes the message to binary data (in protobuf wire format).
1988
+ * @return {!Uint8Array}
1989
+ */
1990
+ proto.sport.selfValidationBetbyResponse.prototype.serializeBinary = function() {
1991
+ var writer = new jspb.BinaryWriter();
1992
+ proto.sport.selfValidationBetbyResponse.serializeBinaryToWriter(this, writer);
1993
+ return writer.getResultBuffer();
1994
+ };
1995
+
1996
+
1997
+ /**
1998
+ * Serializes the given message to binary data (in protobuf wire
1999
+ * format), writing to the given BinaryWriter.
2000
+ * @param {!proto.sport.selfValidationBetbyResponse} message
2001
+ * @param {!jspb.BinaryWriter} writer
2002
+ * @suppress {unusedLocalVariables} f is only used for nested messages
2003
+ */
2004
+ proto.sport.selfValidationBetbyResponse.serializeBinaryToWriter = function(message, writer) {
2005
+ var f = undefined;
2006
+ f = message.getResult();
2007
+ if (f.length > 0) {
2008
+ writer.writeString(
2009
+ 1,
2010
+ f
2011
+ );
2012
+ }
2013
+ };
2014
+
2015
+
2016
+ /**
2017
+ * optional string result = 1;
2018
+ * @return {string}
2019
+ */
2020
+ proto.sport.selfValidationBetbyResponse.prototype.getResult = function() {
2021
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
2022
+ };
2023
+
2024
+
2025
+ /**
2026
+ * @param {string} value
2027
+ * @return {!proto.sport.selfValidationBetbyResponse} returns this
2028
+ */
2029
+ proto.sport.selfValidationBetbyResponse.prototype.setResult = function(value) {
2030
+ return jspb.Message.setProto3StringField(this, 1, value);
2031
+ };
2032
+
2033
+
1568
2034
  goog.object.extend(exports, proto.sport);