protobuf-platform 1.0.252 → 1.0.254
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/analytic/analytic.proto +34 -2
- package/analytic/analytic_grpc_pb.js +34 -0
- package/analytic/analytic_pb.js +1452 -14
- package/package.json +1 -1
package/analytic/analytic_pb.js
CHANGED
@@ -21,6 +21,8 @@ var global = (function() {
|
|
21
21
|
return Function('return this')();
|
22
22
|
}.call(null));
|
23
23
|
|
24
|
+
goog.exportSymbol('proto.analytic.GlobalCasinoItem', null, global);
|
25
|
+
goog.exportSymbol('proto.analytic.GlobalCasinoResponse', null, global);
|
24
26
|
goog.exportSymbol('proto.analytic.GlobalSearchRequest', null, global);
|
25
27
|
goog.exportSymbol('proto.analytic.PaginationRequest', null, global);
|
26
28
|
goog.exportSymbol('proto.analytic.PingRequest', null, global);
|
@@ -109,6 +111,48 @@ if (goog.DEBUG && !COMPILED) {
|
|
109
111
|
*/
|
110
112
|
proto.analytic.GlobalSearchRequest.displayName = 'proto.analytic.GlobalSearchRequest';
|
111
113
|
}
|
114
|
+
/**
|
115
|
+
* Generated by JsPbCodeGenerator.
|
116
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
117
|
+
* server response, or constructed directly in Javascript. The array is used
|
118
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
119
|
+
* If no data is provided, the constructed object will be empty, but still
|
120
|
+
* valid.
|
121
|
+
* @extends {jspb.Message}
|
122
|
+
* @constructor
|
123
|
+
*/
|
124
|
+
proto.analytic.GlobalCasinoItem = function(opt_data) {
|
125
|
+
jspb.Message.initialize(this, opt_data, 0, -1, null, null);
|
126
|
+
};
|
127
|
+
goog.inherits(proto.analytic.GlobalCasinoItem, jspb.Message);
|
128
|
+
if (goog.DEBUG && !COMPILED) {
|
129
|
+
/**
|
130
|
+
* @public
|
131
|
+
* @override
|
132
|
+
*/
|
133
|
+
proto.analytic.GlobalCasinoItem.displayName = 'proto.analytic.GlobalCasinoItem';
|
134
|
+
}
|
135
|
+
/**
|
136
|
+
* Generated by JsPbCodeGenerator.
|
137
|
+
* @param {Array=} opt_data Optional initial data array, typically from a
|
138
|
+
* server response, or constructed directly in Javascript. The array is used
|
139
|
+
* in place and becomes part of the constructed object. It is not cloned.
|
140
|
+
* If no data is provided, the constructed object will be empty, but still
|
141
|
+
* valid.
|
142
|
+
* @extends {jspb.Message}
|
143
|
+
* @constructor
|
144
|
+
*/
|
145
|
+
proto.analytic.GlobalCasinoResponse = function(opt_data) {
|
146
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.analytic.GlobalCasinoResponse.repeatedFields_, null);
|
147
|
+
};
|
148
|
+
goog.inherits(proto.analytic.GlobalCasinoResponse, jspb.Message);
|
149
|
+
if (goog.DEBUG && !COMPILED) {
|
150
|
+
/**
|
151
|
+
* @public
|
152
|
+
* @override
|
153
|
+
*/
|
154
|
+
proto.analytic.GlobalCasinoResponse.displayName = 'proto.analytic.GlobalCasinoResponse';
|
155
|
+
}
|
112
156
|
|
113
157
|
|
114
158
|
|
@@ -612,8 +656,9 @@ proto.analytic.GlobalSearchRequest.prototype.toObject = function(opt_includeInst
|
|
612
656
|
*/
|
613
657
|
proto.analytic.GlobalSearchRequest.toObject = function(includeInstance, msg) {
|
614
658
|
var f, obj = {
|
615
|
-
|
616
|
-
|
659
|
+
startedAt: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
660
|
+
endedAt: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
661
|
+
period: jspb.Message.getFieldWithDefault(msg, 3, "")
|
617
662
|
};
|
618
663
|
|
619
664
|
if (includeInstance) {
|
@@ -652,11 +697,15 @@ proto.analytic.GlobalSearchRequest.deserializeBinaryFromReader = function(msg, r
|
|
652
697
|
switch (field) {
|
653
698
|
case 1:
|
654
699
|
var value = /** @type {string} */ (reader.readString());
|
655
|
-
msg.
|
700
|
+
msg.setStartedAt(value);
|
656
701
|
break;
|
657
702
|
case 2:
|
658
703
|
var value = /** @type {string} */ (reader.readString());
|
659
|
-
msg.
|
704
|
+
msg.setEndedAt(value);
|
705
|
+
break;
|
706
|
+
case 3:
|
707
|
+
var value = /** @type {string} */ (reader.readString());
|
708
|
+
msg.setPeriod(value);
|
660
709
|
break;
|
661
710
|
default:
|
662
711
|
reader.skipField();
|
@@ -701,14 +750,21 @@ proto.analytic.GlobalSearchRequest.serializeBinaryToWriter = function(message, w
|
|
701
750
|
f
|
702
751
|
);
|
703
752
|
}
|
753
|
+
f = /** @type {string} */ (jspb.Message.getField(message, 3));
|
754
|
+
if (f != null) {
|
755
|
+
writer.writeString(
|
756
|
+
3,
|
757
|
+
f
|
758
|
+
);
|
759
|
+
}
|
704
760
|
};
|
705
761
|
|
706
762
|
|
707
763
|
/**
|
708
|
-
* optional string
|
764
|
+
* optional string started_at = 1;
|
709
765
|
* @return {string}
|
710
766
|
*/
|
711
|
-
proto.analytic.GlobalSearchRequest.prototype.
|
767
|
+
proto.analytic.GlobalSearchRequest.prototype.getStartedAt = function() {
|
712
768
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
713
769
|
};
|
714
770
|
|
@@ -717,7 +773,7 @@ proto.analytic.GlobalSearchRequest.prototype.getStartAt = function() {
|
|
717
773
|
* @param {string} value
|
718
774
|
* @return {!proto.analytic.GlobalSearchRequest} returns this
|
719
775
|
*/
|
720
|
-
proto.analytic.GlobalSearchRequest.prototype.
|
776
|
+
proto.analytic.GlobalSearchRequest.prototype.setStartedAt = function(value) {
|
721
777
|
return jspb.Message.setField(this, 1, value);
|
722
778
|
};
|
723
779
|
|
@@ -726,7 +782,7 @@ proto.analytic.GlobalSearchRequest.prototype.setStartAt = function(value) {
|
|
726
782
|
* Clears the field making it undefined.
|
727
783
|
* @return {!proto.analytic.GlobalSearchRequest} returns this
|
728
784
|
*/
|
729
|
-
proto.analytic.GlobalSearchRequest.prototype.
|
785
|
+
proto.analytic.GlobalSearchRequest.prototype.clearStartedAt = function() {
|
730
786
|
return jspb.Message.setField(this, 1, undefined);
|
731
787
|
};
|
732
788
|
|
@@ -735,16 +791,16 @@ proto.analytic.GlobalSearchRequest.prototype.clearStartAt = function() {
|
|
735
791
|
* Returns whether this field is set.
|
736
792
|
* @return {boolean}
|
737
793
|
*/
|
738
|
-
proto.analytic.GlobalSearchRequest.prototype.
|
794
|
+
proto.analytic.GlobalSearchRequest.prototype.hasStartedAt = function() {
|
739
795
|
return jspb.Message.getField(this, 1) != null;
|
740
796
|
};
|
741
797
|
|
742
798
|
|
743
799
|
/**
|
744
|
-
* optional string
|
800
|
+
* optional string ended_at = 2;
|
745
801
|
* @return {string}
|
746
802
|
*/
|
747
|
-
proto.analytic.GlobalSearchRequest.prototype.
|
803
|
+
proto.analytic.GlobalSearchRequest.prototype.getEndedAt = function() {
|
748
804
|
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
|
749
805
|
};
|
750
806
|
|
@@ -753,7 +809,7 @@ proto.analytic.GlobalSearchRequest.prototype.getEndAt = function() {
|
|
753
809
|
* @param {string} value
|
754
810
|
* @return {!proto.analytic.GlobalSearchRequest} returns this
|
755
811
|
*/
|
756
|
-
proto.analytic.GlobalSearchRequest.prototype.
|
812
|
+
proto.analytic.GlobalSearchRequest.prototype.setEndedAt = function(value) {
|
757
813
|
return jspb.Message.setField(this, 2, value);
|
758
814
|
};
|
759
815
|
|
@@ -762,7 +818,7 @@ proto.analytic.GlobalSearchRequest.prototype.setEndAt = function(value) {
|
|
762
818
|
* Clears the field making it undefined.
|
763
819
|
* @return {!proto.analytic.GlobalSearchRequest} returns this
|
764
820
|
*/
|
765
|
-
proto.analytic.GlobalSearchRequest.prototype.
|
821
|
+
proto.analytic.GlobalSearchRequest.prototype.clearEndedAt = function() {
|
766
822
|
return jspb.Message.setField(this, 2, undefined);
|
767
823
|
};
|
768
824
|
|
@@ -771,9 +827,1391 @@ proto.analytic.GlobalSearchRequest.prototype.clearEndAt = function() {
|
|
771
827
|
* Returns whether this field is set.
|
772
828
|
* @return {boolean}
|
773
829
|
*/
|
774
|
-
proto.analytic.GlobalSearchRequest.prototype.
|
830
|
+
proto.analytic.GlobalSearchRequest.prototype.hasEndedAt = function() {
|
775
831
|
return jspb.Message.getField(this, 2) != null;
|
776
832
|
};
|
777
833
|
|
778
834
|
|
835
|
+
/**
|
836
|
+
* optional string period = 3;
|
837
|
+
* @return {string}
|
838
|
+
*/
|
839
|
+
proto.analytic.GlobalSearchRequest.prototype.getPeriod = function() {
|
840
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
|
841
|
+
};
|
842
|
+
|
843
|
+
|
844
|
+
/**
|
845
|
+
* @param {string} value
|
846
|
+
* @return {!proto.analytic.GlobalSearchRequest} returns this
|
847
|
+
*/
|
848
|
+
proto.analytic.GlobalSearchRequest.prototype.setPeriod = function(value) {
|
849
|
+
return jspb.Message.setField(this, 3, value);
|
850
|
+
};
|
851
|
+
|
852
|
+
|
853
|
+
/**
|
854
|
+
* Clears the field making it undefined.
|
855
|
+
* @return {!proto.analytic.GlobalSearchRequest} returns this
|
856
|
+
*/
|
857
|
+
proto.analytic.GlobalSearchRequest.prototype.clearPeriod = function() {
|
858
|
+
return jspb.Message.setField(this, 3, undefined);
|
859
|
+
};
|
860
|
+
|
861
|
+
|
862
|
+
/**
|
863
|
+
* Returns whether this field is set.
|
864
|
+
* @return {boolean}
|
865
|
+
*/
|
866
|
+
proto.analytic.GlobalSearchRequest.prototype.hasPeriod = function() {
|
867
|
+
return jspb.Message.getField(this, 3) != null;
|
868
|
+
};
|
869
|
+
|
870
|
+
|
871
|
+
|
872
|
+
|
873
|
+
|
874
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
875
|
+
/**
|
876
|
+
* Creates an object representation of this proto.
|
877
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
878
|
+
* Optional fields that are not set will be set to undefined.
|
879
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
880
|
+
* For the list of reserved names please see:
|
881
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
882
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
883
|
+
* JSPB instance for transitional soy proto support:
|
884
|
+
* http://goto/soy-param-migration
|
885
|
+
* @return {!Object}
|
886
|
+
*/
|
887
|
+
proto.analytic.GlobalCasinoItem.prototype.toObject = function(opt_includeInstance) {
|
888
|
+
return proto.analytic.GlobalCasinoItem.toObject(opt_includeInstance, this);
|
889
|
+
};
|
890
|
+
|
891
|
+
|
892
|
+
/**
|
893
|
+
* Static version of the {@see toObject} method.
|
894
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
895
|
+
* the JSPB instance for transitional soy proto support:
|
896
|
+
* http://goto/soy-param-migration
|
897
|
+
* @param {!proto.analytic.GlobalCasinoItem} msg The msg instance to transform.
|
898
|
+
* @return {!Object}
|
899
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
900
|
+
*/
|
901
|
+
proto.analytic.GlobalCasinoItem.toObject = function(includeInstance, msg) {
|
902
|
+
var f, obj = {
|
903
|
+
date: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
904
|
+
registrations: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
905
|
+
activeUsers: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
906
|
+
totalFtdCount: jspb.Message.getFieldWithDefault(msg, 4, 0),
|
907
|
+
totalFtdSum: jspb.Message.getFloatingPointFieldWithDefault(msg, 5, 0.0),
|
908
|
+
totalFtdAvg: jspb.Message.getFloatingPointFieldWithDefault(msg, 6, 0.0),
|
909
|
+
redepCount: jspb.Message.getFieldWithDefault(msg, 7, 0),
|
910
|
+
redepSum: jspb.Message.getFloatingPointFieldWithDefault(msg, 8, 0.0),
|
911
|
+
redepAvg: jspb.Message.getFloatingPointFieldWithDefault(msg, 9, 0.0),
|
912
|
+
totalDepCount: jspb.Message.getFieldWithDefault(msg, 10, 0),
|
913
|
+
totalDepSum: jspb.Message.getFloatingPointFieldWithDefault(msg, 11, 0.0),
|
914
|
+
totalDepAgv: jspb.Message.getFloatingPointFieldWithDefault(msg, 12, 0.0),
|
915
|
+
totalTurnover: jspb.Message.getFloatingPointFieldWithDefault(msg, 13, 0.0),
|
916
|
+
totalGgr: jspb.Message.getFloatingPointFieldWithDefault(msg, 14, 0.0),
|
917
|
+
realTurnover: jspb.Message.getFloatingPointFieldWithDefault(msg, 15, 0.0),
|
918
|
+
realGgr: jspb.Message.getFloatingPointFieldWithDefault(msg, 16, 0.0),
|
919
|
+
bonusTurnover: jspb.Message.getFloatingPointFieldWithDefault(msg, 17, 0.0),
|
920
|
+
bonusGgr: jspb.Message.getFloatingPointFieldWithDefault(msg, 18, 0.0),
|
921
|
+
inOutSum: jspb.Message.getFloatingPointFieldWithDefault(msg, 19, 0.0),
|
922
|
+
inOutPercentages: jspb.Message.getFloatingPointFieldWithDefault(msg, 20, 0.0),
|
923
|
+
depToActivePlayer: jspb.Message.getFloatingPointFieldWithDefault(msg, 21, 0.0)
|
924
|
+
};
|
925
|
+
|
926
|
+
if (includeInstance) {
|
927
|
+
obj.$jspbMessageInstance = msg;
|
928
|
+
}
|
929
|
+
return obj;
|
930
|
+
};
|
931
|
+
}
|
932
|
+
|
933
|
+
|
934
|
+
/**
|
935
|
+
* Deserializes binary data (in protobuf wire format).
|
936
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
937
|
+
* @return {!proto.analytic.GlobalCasinoItem}
|
938
|
+
*/
|
939
|
+
proto.analytic.GlobalCasinoItem.deserializeBinary = function(bytes) {
|
940
|
+
var reader = new jspb.BinaryReader(bytes);
|
941
|
+
var msg = new proto.analytic.GlobalCasinoItem;
|
942
|
+
return proto.analytic.GlobalCasinoItem.deserializeBinaryFromReader(msg, reader);
|
943
|
+
};
|
944
|
+
|
945
|
+
|
946
|
+
/**
|
947
|
+
* Deserializes binary data (in protobuf wire format) from the
|
948
|
+
* given reader into the given message object.
|
949
|
+
* @param {!proto.analytic.GlobalCasinoItem} msg The message object to deserialize into.
|
950
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
951
|
+
* @return {!proto.analytic.GlobalCasinoItem}
|
952
|
+
*/
|
953
|
+
proto.analytic.GlobalCasinoItem.deserializeBinaryFromReader = function(msg, reader) {
|
954
|
+
while (reader.nextField()) {
|
955
|
+
if (reader.isEndGroup()) {
|
956
|
+
break;
|
957
|
+
}
|
958
|
+
var field = reader.getFieldNumber();
|
959
|
+
switch (field) {
|
960
|
+
case 1:
|
961
|
+
var value = /** @type {string} */ (reader.readString());
|
962
|
+
msg.setDate(value);
|
963
|
+
break;
|
964
|
+
case 2:
|
965
|
+
var value = /** @type {number} */ (reader.readInt32());
|
966
|
+
msg.setRegistrations(value);
|
967
|
+
break;
|
968
|
+
case 3:
|
969
|
+
var value = /** @type {number} */ (reader.readInt32());
|
970
|
+
msg.setActiveUsers(value);
|
971
|
+
break;
|
972
|
+
case 4:
|
973
|
+
var value = /** @type {number} */ (reader.readInt32());
|
974
|
+
msg.setTotalFtdCount(value);
|
975
|
+
break;
|
976
|
+
case 5:
|
977
|
+
var value = /** @type {number} */ (reader.readFloat());
|
978
|
+
msg.setTotalFtdSum(value);
|
979
|
+
break;
|
980
|
+
case 6:
|
981
|
+
var value = /** @type {number} */ (reader.readFloat());
|
982
|
+
msg.setTotalFtdAvg(value);
|
983
|
+
break;
|
984
|
+
case 7:
|
985
|
+
var value = /** @type {number} */ (reader.readInt32());
|
986
|
+
msg.setRedepCount(value);
|
987
|
+
break;
|
988
|
+
case 8:
|
989
|
+
var value = /** @type {number} */ (reader.readFloat());
|
990
|
+
msg.setRedepSum(value);
|
991
|
+
break;
|
992
|
+
case 9:
|
993
|
+
var value = /** @type {number} */ (reader.readFloat());
|
994
|
+
msg.setRedepAvg(value);
|
995
|
+
break;
|
996
|
+
case 10:
|
997
|
+
var value = /** @type {number} */ (reader.readInt32());
|
998
|
+
msg.setTotalDepCount(value);
|
999
|
+
break;
|
1000
|
+
case 11:
|
1001
|
+
var value = /** @type {number} */ (reader.readFloat());
|
1002
|
+
msg.setTotalDepSum(value);
|
1003
|
+
break;
|
1004
|
+
case 12:
|
1005
|
+
var value = /** @type {number} */ (reader.readFloat());
|
1006
|
+
msg.setTotalDepAgv(value);
|
1007
|
+
break;
|
1008
|
+
case 13:
|
1009
|
+
var value = /** @type {number} */ (reader.readFloat());
|
1010
|
+
msg.setTotalTurnover(value);
|
1011
|
+
break;
|
1012
|
+
case 14:
|
1013
|
+
var value = /** @type {number} */ (reader.readFloat());
|
1014
|
+
msg.setTotalGgr(value);
|
1015
|
+
break;
|
1016
|
+
case 15:
|
1017
|
+
var value = /** @type {number} */ (reader.readFloat());
|
1018
|
+
msg.setRealTurnover(value);
|
1019
|
+
break;
|
1020
|
+
case 16:
|
1021
|
+
var value = /** @type {number} */ (reader.readFloat());
|
1022
|
+
msg.setRealGgr(value);
|
1023
|
+
break;
|
1024
|
+
case 17:
|
1025
|
+
var value = /** @type {number} */ (reader.readFloat());
|
1026
|
+
msg.setBonusTurnover(value);
|
1027
|
+
break;
|
1028
|
+
case 18:
|
1029
|
+
var value = /** @type {number} */ (reader.readFloat());
|
1030
|
+
msg.setBonusGgr(value);
|
1031
|
+
break;
|
1032
|
+
case 19:
|
1033
|
+
var value = /** @type {number} */ (reader.readFloat());
|
1034
|
+
msg.setInOutSum(value);
|
1035
|
+
break;
|
1036
|
+
case 20:
|
1037
|
+
var value = /** @type {number} */ (reader.readFloat());
|
1038
|
+
msg.setInOutPercentages(value);
|
1039
|
+
break;
|
1040
|
+
case 21:
|
1041
|
+
var value = /** @type {number} */ (reader.readFloat());
|
1042
|
+
msg.setDepToActivePlayer(value);
|
1043
|
+
break;
|
1044
|
+
default:
|
1045
|
+
reader.skipField();
|
1046
|
+
break;
|
1047
|
+
}
|
1048
|
+
}
|
1049
|
+
return msg;
|
1050
|
+
};
|
1051
|
+
|
1052
|
+
|
1053
|
+
/**
|
1054
|
+
* Serializes the message to binary data (in protobuf wire format).
|
1055
|
+
* @return {!Uint8Array}
|
1056
|
+
*/
|
1057
|
+
proto.analytic.GlobalCasinoItem.prototype.serializeBinary = function() {
|
1058
|
+
var writer = new jspb.BinaryWriter();
|
1059
|
+
proto.analytic.GlobalCasinoItem.serializeBinaryToWriter(this, writer);
|
1060
|
+
return writer.getResultBuffer();
|
1061
|
+
};
|
1062
|
+
|
1063
|
+
|
1064
|
+
/**
|
1065
|
+
* Serializes the given message to binary data (in protobuf wire
|
1066
|
+
* format), writing to the given BinaryWriter.
|
1067
|
+
* @param {!proto.analytic.GlobalCasinoItem} message
|
1068
|
+
* @param {!jspb.BinaryWriter} writer
|
1069
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
1070
|
+
*/
|
1071
|
+
proto.analytic.GlobalCasinoItem.serializeBinaryToWriter = function(message, writer) {
|
1072
|
+
var f = undefined;
|
1073
|
+
f = message.getDate();
|
1074
|
+
if (f.length > 0) {
|
1075
|
+
writer.writeString(
|
1076
|
+
1,
|
1077
|
+
f
|
1078
|
+
);
|
1079
|
+
}
|
1080
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 2));
|
1081
|
+
if (f != null) {
|
1082
|
+
writer.writeInt32(
|
1083
|
+
2,
|
1084
|
+
f
|
1085
|
+
);
|
1086
|
+
}
|
1087
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 3));
|
1088
|
+
if (f != null) {
|
1089
|
+
writer.writeInt32(
|
1090
|
+
3,
|
1091
|
+
f
|
1092
|
+
);
|
1093
|
+
}
|
1094
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 4));
|
1095
|
+
if (f != null) {
|
1096
|
+
writer.writeInt32(
|
1097
|
+
4,
|
1098
|
+
f
|
1099
|
+
);
|
1100
|
+
}
|
1101
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 5));
|
1102
|
+
if (f != null) {
|
1103
|
+
writer.writeFloat(
|
1104
|
+
5,
|
1105
|
+
f
|
1106
|
+
);
|
1107
|
+
}
|
1108
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 6));
|
1109
|
+
if (f != null) {
|
1110
|
+
writer.writeFloat(
|
1111
|
+
6,
|
1112
|
+
f
|
1113
|
+
);
|
1114
|
+
}
|
1115
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 7));
|
1116
|
+
if (f != null) {
|
1117
|
+
writer.writeInt32(
|
1118
|
+
7,
|
1119
|
+
f
|
1120
|
+
);
|
1121
|
+
}
|
1122
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 8));
|
1123
|
+
if (f != null) {
|
1124
|
+
writer.writeFloat(
|
1125
|
+
8,
|
1126
|
+
f
|
1127
|
+
);
|
1128
|
+
}
|
1129
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 9));
|
1130
|
+
if (f != null) {
|
1131
|
+
writer.writeFloat(
|
1132
|
+
9,
|
1133
|
+
f
|
1134
|
+
);
|
1135
|
+
}
|
1136
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 10));
|
1137
|
+
if (f != null) {
|
1138
|
+
writer.writeInt32(
|
1139
|
+
10,
|
1140
|
+
f
|
1141
|
+
);
|
1142
|
+
}
|
1143
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 11));
|
1144
|
+
if (f != null) {
|
1145
|
+
writer.writeFloat(
|
1146
|
+
11,
|
1147
|
+
f
|
1148
|
+
);
|
1149
|
+
}
|
1150
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 12));
|
1151
|
+
if (f != null) {
|
1152
|
+
writer.writeFloat(
|
1153
|
+
12,
|
1154
|
+
f
|
1155
|
+
);
|
1156
|
+
}
|
1157
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 13));
|
1158
|
+
if (f != null) {
|
1159
|
+
writer.writeFloat(
|
1160
|
+
13,
|
1161
|
+
f
|
1162
|
+
);
|
1163
|
+
}
|
1164
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 14));
|
1165
|
+
if (f != null) {
|
1166
|
+
writer.writeFloat(
|
1167
|
+
14,
|
1168
|
+
f
|
1169
|
+
);
|
1170
|
+
}
|
1171
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 15));
|
1172
|
+
if (f != null) {
|
1173
|
+
writer.writeFloat(
|
1174
|
+
15,
|
1175
|
+
f
|
1176
|
+
);
|
1177
|
+
}
|
1178
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 16));
|
1179
|
+
if (f != null) {
|
1180
|
+
writer.writeFloat(
|
1181
|
+
16,
|
1182
|
+
f
|
1183
|
+
);
|
1184
|
+
}
|
1185
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 17));
|
1186
|
+
if (f != null) {
|
1187
|
+
writer.writeFloat(
|
1188
|
+
17,
|
1189
|
+
f
|
1190
|
+
);
|
1191
|
+
}
|
1192
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 18));
|
1193
|
+
if (f != null) {
|
1194
|
+
writer.writeFloat(
|
1195
|
+
18,
|
1196
|
+
f
|
1197
|
+
);
|
1198
|
+
}
|
1199
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 19));
|
1200
|
+
if (f != null) {
|
1201
|
+
writer.writeFloat(
|
1202
|
+
19,
|
1203
|
+
f
|
1204
|
+
);
|
1205
|
+
}
|
1206
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 20));
|
1207
|
+
if (f != null) {
|
1208
|
+
writer.writeFloat(
|
1209
|
+
20,
|
1210
|
+
f
|
1211
|
+
);
|
1212
|
+
}
|
1213
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 21));
|
1214
|
+
if (f != null) {
|
1215
|
+
writer.writeFloat(
|
1216
|
+
21,
|
1217
|
+
f
|
1218
|
+
);
|
1219
|
+
}
|
1220
|
+
};
|
1221
|
+
|
1222
|
+
|
1223
|
+
/**
|
1224
|
+
* optional string date = 1;
|
1225
|
+
* @return {string}
|
1226
|
+
*/
|
1227
|
+
proto.analytic.GlobalCasinoItem.prototype.getDate = function() {
|
1228
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
|
1229
|
+
};
|
1230
|
+
|
1231
|
+
|
1232
|
+
/**
|
1233
|
+
* @param {string} value
|
1234
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1235
|
+
*/
|
1236
|
+
proto.analytic.GlobalCasinoItem.prototype.setDate = function(value) {
|
1237
|
+
return jspb.Message.setProto3StringField(this, 1, value);
|
1238
|
+
};
|
1239
|
+
|
1240
|
+
|
1241
|
+
/**
|
1242
|
+
* optional int32 registrations = 2;
|
1243
|
+
* @return {number}
|
1244
|
+
*/
|
1245
|
+
proto.analytic.GlobalCasinoItem.prototype.getRegistrations = function() {
|
1246
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
1247
|
+
};
|
1248
|
+
|
1249
|
+
|
1250
|
+
/**
|
1251
|
+
* @param {number} value
|
1252
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1253
|
+
*/
|
1254
|
+
proto.analytic.GlobalCasinoItem.prototype.setRegistrations = function(value) {
|
1255
|
+
return jspb.Message.setField(this, 2, value);
|
1256
|
+
};
|
1257
|
+
|
1258
|
+
|
1259
|
+
/**
|
1260
|
+
* Clears the field making it undefined.
|
1261
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1262
|
+
*/
|
1263
|
+
proto.analytic.GlobalCasinoItem.prototype.clearRegistrations = function() {
|
1264
|
+
return jspb.Message.setField(this, 2, undefined);
|
1265
|
+
};
|
1266
|
+
|
1267
|
+
|
1268
|
+
/**
|
1269
|
+
* Returns whether this field is set.
|
1270
|
+
* @return {boolean}
|
1271
|
+
*/
|
1272
|
+
proto.analytic.GlobalCasinoItem.prototype.hasRegistrations = function() {
|
1273
|
+
return jspb.Message.getField(this, 2) != null;
|
1274
|
+
};
|
1275
|
+
|
1276
|
+
|
1277
|
+
/**
|
1278
|
+
* optional int32 active_users = 3;
|
1279
|
+
* @return {number}
|
1280
|
+
*/
|
1281
|
+
proto.analytic.GlobalCasinoItem.prototype.getActiveUsers = function() {
|
1282
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
1283
|
+
};
|
1284
|
+
|
1285
|
+
|
1286
|
+
/**
|
1287
|
+
* @param {number} value
|
1288
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1289
|
+
*/
|
1290
|
+
proto.analytic.GlobalCasinoItem.prototype.setActiveUsers = function(value) {
|
1291
|
+
return jspb.Message.setField(this, 3, value);
|
1292
|
+
};
|
1293
|
+
|
1294
|
+
|
1295
|
+
/**
|
1296
|
+
* Clears the field making it undefined.
|
1297
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1298
|
+
*/
|
1299
|
+
proto.analytic.GlobalCasinoItem.prototype.clearActiveUsers = function() {
|
1300
|
+
return jspb.Message.setField(this, 3, undefined);
|
1301
|
+
};
|
1302
|
+
|
1303
|
+
|
1304
|
+
/**
|
1305
|
+
* Returns whether this field is set.
|
1306
|
+
* @return {boolean}
|
1307
|
+
*/
|
1308
|
+
proto.analytic.GlobalCasinoItem.prototype.hasActiveUsers = function() {
|
1309
|
+
return jspb.Message.getField(this, 3) != null;
|
1310
|
+
};
|
1311
|
+
|
1312
|
+
|
1313
|
+
/**
|
1314
|
+
* optional int32 total_ftd_count = 4;
|
1315
|
+
* @return {number}
|
1316
|
+
*/
|
1317
|
+
proto.analytic.GlobalCasinoItem.prototype.getTotalFtdCount = function() {
|
1318
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 4, 0));
|
1319
|
+
};
|
1320
|
+
|
1321
|
+
|
1322
|
+
/**
|
1323
|
+
* @param {number} value
|
1324
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1325
|
+
*/
|
1326
|
+
proto.analytic.GlobalCasinoItem.prototype.setTotalFtdCount = function(value) {
|
1327
|
+
return jspb.Message.setField(this, 4, value);
|
1328
|
+
};
|
1329
|
+
|
1330
|
+
|
1331
|
+
/**
|
1332
|
+
* Clears the field making it undefined.
|
1333
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1334
|
+
*/
|
1335
|
+
proto.analytic.GlobalCasinoItem.prototype.clearTotalFtdCount = function() {
|
1336
|
+
return jspb.Message.setField(this, 4, undefined);
|
1337
|
+
};
|
1338
|
+
|
1339
|
+
|
1340
|
+
/**
|
1341
|
+
* Returns whether this field is set.
|
1342
|
+
* @return {boolean}
|
1343
|
+
*/
|
1344
|
+
proto.analytic.GlobalCasinoItem.prototype.hasTotalFtdCount = function() {
|
1345
|
+
return jspb.Message.getField(this, 4) != null;
|
1346
|
+
};
|
1347
|
+
|
1348
|
+
|
1349
|
+
/**
|
1350
|
+
* optional float total_ftd_sum = 5;
|
1351
|
+
* @return {number}
|
1352
|
+
*/
|
1353
|
+
proto.analytic.GlobalCasinoItem.prototype.getTotalFtdSum = function() {
|
1354
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 5, 0.0));
|
1355
|
+
};
|
1356
|
+
|
1357
|
+
|
1358
|
+
/**
|
1359
|
+
* @param {number} value
|
1360
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1361
|
+
*/
|
1362
|
+
proto.analytic.GlobalCasinoItem.prototype.setTotalFtdSum = function(value) {
|
1363
|
+
return jspb.Message.setField(this, 5, value);
|
1364
|
+
};
|
1365
|
+
|
1366
|
+
|
1367
|
+
/**
|
1368
|
+
* Clears the field making it undefined.
|
1369
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1370
|
+
*/
|
1371
|
+
proto.analytic.GlobalCasinoItem.prototype.clearTotalFtdSum = function() {
|
1372
|
+
return jspb.Message.setField(this, 5, undefined);
|
1373
|
+
};
|
1374
|
+
|
1375
|
+
|
1376
|
+
/**
|
1377
|
+
* Returns whether this field is set.
|
1378
|
+
* @return {boolean}
|
1379
|
+
*/
|
1380
|
+
proto.analytic.GlobalCasinoItem.prototype.hasTotalFtdSum = function() {
|
1381
|
+
return jspb.Message.getField(this, 5) != null;
|
1382
|
+
};
|
1383
|
+
|
1384
|
+
|
1385
|
+
/**
|
1386
|
+
* optional float total_ftd_avg = 6;
|
1387
|
+
* @return {number}
|
1388
|
+
*/
|
1389
|
+
proto.analytic.GlobalCasinoItem.prototype.getTotalFtdAvg = function() {
|
1390
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 6, 0.0));
|
1391
|
+
};
|
1392
|
+
|
1393
|
+
|
1394
|
+
/**
|
1395
|
+
* @param {number} value
|
1396
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1397
|
+
*/
|
1398
|
+
proto.analytic.GlobalCasinoItem.prototype.setTotalFtdAvg = function(value) {
|
1399
|
+
return jspb.Message.setField(this, 6, value);
|
1400
|
+
};
|
1401
|
+
|
1402
|
+
|
1403
|
+
/**
|
1404
|
+
* Clears the field making it undefined.
|
1405
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1406
|
+
*/
|
1407
|
+
proto.analytic.GlobalCasinoItem.prototype.clearTotalFtdAvg = function() {
|
1408
|
+
return jspb.Message.setField(this, 6, undefined);
|
1409
|
+
};
|
1410
|
+
|
1411
|
+
|
1412
|
+
/**
|
1413
|
+
* Returns whether this field is set.
|
1414
|
+
* @return {boolean}
|
1415
|
+
*/
|
1416
|
+
proto.analytic.GlobalCasinoItem.prototype.hasTotalFtdAvg = function() {
|
1417
|
+
return jspb.Message.getField(this, 6) != null;
|
1418
|
+
};
|
1419
|
+
|
1420
|
+
|
1421
|
+
/**
|
1422
|
+
* optional int32 redep_count = 7;
|
1423
|
+
* @return {number}
|
1424
|
+
*/
|
1425
|
+
proto.analytic.GlobalCasinoItem.prototype.getRedepCount = function() {
|
1426
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 7, 0));
|
1427
|
+
};
|
1428
|
+
|
1429
|
+
|
1430
|
+
/**
|
1431
|
+
* @param {number} value
|
1432
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1433
|
+
*/
|
1434
|
+
proto.analytic.GlobalCasinoItem.prototype.setRedepCount = function(value) {
|
1435
|
+
return jspb.Message.setField(this, 7, value);
|
1436
|
+
};
|
1437
|
+
|
1438
|
+
|
1439
|
+
/**
|
1440
|
+
* Clears the field making it undefined.
|
1441
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1442
|
+
*/
|
1443
|
+
proto.analytic.GlobalCasinoItem.prototype.clearRedepCount = function() {
|
1444
|
+
return jspb.Message.setField(this, 7, undefined);
|
1445
|
+
};
|
1446
|
+
|
1447
|
+
|
1448
|
+
/**
|
1449
|
+
* Returns whether this field is set.
|
1450
|
+
* @return {boolean}
|
1451
|
+
*/
|
1452
|
+
proto.analytic.GlobalCasinoItem.prototype.hasRedepCount = function() {
|
1453
|
+
return jspb.Message.getField(this, 7) != null;
|
1454
|
+
};
|
1455
|
+
|
1456
|
+
|
1457
|
+
/**
|
1458
|
+
* optional float redep_sum = 8;
|
1459
|
+
* @return {number}
|
1460
|
+
*/
|
1461
|
+
proto.analytic.GlobalCasinoItem.prototype.getRedepSum = function() {
|
1462
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 8, 0.0));
|
1463
|
+
};
|
1464
|
+
|
1465
|
+
|
1466
|
+
/**
|
1467
|
+
* @param {number} value
|
1468
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1469
|
+
*/
|
1470
|
+
proto.analytic.GlobalCasinoItem.prototype.setRedepSum = function(value) {
|
1471
|
+
return jspb.Message.setField(this, 8, value);
|
1472
|
+
};
|
1473
|
+
|
1474
|
+
|
1475
|
+
/**
|
1476
|
+
* Clears the field making it undefined.
|
1477
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1478
|
+
*/
|
1479
|
+
proto.analytic.GlobalCasinoItem.prototype.clearRedepSum = function() {
|
1480
|
+
return jspb.Message.setField(this, 8, undefined);
|
1481
|
+
};
|
1482
|
+
|
1483
|
+
|
1484
|
+
/**
|
1485
|
+
* Returns whether this field is set.
|
1486
|
+
* @return {boolean}
|
1487
|
+
*/
|
1488
|
+
proto.analytic.GlobalCasinoItem.prototype.hasRedepSum = function() {
|
1489
|
+
return jspb.Message.getField(this, 8) != null;
|
1490
|
+
};
|
1491
|
+
|
1492
|
+
|
1493
|
+
/**
|
1494
|
+
* optional float redep_avg = 9;
|
1495
|
+
* @return {number}
|
1496
|
+
*/
|
1497
|
+
proto.analytic.GlobalCasinoItem.prototype.getRedepAvg = function() {
|
1498
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 9, 0.0));
|
1499
|
+
};
|
1500
|
+
|
1501
|
+
|
1502
|
+
/**
|
1503
|
+
* @param {number} value
|
1504
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1505
|
+
*/
|
1506
|
+
proto.analytic.GlobalCasinoItem.prototype.setRedepAvg = function(value) {
|
1507
|
+
return jspb.Message.setField(this, 9, value);
|
1508
|
+
};
|
1509
|
+
|
1510
|
+
|
1511
|
+
/**
|
1512
|
+
* Clears the field making it undefined.
|
1513
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1514
|
+
*/
|
1515
|
+
proto.analytic.GlobalCasinoItem.prototype.clearRedepAvg = function() {
|
1516
|
+
return jspb.Message.setField(this, 9, undefined);
|
1517
|
+
};
|
1518
|
+
|
1519
|
+
|
1520
|
+
/**
|
1521
|
+
* Returns whether this field is set.
|
1522
|
+
* @return {boolean}
|
1523
|
+
*/
|
1524
|
+
proto.analytic.GlobalCasinoItem.prototype.hasRedepAvg = function() {
|
1525
|
+
return jspb.Message.getField(this, 9) != null;
|
1526
|
+
};
|
1527
|
+
|
1528
|
+
|
1529
|
+
/**
|
1530
|
+
* optional int32 total_dep_count = 10;
|
1531
|
+
* @return {number}
|
1532
|
+
*/
|
1533
|
+
proto.analytic.GlobalCasinoItem.prototype.getTotalDepCount = function() {
|
1534
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 10, 0));
|
1535
|
+
};
|
1536
|
+
|
1537
|
+
|
1538
|
+
/**
|
1539
|
+
* @param {number} value
|
1540
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1541
|
+
*/
|
1542
|
+
proto.analytic.GlobalCasinoItem.prototype.setTotalDepCount = function(value) {
|
1543
|
+
return jspb.Message.setField(this, 10, value);
|
1544
|
+
};
|
1545
|
+
|
1546
|
+
|
1547
|
+
/**
|
1548
|
+
* Clears the field making it undefined.
|
1549
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1550
|
+
*/
|
1551
|
+
proto.analytic.GlobalCasinoItem.prototype.clearTotalDepCount = function() {
|
1552
|
+
return jspb.Message.setField(this, 10, undefined);
|
1553
|
+
};
|
1554
|
+
|
1555
|
+
|
1556
|
+
/**
|
1557
|
+
* Returns whether this field is set.
|
1558
|
+
* @return {boolean}
|
1559
|
+
*/
|
1560
|
+
proto.analytic.GlobalCasinoItem.prototype.hasTotalDepCount = function() {
|
1561
|
+
return jspb.Message.getField(this, 10) != null;
|
1562
|
+
};
|
1563
|
+
|
1564
|
+
|
1565
|
+
/**
|
1566
|
+
* optional float total_dep_sum = 11;
|
1567
|
+
* @return {number}
|
1568
|
+
*/
|
1569
|
+
proto.analytic.GlobalCasinoItem.prototype.getTotalDepSum = function() {
|
1570
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 11, 0.0));
|
1571
|
+
};
|
1572
|
+
|
1573
|
+
|
1574
|
+
/**
|
1575
|
+
* @param {number} value
|
1576
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1577
|
+
*/
|
1578
|
+
proto.analytic.GlobalCasinoItem.prototype.setTotalDepSum = function(value) {
|
1579
|
+
return jspb.Message.setField(this, 11, value);
|
1580
|
+
};
|
1581
|
+
|
1582
|
+
|
1583
|
+
/**
|
1584
|
+
* Clears the field making it undefined.
|
1585
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1586
|
+
*/
|
1587
|
+
proto.analytic.GlobalCasinoItem.prototype.clearTotalDepSum = function() {
|
1588
|
+
return jspb.Message.setField(this, 11, undefined);
|
1589
|
+
};
|
1590
|
+
|
1591
|
+
|
1592
|
+
/**
|
1593
|
+
* Returns whether this field is set.
|
1594
|
+
* @return {boolean}
|
1595
|
+
*/
|
1596
|
+
proto.analytic.GlobalCasinoItem.prototype.hasTotalDepSum = function() {
|
1597
|
+
return jspb.Message.getField(this, 11) != null;
|
1598
|
+
};
|
1599
|
+
|
1600
|
+
|
1601
|
+
/**
|
1602
|
+
* optional float total_dep_agv = 12;
|
1603
|
+
* @return {number}
|
1604
|
+
*/
|
1605
|
+
proto.analytic.GlobalCasinoItem.prototype.getTotalDepAgv = function() {
|
1606
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 12, 0.0));
|
1607
|
+
};
|
1608
|
+
|
1609
|
+
|
1610
|
+
/**
|
1611
|
+
* @param {number} value
|
1612
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1613
|
+
*/
|
1614
|
+
proto.analytic.GlobalCasinoItem.prototype.setTotalDepAgv = function(value) {
|
1615
|
+
return jspb.Message.setField(this, 12, value);
|
1616
|
+
};
|
1617
|
+
|
1618
|
+
|
1619
|
+
/**
|
1620
|
+
* Clears the field making it undefined.
|
1621
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1622
|
+
*/
|
1623
|
+
proto.analytic.GlobalCasinoItem.prototype.clearTotalDepAgv = function() {
|
1624
|
+
return jspb.Message.setField(this, 12, undefined);
|
1625
|
+
};
|
1626
|
+
|
1627
|
+
|
1628
|
+
/**
|
1629
|
+
* Returns whether this field is set.
|
1630
|
+
* @return {boolean}
|
1631
|
+
*/
|
1632
|
+
proto.analytic.GlobalCasinoItem.prototype.hasTotalDepAgv = function() {
|
1633
|
+
return jspb.Message.getField(this, 12) != null;
|
1634
|
+
};
|
1635
|
+
|
1636
|
+
|
1637
|
+
/**
|
1638
|
+
* optional float total_turnover = 13;
|
1639
|
+
* @return {number}
|
1640
|
+
*/
|
1641
|
+
proto.analytic.GlobalCasinoItem.prototype.getTotalTurnover = function() {
|
1642
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 13, 0.0));
|
1643
|
+
};
|
1644
|
+
|
1645
|
+
|
1646
|
+
/**
|
1647
|
+
* @param {number} value
|
1648
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1649
|
+
*/
|
1650
|
+
proto.analytic.GlobalCasinoItem.prototype.setTotalTurnover = function(value) {
|
1651
|
+
return jspb.Message.setField(this, 13, value);
|
1652
|
+
};
|
1653
|
+
|
1654
|
+
|
1655
|
+
/**
|
1656
|
+
* Clears the field making it undefined.
|
1657
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1658
|
+
*/
|
1659
|
+
proto.analytic.GlobalCasinoItem.prototype.clearTotalTurnover = function() {
|
1660
|
+
return jspb.Message.setField(this, 13, undefined);
|
1661
|
+
};
|
1662
|
+
|
1663
|
+
|
1664
|
+
/**
|
1665
|
+
* Returns whether this field is set.
|
1666
|
+
* @return {boolean}
|
1667
|
+
*/
|
1668
|
+
proto.analytic.GlobalCasinoItem.prototype.hasTotalTurnover = function() {
|
1669
|
+
return jspb.Message.getField(this, 13) != null;
|
1670
|
+
};
|
1671
|
+
|
1672
|
+
|
1673
|
+
/**
|
1674
|
+
* optional float total_ggr = 14;
|
1675
|
+
* @return {number}
|
1676
|
+
*/
|
1677
|
+
proto.analytic.GlobalCasinoItem.prototype.getTotalGgr = function() {
|
1678
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 14, 0.0));
|
1679
|
+
};
|
1680
|
+
|
1681
|
+
|
1682
|
+
/**
|
1683
|
+
* @param {number} value
|
1684
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1685
|
+
*/
|
1686
|
+
proto.analytic.GlobalCasinoItem.prototype.setTotalGgr = function(value) {
|
1687
|
+
return jspb.Message.setField(this, 14, value);
|
1688
|
+
};
|
1689
|
+
|
1690
|
+
|
1691
|
+
/**
|
1692
|
+
* Clears the field making it undefined.
|
1693
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1694
|
+
*/
|
1695
|
+
proto.analytic.GlobalCasinoItem.prototype.clearTotalGgr = function() {
|
1696
|
+
return jspb.Message.setField(this, 14, undefined);
|
1697
|
+
};
|
1698
|
+
|
1699
|
+
|
1700
|
+
/**
|
1701
|
+
* Returns whether this field is set.
|
1702
|
+
* @return {boolean}
|
1703
|
+
*/
|
1704
|
+
proto.analytic.GlobalCasinoItem.prototype.hasTotalGgr = function() {
|
1705
|
+
return jspb.Message.getField(this, 14) != null;
|
1706
|
+
};
|
1707
|
+
|
1708
|
+
|
1709
|
+
/**
|
1710
|
+
* optional float real_turnover = 15;
|
1711
|
+
* @return {number}
|
1712
|
+
*/
|
1713
|
+
proto.analytic.GlobalCasinoItem.prototype.getRealTurnover = function() {
|
1714
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 15, 0.0));
|
1715
|
+
};
|
1716
|
+
|
1717
|
+
|
1718
|
+
/**
|
1719
|
+
* @param {number} value
|
1720
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1721
|
+
*/
|
1722
|
+
proto.analytic.GlobalCasinoItem.prototype.setRealTurnover = function(value) {
|
1723
|
+
return jspb.Message.setField(this, 15, value);
|
1724
|
+
};
|
1725
|
+
|
1726
|
+
|
1727
|
+
/**
|
1728
|
+
* Clears the field making it undefined.
|
1729
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1730
|
+
*/
|
1731
|
+
proto.analytic.GlobalCasinoItem.prototype.clearRealTurnover = function() {
|
1732
|
+
return jspb.Message.setField(this, 15, undefined);
|
1733
|
+
};
|
1734
|
+
|
1735
|
+
|
1736
|
+
/**
|
1737
|
+
* Returns whether this field is set.
|
1738
|
+
* @return {boolean}
|
1739
|
+
*/
|
1740
|
+
proto.analytic.GlobalCasinoItem.prototype.hasRealTurnover = function() {
|
1741
|
+
return jspb.Message.getField(this, 15) != null;
|
1742
|
+
};
|
1743
|
+
|
1744
|
+
|
1745
|
+
/**
|
1746
|
+
* optional float real_ggr = 16;
|
1747
|
+
* @return {number}
|
1748
|
+
*/
|
1749
|
+
proto.analytic.GlobalCasinoItem.prototype.getRealGgr = function() {
|
1750
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 16, 0.0));
|
1751
|
+
};
|
1752
|
+
|
1753
|
+
|
1754
|
+
/**
|
1755
|
+
* @param {number} value
|
1756
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1757
|
+
*/
|
1758
|
+
proto.analytic.GlobalCasinoItem.prototype.setRealGgr = function(value) {
|
1759
|
+
return jspb.Message.setField(this, 16, value);
|
1760
|
+
};
|
1761
|
+
|
1762
|
+
|
1763
|
+
/**
|
1764
|
+
* Clears the field making it undefined.
|
1765
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1766
|
+
*/
|
1767
|
+
proto.analytic.GlobalCasinoItem.prototype.clearRealGgr = function() {
|
1768
|
+
return jspb.Message.setField(this, 16, undefined);
|
1769
|
+
};
|
1770
|
+
|
1771
|
+
|
1772
|
+
/**
|
1773
|
+
* Returns whether this field is set.
|
1774
|
+
* @return {boolean}
|
1775
|
+
*/
|
1776
|
+
proto.analytic.GlobalCasinoItem.prototype.hasRealGgr = function() {
|
1777
|
+
return jspb.Message.getField(this, 16) != null;
|
1778
|
+
};
|
1779
|
+
|
1780
|
+
|
1781
|
+
/**
|
1782
|
+
* optional float bonus_turnover = 17;
|
1783
|
+
* @return {number}
|
1784
|
+
*/
|
1785
|
+
proto.analytic.GlobalCasinoItem.prototype.getBonusTurnover = function() {
|
1786
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 17, 0.0));
|
1787
|
+
};
|
1788
|
+
|
1789
|
+
|
1790
|
+
/**
|
1791
|
+
* @param {number} value
|
1792
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1793
|
+
*/
|
1794
|
+
proto.analytic.GlobalCasinoItem.prototype.setBonusTurnover = function(value) {
|
1795
|
+
return jspb.Message.setField(this, 17, value);
|
1796
|
+
};
|
1797
|
+
|
1798
|
+
|
1799
|
+
/**
|
1800
|
+
* Clears the field making it undefined.
|
1801
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1802
|
+
*/
|
1803
|
+
proto.analytic.GlobalCasinoItem.prototype.clearBonusTurnover = function() {
|
1804
|
+
return jspb.Message.setField(this, 17, undefined);
|
1805
|
+
};
|
1806
|
+
|
1807
|
+
|
1808
|
+
/**
|
1809
|
+
* Returns whether this field is set.
|
1810
|
+
* @return {boolean}
|
1811
|
+
*/
|
1812
|
+
proto.analytic.GlobalCasinoItem.prototype.hasBonusTurnover = function() {
|
1813
|
+
return jspb.Message.getField(this, 17) != null;
|
1814
|
+
};
|
1815
|
+
|
1816
|
+
|
1817
|
+
/**
|
1818
|
+
* optional float bonus_ggr = 18;
|
1819
|
+
* @return {number}
|
1820
|
+
*/
|
1821
|
+
proto.analytic.GlobalCasinoItem.prototype.getBonusGgr = function() {
|
1822
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 18, 0.0));
|
1823
|
+
};
|
1824
|
+
|
1825
|
+
|
1826
|
+
/**
|
1827
|
+
* @param {number} value
|
1828
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1829
|
+
*/
|
1830
|
+
proto.analytic.GlobalCasinoItem.prototype.setBonusGgr = function(value) {
|
1831
|
+
return jspb.Message.setField(this, 18, value);
|
1832
|
+
};
|
1833
|
+
|
1834
|
+
|
1835
|
+
/**
|
1836
|
+
* Clears the field making it undefined.
|
1837
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1838
|
+
*/
|
1839
|
+
proto.analytic.GlobalCasinoItem.prototype.clearBonusGgr = function() {
|
1840
|
+
return jspb.Message.setField(this, 18, undefined);
|
1841
|
+
};
|
1842
|
+
|
1843
|
+
|
1844
|
+
/**
|
1845
|
+
* Returns whether this field is set.
|
1846
|
+
* @return {boolean}
|
1847
|
+
*/
|
1848
|
+
proto.analytic.GlobalCasinoItem.prototype.hasBonusGgr = function() {
|
1849
|
+
return jspb.Message.getField(this, 18) != null;
|
1850
|
+
};
|
1851
|
+
|
1852
|
+
|
1853
|
+
/**
|
1854
|
+
* optional float in_out_sum = 19;
|
1855
|
+
* @return {number}
|
1856
|
+
*/
|
1857
|
+
proto.analytic.GlobalCasinoItem.prototype.getInOutSum = function() {
|
1858
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 19, 0.0));
|
1859
|
+
};
|
1860
|
+
|
1861
|
+
|
1862
|
+
/**
|
1863
|
+
* @param {number} value
|
1864
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1865
|
+
*/
|
1866
|
+
proto.analytic.GlobalCasinoItem.prototype.setInOutSum = function(value) {
|
1867
|
+
return jspb.Message.setField(this, 19, value);
|
1868
|
+
};
|
1869
|
+
|
1870
|
+
|
1871
|
+
/**
|
1872
|
+
* Clears the field making it undefined.
|
1873
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1874
|
+
*/
|
1875
|
+
proto.analytic.GlobalCasinoItem.prototype.clearInOutSum = function() {
|
1876
|
+
return jspb.Message.setField(this, 19, undefined);
|
1877
|
+
};
|
1878
|
+
|
1879
|
+
|
1880
|
+
/**
|
1881
|
+
* Returns whether this field is set.
|
1882
|
+
* @return {boolean}
|
1883
|
+
*/
|
1884
|
+
proto.analytic.GlobalCasinoItem.prototype.hasInOutSum = function() {
|
1885
|
+
return jspb.Message.getField(this, 19) != null;
|
1886
|
+
};
|
1887
|
+
|
1888
|
+
|
1889
|
+
/**
|
1890
|
+
* optional float in_out_percentages = 20;
|
1891
|
+
* @return {number}
|
1892
|
+
*/
|
1893
|
+
proto.analytic.GlobalCasinoItem.prototype.getInOutPercentages = function() {
|
1894
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 20, 0.0));
|
1895
|
+
};
|
1896
|
+
|
1897
|
+
|
1898
|
+
/**
|
1899
|
+
* @param {number} value
|
1900
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1901
|
+
*/
|
1902
|
+
proto.analytic.GlobalCasinoItem.prototype.setInOutPercentages = function(value) {
|
1903
|
+
return jspb.Message.setField(this, 20, value);
|
1904
|
+
};
|
1905
|
+
|
1906
|
+
|
1907
|
+
/**
|
1908
|
+
* Clears the field making it undefined.
|
1909
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1910
|
+
*/
|
1911
|
+
proto.analytic.GlobalCasinoItem.prototype.clearInOutPercentages = function() {
|
1912
|
+
return jspb.Message.setField(this, 20, undefined);
|
1913
|
+
};
|
1914
|
+
|
1915
|
+
|
1916
|
+
/**
|
1917
|
+
* Returns whether this field is set.
|
1918
|
+
* @return {boolean}
|
1919
|
+
*/
|
1920
|
+
proto.analytic.GlobalCasinoItem.prototype.hasInOutPercentages = function() {
|
1921
|
+
return jspb.Message.getField(this, 20) != null;
|
1922
|
+
};
|
1923
|
+
|
1924
|
+
|
1925
|
+
/**
|
1926
|
+
* optional float dep_to_active_player = 21;
|
1927
|
+
* @return {number}
|
1928
|
+
*/
|
1929
|
+
proto.analytic.GlobalCasinoItem.prototype.getDepToActivePlayer = function() {
|
1930
|
+
return /** @type {number} */ (jspb.Message.getFloatingPointFieldWithDefault(this, 21, 0.0));
|
1931
|
+
};
|
1932
|
+
|
1933
|
+
|
1934
|
+
/**
|
1935
|
+
* @param {number} value
|
1936
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1937
|
+
*/
|
1938
|
+
proto.analytic.GlobalCasinoItem.prototype.setDepToActivePlayer = function(value) {
|
1939
|
+
return jspb.Message.setField(this, 21, value);
|
1940
|
+
};
|
1941
|
+
|
1942
|
+
|
1943
|
+
/**
|
1944
|
+
* Clears the field making it undefined.
|
1945
|
+
* @return {!proto.analytic.GlobalCasinoItem} returns this
|
1946
|
+
*/
|
1947
|
+
proto.analytic.GlobalCasinoItem.prototype.clearDepToActivePlayer = function() {
|
1948
|
+
return jspb.Message.setField(this, 21, undefined);
|
1949
|
+
};
|
1950
|
+
|
1951
|
+
|
1952
|
+
/**
|
1953
|
+
* Returns whether this field is set.
|
1954
|
+
* @return {boolean}
|
1955
|
+
*/
|
1956
|
+
proto.analytic.GlobalCasinoItem.prototype.hasDepToActivePlayer = function() {
|
1957
|
+
return jspb.Message.getField(this, 21) != null;
|
1958
|
+
};
|
1959
|
+
|
1960
|
+
|
1961
|
+
|
1962
|
+
/**
|
1963
|
+
* List of repeated fields within this message type.
|
1964
|
+
* @private {!Array<number>}
|
1965
|
+
* @const
|
1966
|
+
*/
|
1967
|
+
proto.analytic.GlobalCasinoResponse.repeatedFields_ = [1];
|
1968
|
+
|
1969
|
+
|
1970
|
+
|
1971
|
+
if (jspb.Message.GENERATE_TO_OBJECT) {
|
1972
|
+
/**
|
1973
|
+
* Creates an object representation of this proto.
|
1974
|
+
* Field names that are reserved in JavaScript and will be renamed to pb_name.
|
1975
|
+
* Optional fields that are not set will be set to undefined.
|
1976
|
+
* To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
|
1977
|
+
* For the list of reserved names please see:
|
1978
|
+
* net/proto2/compiler/js/internal/generator.cc#kKeyword.
|
1979
|
+
* @param {boolean=} opt_includeInstance Deprecated. whether to include the
|
1980
|
+
* JSPB instance for transitional soy proto support:
|
1981
|
+
* http://goto/soy-param-migration
|
1982
|
+
* @return {!Object}
|
1983
|
+
*/
|
1984
|
+
proto.analytic.GlobalCasinoResponse.prototype.toObject = function(opt_includeInstance) {
|
1985
|
+
return proto.analytic.GlobalCasinoResponse.toObject(opt_includeInstance, this);
|
1986
|
+
};
|
1987
|
+
|
1988
|
+
|
1989
|
+
/**
|
1990
|
+
* Static version of the {@see toObject} method.
|
1991
|
+
* @param {boolean|undefined} includeInstance Deprecated. Whether to include
|
1992
|
+
* the JSPB instance for transitional soy proto support:
|
1993
|
+
* http://goto/soy-param-migration
|
1994
|
+
* @param {!proto.analytic.GlobalCasinoResponse} msg The msg instance to transform.
|
1995
|
+
* @return {!Object}
|
1996
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
1997
|
+
*/
|
1998
|
+
proto.analytic.GlobalCasinoResponse.toObject = function(includeInstance, msg) {
|
1999
|
+
var f, obj = {
|
2000
|
+
itemsList: jspb.Message.toObjectList(msg.getItemsList(),
|
2001
|
+
proto.analytic.GlobalCasinoItem.toObject, includeInstance),
|
2002
|
+
totalPages: jspb.Message.getFieldWithDefault(msg, 2, 0),
|
2003
|
+
totalItems: jspb.Message.getFieldWithDefault(msg, 3, 0)
|
2004
|
+
};
|
2005
|
+
|
2006
|
+
if (includeInstance) {
|
2007
|
+
obj.$jspbMessageInstance = msg;
|
2008
|
+
}
|
2009
|
+
return obj;
|
2010
|
+
};
|
2011
|
+
}
|
2012
|
+
|
2013
|
+
|
2014
|
+
/**
|
2015
|
+
* Deserializes binary data (in protobuf wire format).
|
2016
|
+
* @param {jspb.ByteSource} bytes The bytes to deserialize.
|
2017
|
+
* @return {!proto.analytic.GlobalCasinoResponse}
|
2018
|
+
*/
|
2019
|
+
proto.analytic.GlobalCasinoResponse.deserializeBinary = function(bytes) {
|
2020
|
+
var reader = new jspb.BinaryReader(bytes);
|
2021
|
+
var msg = new proto.analytic.GlobalCasinoResponse;
|
2022
|
+
return proto.analytic.GlobalCasinoResponse.deserializeBinaryFromReader(msg, reader);
|
2023
|
+
};
|
2024
|
+
|
2025
|
+
|
2026
|
+
/**
|
2027
|
+
* Deserializes binary data (in protobuf wire format) from the
|
2028
|
+
* given reader into the given message object.
|
2029
|
+
* @param {!proto.analytic.GlobalCasinoResponse} msg The message object to deserialize into.
|
2030
|
+
* @param {!jspb.BinaryReader} reader The BinaryReader to use.
|
2031
|
+
* @return {!proto.analytic.GlobalCasinoResponse}
|
2032
|
+
*/
|
2033
|
+
proto.analytic.GlobalCasinoResponse.deserializeBinaryFromReader = function(msg, reader) {
|
2034
|
+
while (reader.nextField()) {
|
2035
|
+
if (reader.isEndGroup()) {
|
2036
|
+
break;
|
2037
|
+
}
|
2038
|
+
var field = reader.getFieldNumber();
|
2039
|
+
switch (field) {
|
2040
|
+
case 1:
|
2041
|
+
var value = new proto.analytic.GlobalCasinoItem;
|
2042
|
+
reader.readMessage(value,proto.analytic.GlobalCasinoItem.deserializeBinaryFromReader);
|
2043
|
+
msg.addItems(value);
|
2044
|
+
break;
|
2045
|
+
case 2:
|
2046
|
+
var value = /** @type {number} */ (reader.readInt32());
|
2047
|
+
msg.setTotalPages(value);
|
2048
|
+
break;
|
2049
|
+
case 3:
|
2050
|
+
var value = /** @type {number} */ (reader.readInt32());
|
2051
|
+
msg.setTotalItems(value);
|
2052
|
+
break;
|
2053
|
+
default:
|
2054
|
+
reader.skipField();
|
2055
|
+
break;
|
2056
|
+
}
|
2057
|
+
}
|
2058
|
+
return msg;
|
2059
|
+
};
|
2060
|
+
|
2061
|
+
|
2062
|
+
/**
|
2063
|
+
* Serializes the message to binary data (in protobuf wire format).
|
2064
|
+
* @return {!Uint8Array}
|
2065
|
+
*/
|
2066
|
+
proto.analytic.GlobalCasinoResponse.prototype.serializeBinary = function() {
|
2067
|
+
var writer = new jspb.BinaryWriter();
|
2068
|
+
proto.analytic.GlobalCasinoResponse.serializeBinaryToWriter(this, writer);
|
2069
|
+
return writer.getResultBuffer();
|
2070
|
+
};
|
2071
|
+
|
2072
|
+
|
2073
|
+
/**
|
2074
|
+
* Serializes the given message to binary data (in protobuf wire
|
2075
|
+
* format), writing to the given BinaryWriter.
|
2076
|
+
* @param {!proto.analytic.GlobalCasinoResponse} message
|
2077
|
+
* @param {!jspb.BinaryWriter} writer
|
2078
|
+
* @suppress {unusedLocalVariables} f is only used for nested messages
|
2079
|
+
*/
|
2080
|
+
proto.analytic.GlobalCasinoResponse.serializeBinaryToWriter = function(message, writer) {
|
2081
|
+
var f = undefined;
|
2082
|
+
f = message.getItemsList();
|
2083
|
+
if (f.length > 0) {
|
2084
|
+
writer.writeRepeatedMessage(
|
2085
|
+
1,
|
2086
|
+
f,
|
2087
|
+
proto.analytic.GlobalCasinoItem.serializeBinaryToWriter
|
2088
|
+
);
|
2089
|
+
}
|
2090
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 2));
|
2091
|
+
if (f != null) {
|
2092
|
+
writer.writeInt32(
|
2093
|
+
2,
|
2094
|
+
f
|
2095
|
+
);
|
2096
|
+
}
|
2097
|
+
f = /** @type {number} */ (jspb.Message.getField(message, 3));
|
2098
|
+
if (f != null) {
|
2099
|
+
writer.writeInt32(
|
2100
|
+
3,
|
2101
|
+
f
|
2102
|
+
);
|
2103
|
+
}
|
2104
|
+
};
|
2105
|
+
|
2106
|
+
|
2107
|
+
/**
|
2108
|
+
* repeated GlobalCasinoItem items = 1;
|
2109
|
+
* @return {!Array<!proto.analytic.GlobalCasinoItem>}
|
2110
|
+
*/
|
2111
|
+
proto.analytic.GlobalCasinoResponse.prototype.getItemsList = function() {
|
2112
|
+
return /** @type{!Array<!proto.analytic.GlobalCasinoItem>} */ (
|
2113
|
+
jspb.Message.getRepeatedWrapperField(this, proto.analytic.GlobalCasinoItem, 1));
|
2114
|
+
};
|
2115
|
+
|
2116
|
+
|
2117
|
+
/**
|
2118
|
+
* @param {!Array<!proto.analytic.GlobalCasinoItem>} value
|
2119
|
+
* @return {!proto.analytic.GlobalCasinoResponse} returns this
|
2120
|
+
*/
|
2121
|
+
proto.analytic.GlobalCasinoResponse.prototype.setItemsList = function(value) {
|
2122
|
+
return jspb.Message.setRepeatedWrapperField(this, 1, value);
|
2123
|
+
};
|
2124
|
+
|
2125
|
+
|
2126
|
+
/**
|
2127
|
+
* @param {!proto.analytic.GlobalCasinoItem=} opt_value
|
2128
|
+
* @param {number=} opt_index
|
2129
|
+
* @return {!proto.analytic.GlobalCasinoItem}
|
2130
|
+
*/
|
2131
|
+
proto.analytic.GlobalCasinoResponse.prototype.addItems = function(opt_value, opt_index) {
|
2132
|
+
return jspb.Message.addToRepeatedWrapperField(this, 1, opt_value, proto.analytic.GlobalCasinoItem, opt_index);
|
2133
|
+
};
|
2134
|
+
|
2135
|
+
|
2136
|
+
/**
|
2137
|
+
* Clears the list making it empty but non-null.
|
2138
|
+
* @return {!proto.analytic.GlobalCasinoResponse} returns this
|
2139
|
+
*/
|
2140
|
+
proto.analytic.GlobalCasinoResponse.prototype.clearItemsList = function() {
|
2141
|
+
return this.setItemsList([]);
|
2142
|
+
};
|
2143
|
+
|
2144
|
+
|
2145
|
+
/**
|
2146
|
+
* optional int32 total_pages = 2;
|
2147
|
+
* @return {number}
|
2148
|
+
*/
|
2149
|
+
proto.analytic.GlobalCasinoResponse.prototype.getTotalPages = function() {
|
2150
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
|
2151
|
+
};
|
2152
|
+
|
2153
|
+
|
2154
|
+
/**
|
2155
|
+
* @param {number} value
|
2156
|
+
* @return {!proto.analytic.GlobalCasinoResponse} returns this
|
2157
|
+
*/
|
2158
|
+
proto.analytic.GlobalCasinoResponse.prototype.setTotalPages = function(value) {
|
2159
|
+
return jspb.Message.setField(this, 2, value);
|
2160
|
+
};
|
2161
|
+
|
2162
|
+
|
2163
|
+
/**
|
2164
|
+
* Clears the field making it undefined.
|
2165
|
+
* @return {!proto.analytic.GlobalCasinoResponse} returns this
|
2166
|
+
*/
|
2167
|
+
proto.analytic.GlobalCasinoResponse.prototype.clearTotalPages = function() {
|
2168
|
+
return jspb.Message.setField(this, 2, undefined);
|
2169
|
+
};
|
2170
|
+
|
2171
|
+
|
2172
|
+
/**
|
2173
|
+
* Returns whether this field is set.
|
2174
|
+
* @return {boolean}
|
2175
|
+
*/
|
2176
|
+
proto.analytic.GlobalCasinoResponse.prototype.hasTotalPages = function() {
|
2177
|
+
return jspb.Message.getField(this, 2) != null;
|
2178
|
+
};
|
2179
|
+
|
2180
|
+
|
2181
|
+
/**
|
2182
|
+
* optional int32 total_items = 3;
|
2183
|
+
* @return {number}
|
2184
|
+
*/
|
2185
|
+
proto.analytic.GlobalCasinoResponse.prototype.getTotalItems = function() {
|
2186
|
+
return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
|
2187
|
+
};
|
2188
|
+
|
2189
|
+
|
2190
|
+
/**
|
2191
|
+
* @param {number} value
|
2192
|
+
* @return {!proto.analytic.GlobalCasinoResponse} returns this
|
2193
|
+
*/
|
2194
|
+
proto.analytic.GlobalCasinoResponse.prototype.setTotalItems = function(value) {
|
2195
|
+
return jspb.Message.setField(this, 3, value);
|
2196
|
+
};
|
2197
|
+
|
2198
|
+
|
2199
|
+
/**
|
2200
|
+
* Clears the field making it undefined.
|
2201
|
+
* @return {!proto.analytic.GlobalCasinoResponse} returns this
|
2202
|
+
*/
|
2203
|
+
proto.analytic.GlobalCasinoResponse.prototype.clearTotalItems = function() {
|
2204
|
+
return jspb.Message.setField(this, 3, undefined);
|
2205
|
+
};
|
2206
|
+
|
2207
|
+
|
2208
|
+
/**
|
2209
|
+
* Returns whether this field is set.
|
2210
|
+
* @return {boolean}
|
2211
|
+
*/
|
2212
|
+
proto.analytic.GlobalCasinoResponse.prototype.hasTotalItems = function() {
|
2213
|
+
return jspb.Message.getField(this, 3) != null;
|
2214
|
+
};
|
2215
|
+
|
2216
|
+
|
779
2217
|
goog.object.extend(exports, proto.analytic);
|