@aldiokta/protocgen 1.0.78 → 1.0.80

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.
@@ -21,6 +21,11 @@ var global =
21
21
  (function () { return this; }).call(null) ||
22
22
  Function('return this')();
23
23
 
24
+ var prisca_v1_global_meta_meta_pb = require('../../../../prisca/v1/global/meta/meta_pb.js');
25
+ goog.object.extend(proto, prisca_v1_global_meta_meta_pb);
26
+ goog.exportSymbol('proto.UpdateUser', null, global);
27
+ goog.exportSymbol('proto.UpdateUserRequest', null, global);
28
+ goog.exportSymbol('proto.UpdateUserResponse', null, global);
24
29
  goog.exportSymbol('proto.Users', null, global);
25
30
  /**
26
31
  * Generated by JsPbCodeGenerator.
@@ -43,6 +48,69 @@ if (goog.DEBUG && !COMPILED) {
43
48
  */
44
49
  proto.Users.displayName = 'proto.Users';
45
50
  }
51
+ /**
52
+ * Generated by JsPbCodeGenerator.
53
+ * @param {Array=} opt_data Optional initial data array, typically from a
54
+ * server response, or constructed directly in Javascript. The array is used
55
+ * in place and becomes part of the constructed object. It is not cloned.
56
+ * If no data is provided, the constructed object will be empty, but still
57
+ * valid.
58
+ * @extends {jspb.Message}
59
+ * @constructor
60
+ */
61
+ proto.UpdateUser = function(opt_data) {
62
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
63
+ };
64
+ goog.inherits(proto.UpdateUser, jspb.Message);
65
+ if (goog.DEBUG && !COMPILED) {
66
+ /**
67
+ * @public
68
+ * @override
69
+ */
70
+ proto.UpdateUser.displayName = 'proto.UpdateUser';
71
+ }
72
+ /**
73
+ * Generated by JsPbCodeGenerator.
74
+ * @param {Array=} opt_data Optional initial data array, typically from a
75
+ * server response, or constructed directly in Javascript. The array is used
76
+ * in place and becomes part of the constructed object. It is not cloned.
77
+ * If no data is provided, the constructed object will be empty, but still
78
+ * valid.
79
+ * @extends {jspb.Message}
80
+ * @constructor
81
+ */
82
+ proto.UpdateUserRequest = function(opt_data) {
83
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
84
+ };
85
+ goog.inherits(proto.UpdateUserRequest, jspb.Message);
86
+ if (goog.DEBUG && !COMPILED) {
87
+ /**
88
+ * @public
89
+ * @override
90
+ */
91
+ proto.UpdateUserRequest.displayName = 'proto.UpdateUserRequest';
92
+ }
93
+ /**
94
+ * Generated by JsPbCodeGenerator.
95
+ * @param {Array=} opt_data Optional initial data array, typically from a
96
+ * server response, or constructed directly in Javascript. The array is used
97
+ * in place and becomes part of the constructed object. It is not cloned.
98
+ * If no data is provided, the constructed object will be empty, but still
99
+ * valid.
100
+ * @extends {jspb.Message}
101
+ * @constructor
102
+ */
103
+ proto.UpdateUserResponse = function(opt_data) {
104
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
105
+ };
106
+ goog.inherits(proto.UpdateUserResponse, jspb.Message);
107
+ if (goog.DEBUG && !COMPILED) {
108
+ /**
109
+ * @public
110
+ * @override
111
+ */
112
+ proto.UpdateUserResponse.displayName = 'proto.UpdateUserResponse';
113
+ }
46
114
 
47
115
 
48
116
 
@@ -623,4 +691,556 @@ proto.Users.prototype.setUpdatedAt = function(value) {
623
691
  };
624
692
 
625
693
 
694
+
695
+
696
+
697
+ if (jspb.Message.GENERATE_TO_OBJECT) {
698
+ /**
699
+ * Creates an object representation of this proto.
700
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
701
+ * Optional fields that are not set will be set to undefined.
702
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
703
+ * For the list of reserved names please see:
704
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
705
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
706
+ * JSPB instance for transitional soy proto support:
707
+ * http://goto/soy-param-migration
708
+ * @return {!Object}
709
+ */
710
+ proto.UpdateUser.prototype.toObject = function(opt_includeInstance) {
711
+ return proto.UpdateUser.toObject(opt_includeInstance, this);
712
+ };
713
+
714
+
715
+ /**
716
+ * Static version of the {@see toObject} method.
717
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
718
+ * the JSPB instance for transitional soy proto support:
719
+ * http://goto/soy-param-migration
720
+ * @param {!proto.UpdateUser} msg The msg instance to transform.
721
+ * @return {!Object}
722
+ * @suppress {unusedLocalVariables} f is only used for nested messages
723
+ */
724
+ proto.UpdateUser.toObject = function(includeInstance, msg) {
725
+ var f, obj = {
726
+ name: jspb.Message.getFieldWithDefault(msg, 1, ""),
727
+ phoneNumber: jspb.Message.getFieldWithDefault(msg, 2, ""),
728
+ email: jspb.Message.getFieldWithDefault(msg, 3, "")
729
+ };
730
+
731
+ if (includeInstance) {
732
+ obj.$jspbMessageInstance = msg;
733
+ }
734
+ return obj;
735
+ };
736
+ }
737
+
738
+
739
+ /**
740
+ * Deserializes binary data (in protobuf wire format).
741
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
742
+ * @return {!proto.UpdateUser}
743
+ */
744
+ proto.UpdateUser.deserializeBinary = function(bytes) {
745
+ var reader = new jspb.BinaryReader(bytes);
746
+ var msg = new proto.UpdateUser;
747
+ return proto.UpdateUser.deserializeBinaryFromReader(msg, reader);
748
+ };
749
+
750
+
751
+ /**
752
+ * Deserializes binary data (in protobuf wire format) from the
753
+ * given reader into the given message object.
754
+ * @param {!proto.UpdateUser} msg The message object to deserialize into.
755
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
756
+ * @return {!proto.UpdateUser}
757
+ */
758
+ proto.UpdateUser.deserializeBinaryFromReader = function(msg, reader) {
759
+ while (reader.nextField()) {
760
+ if (reader.isEndGroup()) {
761
+ break;
762
+ }
763
+ var field = reader.getFieldNumber();
764
+ switch (field) {
765
+ case 1:
766
+ var value = /** @type {string} */ (reader.readString());
767
+ msg.setName(value);
768
+ break;
769
+ case 2:
770
+ var value = /** @type {string} */ (reader.readString());
771
+ msg.setPhoneNumber(value);
772
+ break;
773
+ case 3:
774
+ var value = /** @type {string} */ (reader.readString());
775
+ msg.setEmail(value);
776
+ break;
777
+ default:
778
+ reader.skipField();
779
+ break;
780
+ }
781
+ }
782
+ return msg;
783
+ };
784
+
785
+
786
+ /**
787
+ * Serializes the message to binary data (in protobuf wire format).
788
+ * @return {!Uint8Array}
789
+ */
790
+ proto.UpdateUser.prototype.serializeBinary = function() {
791
+ var writer = new jspb.BinaryWriter();
792
+ proto.UpdateUser.serializeBinaryToWriter(this, writer);
793
+ return writer.getResultBuffer();
794
+ };
795
+
796
+
797
+ /**
798
+ * Serializes the given message to binary data (in protobuf wire
799
+ * format), writing to the given BinaryWriter.
800
+ * @param {!proto.UpdateUser} message
801
+ * @param {!jspb.BinaryWriter} writer
802
+ * @suppress {unusedLocalVariables} f is only used for nested messages
803
+ */
804
+ proto.UpdateUser.serializeBinaryToWriter = function(message, writer) {
805
+ var f = undefined;
806
+ f = message.getName();
807
+ if (f.length > 0) {
808
+ writer.writeString(
809
+ 1,
810
+ f
811
+ );
812
+ }
813
+ f = message.getPhoneNumber();
814
+ if (f.length > 0) {
815
+ writer.writeString(
816
+ 2,
817
+ f
818
+ );
819
+ }
820
+ f = message.getEmail();
821
+ if (f.length > 0) {
822
+ writer.writeString(
823
+ 3,
824
+ f
825
+ );
826
+ }
827
+ };
828
+
829
+
830
+ /**
831
+ * optional string name = 1;
832
+ * @return {string}
833
+ */
834
+ proto.UpdateUser.prototype.getName = function() {
835
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
836
+ };
837
+
838
+
839
+ /**
840
+ * @param {string} value
841
+ * @return {!proto.UpdateUser} returns this
842
+ */
843
+ proto.UpdateUser.prototype.setName = function(value) {
844
+ return jspb.Message.setProto3StringField(this, 1, value);
845
+ };
846
+
847
+
848
+ /**
849
+ * optional string phone_number = 2;
850
+ * @return {string}
851
+ */
852
+ proto.UpdateUser.prototype.getPhoneNumber = function() {
853
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
854
+ };
855
+
856
+
857
+ /**
858
+ * @param {string} value
859
+ * @return {!proto.UpdateUser} returns this
860
+ */
861
+ proto.UpdateUser.prototype.setPhoneNumber = function(value) {
862
+ return jspb.Message.setProto3StringField(this, 2, value);
863
+ };
864
+
865
+
866
+ /**
867
+ * optional string email = 3;
868
+ * @return {string}
869
+ */
870
+ proto.UpdateUser.prototype.getEmail = function() {
871
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 3, ""));
872
+ };
873
+
874
+
875
+ /**
876
+ * @param {string} value
877
+ * @return {!proto.UpdateUser} returns this
878
+ */
879
+ proto.UpdateUser.prototype.setEmail = function(value) {
880
+ return jspb.Message.setProto3StringField(this, 3, value);
881
+ };
882
+
883
+
884
+
885
+
886
+
887
+ if (jspb.Message.GENERATE_TO_OBJECT) {
888
+ /**
889
+ * Creates an object representation of this proto.
890
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
891
+ * Optional fields that are not set will be set to undefined.
892
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
893
+ * For the list of reserved names please see:
894
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
895
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
896
+ * JSPB instance for transitional soy proto support:
897
+ * http://goto/soy-param-migration
898
+ * @return {!Object}
899
+ */
900
+ proto.UpdateUserRequest.prototype.toObject = function(opt_includeInstance) {
901
+ return proto.UpdateUserRequest.toObject(opt_includeInstance, this);
902
+ };
903
+
904
+
905
+ /**
906
+ * Static version of the {@see toObject} method.
907
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
908
+ * the JSPB instance for transitional soy proto support:
909
+ * http://goto/soy-param-migration
910
+ * @param {!proto.UpdateUserRequest} msg The msg instance to transform.
911
+ * @return {!Object}
912
+ * @suppress {unusedLocalVariables} f is only used for nested messages
913
+ */
914
+ proto.UpdateUserRequest.toObject = function(includeInstance, msg) {
915
+ var f, obj = {
916
+ user: (f = msg.getUser()) && proto.UpdateUser.toObject(includeInstance, f),
917
+ referencesId: jspb.Message.getFieldWithDefault(msg, 2, "")
918
+ };
919
+
920
+ if (includeInstance) {
921
+ obj.$jspbMessageInstance = msg;
922
+ }
923
+ return obj;
924
+ };
925
+ }
926
+
927
+
928
+ /**
929
+ * Deserializes binary data (in protobuf wire format).
930
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
931
+ * @return {!proto.UpdateUserRequest}
932
+ */
933
+ proto.UpdateUserRequest.deserializeBinary = function(bytes) {
934
+ var reader = new jspb.BinaryReader(bytes);
935
+ var msg = new proto.UpdateUserRequest;
936
+ return proto.UpdateUserRequest.deserializeBinaryFromReader(msg, reader);
937
+ };
938
+
939
+
940
+ /**
941
+ * Deserializes binary data (in protobuf wire format) from the
942
+ * given reader into the given message object.
943
+ * @param {!proto.UpdateUserRequest} msg The message object to deserialize into.
944
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
945
+ * @return {!proto.UpdateUserRequest}
946
+ */
947
+ proto.UpdateUserRequest.deserializeBinaryFromReader = function(msg, reader) {
948
+ while (reader.nextField()) {
949
+ if (reader.isEndGroup()) {
950
+ break;
951
+ }
952
+ var field = reader.getFieldNumber();
953
+ switch (field) {
954
+ case 1:
955
+ var value = new proto.UpdateUser;
956
+ reader.readMessage(value,proto.UpdateUser.deserializeBinaryFromReader);
957
+ msg.setUser(value);
958
+ break;
959
+ case 2:
960
+ var value = /** @type {string} */ (reader.readString());
961
+ msg.setReferencesId(value);
962
+ break;
963
+ default:
964
+ reader.skipField();
965
+ break;
966
+ }
967
+ }
968
+ return msg;
969
+ };
970
+
971
+
972
+ /**
973
+ * Serializes the message to binary data (in protobuf wire format).
974
+ * @return {!Uint8Array}
975
+ */
976
+ proto.UpdateUserRequest.prototype.serializeBinary = function() {
977
+ var writer = new jspb.BinaryWriter();
978
+ proto.UpdateUserRequest.serializeBinaryToWriter(this, writer);
979
+ return writer.getResultBuffer();
980
+ };
981
+
982
+
983
+ /**
984
+ * Serializes the given message to binary data (in protobuf wire
985
+ * format), writing to the given BinaryWriter.
986
+ * @param {!proto.UpdateUserRequest} message
987
+ * @param {!jspb.BinaryWriter} writer
988
+ * @suppress {unusedLocalVariables} f is only used for nested messages
989
+ */
990
+ proto.UpdateUserRequest.serializeBinaryToWriter = function(message, writer) {
991
+ var f = undefined;
992
+ f = message.getUser();
993
+ if (f != null) {
994
+ writer.writeMessage(
995
+ 1,
996
+ f,
997
+ proto.UpdateUser.serializeBinaryToWriter
998
+ );
999
+ }
1000
+ f = message.getReferencesId();
1001
+ if (f.length > 0) {
1002
+ writer.writeString(
1003
+ 2,
1004
+ f
1005
+ );
1006
+ }
1007
+ };
1008
+
1009
+
1010
+ /**
1011
+ * optional UpdateUser user = 1;
1012
+ * @return {?proto.UpdateUser}
1013
+ */
1014
+ proto.UpdateUserRequest.prototype.getUser = function() {
1015
+ return /** @type{?proto.UpdateUser} */ (
1016
+ jspb.Message.getWrapperField(this, proto.UpdateUser, 1));
1017
+ };
1018
+
1019
+
1020
+ /**
1021
+ * @param {?proto.UpdateUser|undefined} value
1022
+ * @return {!proto.UpdateUserRequest} returns this
1023
+ */
1024
+ proto.UpdateUserRequest.prototype.setUser = function(value) {
1025
+ return jspb.Message.setWrapperField(this, 1, value);
1026
+ };
1027
+
1028
+
1029
+ /**
1030
+ * Clears the message field making it undefined.
1031
+ * @return {!proto.UpdateUserRequest} returns this
1032
+ */
1033
+ proto.UpdateUserRequest.prototype.clearUser = function() {
1034
+ return this.setUser(undefined);
1035
+ };
1036
+
1037
+
1038
+ /**
1039
+ * Returns whether this field is set.
1040
+ * @return {boolean}
1041
+ */
1042
+ proto.UpdateUserRequest.prototype.hasUser = function() {
1043
+ return jspb.Message.getField(this, 1) != null;
1044
+ };
1045
+
1046
+
1047
+ /**
1048
+ * optional string references_id = 2;
1049
+ * @return {string}
1050
+ */
1051
+ proto.UpdateUserRequest.prototype.getReferencesId = function() {
1052
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
1053
+ };
1054
+
1055
+
1056
+ /**
1057
+ * @param {string} value
1058
+ * @return {!proto.UpdateUserRequest} returns this
1059
+ */
1060
+ proto.UpdateUserRequest.prototype.setReferencesId = function(value) {
1061
+ return jspb.Message.setProto3StringField(this, 2, value);
1062
+ };
1063
+
1064
+
1065
+
1066
+
1067
+
1068
+ if (jspb.Message.GENERATE_TO_OBJECT) {
1069
+ /**
1070
+ * Creates an object representation of this proto.
1071
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
1072
+ * Optional fields that are not set will be set to undefined.
1073
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
1074
+ * For the list of reserved names please see:
1075
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
1076
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
1077
+ * JSPB instance for transitional soy proto support:
1078
+ * http://goto/soy-param-migration
1079
+ * @return {!Object}
1080
+ */
1081
+ proto.UpdateUserResponse.prototype.toObject = function(opt_includeInstance) {
1082
+ return proto.UpdateUserResponse.toObject(opt_includeInstance, this);
1083
+ };
1084
+
1085
+
1086
+ /**
1087
+ * Static version of the {@see toObject} method.
1088
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
1089
+ * the JSPB instance for transitional soy proto support:
1090
+ * http://goto/soy-param-migration
1091
+ * @param {!proto.UpdateUserResponse} msg The msg instance to transform.
1092
+ * @return {!Object}
1093
+ * @suppress {unusedLocalVariables} f is only used for nested messages
1094
+ */
1095
+ proto.UpdateUserResponse.toObject = function(includeInstance, msg) {
1096
+ var f, obj = {
1097
+ referencesId: jspb.Message.getFieldWithDefault(msg, 1, ""),
1098
+ meta: (f = msg.getMeta()) && prisca_v1_global_meta_meta_pb.Meta.toObject(includeInstance, f)
1099
+ };
1100
+
1101
+ if (includeInstance) {
1102
+ obj.$jspbMessageInstance = msg;
1103
+ }
1104
+ return obj;
1105
+ };
1106
+ }
1107
+
1108
+
1109
+ /**
1110
+ * Deserializes binary data (in protobuf wire format).
1111
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
1112
+ * @return {!proto.UpdateUserResponse}
1113
+ */
1114
+ proto.UpdateUserResponse.deserializeBinary = function(bytes) {
1115
+ var reader = new jspb.BinaryReader(bytes);
1116
+ var msg = new proto.UpdateUserResponse;
1117
+ return proto.UpdateUserResponse.deserializeBinaryFromReader(msg, reader);
1118
+ };
1119
+
1120
+
1121
+ /**
1122
+ * Deserializes binary data (in protobuf wire format) from the
1123
+ * given reader into the given message object.
1124
+ * @param {!proto.UpdateUserResponse} msg The message object to deserialize into.
1125
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
1126
+ * @return {!proto.UpdateUserResponse}
1127
+ */
1128
+ proto.UpdateUserResponse.deserializeBinaryFromReader = function(msg, reader) {
1129
+ while (reader.nextField()) {
1130
+ if (reader.isEndGroup()) {
1131
+ break;
1132
+ }
1133
+ var field = reader.getFieldNumber();
1134
+ switch (field) {
1135
+ case 1:
1136
+ var value = /** @type {string} */ (reader.readString());
1137
+ msg.setReferencesId(value);
1138
+ break;
1139
+ case 2:
1140
+ var value = new prisca_v1_global_meta_meta_pb.Meta;
1141
+ reader.readMessage(value,prisca_v1_global_meta_meta_pb.Meta.deserializeBinaryFromReader);
1142
+ msg.setMeta(value);
1143
+ break;
1144
+ default:
1145
+ reader.skipField();
1146
+ break;
1147
+ }
1148
+ }
1149
+ return msg;
1150
+ };
1151
+
1152
+
1153
+ /**
1154
+ * Serializes the message to binary data (in protobuf wire format).
1155
+ * @return {!Uint8Array}
1156
+ */
1157
+ proto.UpdateUserResponse.prototype.serializeBinary = function() {
1158
+ var writer = new jspb.BinaryWriter();
1159
+ proto.UpdateUserResponse.serializeBinaryToWriter(this, writer);
1160
+ return writer.getResultBuffer();
1161
+ };
1162
+
1163
+
1164
+ /**
1165
+ * Serializes the given message to binary data (in protobuf wire
1166
+ * format), writing to the given BinaryWriter.
1167
+ * @param {!proto.UpdateUserResponse} message
1168
+ * @param {!jspb.BinaryWriter} writer
1169
+ * @suppress {unusedLocalVariables} f is only used for nested messages
1170
+ */
1171
+ proto.UpdateUserResponse.serializeBinaryToWriter = function(message, writer) {
1172
+ var f = undefined;
1173
+ f = message.getReferencesId();
1174
+ if (f.length > 0) {
1175
+ writer.writeString(
1176
+ 1,
1177
+ f
1178
+ );
1179
+ }
1180
+ f = message.getMeta();
1181
+ if (f != null) {
1182
+ writer.writeMessage(
1183
+ 2,
1184
+ f,
1185
+ prisca_v1_global_meta_meta_pb.Meta.serializeBinaryToWriter
1186
+ );
1187
+ }
1188
+ };
1189
+
1190
+
1191
+ /**
1192
+ * optional string references_id = 1;
1193
+ * @return {string}
1194
+ */
1195
+ proto.UpdateUserResponse.prototype.getReferencesId = function() {
1196
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
1197
+ };
1198
+
1199
+
1200
+ /**
1201
+ * @param {string} value
1202
+ * @return {!proto.UpdateUserResponse} returns this
1203
+ */
1204
+ proto.UpdateUserResponse.prototype.setReferencesId = function(value) {
1205
+ return jspb.Message.setProto3StringField(this, 1, value);
1206
+ };
1207
+
1208
+
1209
+ /**
1210
+ * optional prisca.v1.global.meta.Meta meta = 2;
1211
+ * @return {?proto.prisca.v1.global.meta.Meta}
1212
+ */
1213
+ proto.UpdateUserResponse.prototype.getMeta = function() {
1214
+ return /** @type{?proto.prisca.v1.global.meta.Meta} */ (
1215
+ jspb.Message.getWrapperField(this, prisca_v1_global_meta_meta_pb.Meta, 2));
1216
+ };
1217
+
1218
+
1219
+ /**
1220
+ * @param {?proto.prisca.v1.global.meta.Meta|undefined} value
1221
+ * @return {!proto.UpdateUserResponse} returns this
1222
+ */
1223
+ proto.UpdateUserResponse.prototype.setMeta = function(value) {
1224
+ return jspb.Message.setWrapperField(this, 2, value);
1225
+ };
1226
+
1227
+
1228
+ /**
1229
+ * Clears the message field making it undefined.
1230
+ * @return {!proto.UpdateUserResponse} returns this
1231
+ */
1232
+ proto.UpdateUserResponse.prototype.clearMeta = function() {
1233
+ return this.setMeta(undefined);
1234
+ };
1235
+
1236
+
1237
+ /**
1238
+ * Returns whether this field is set.
1239
+ * @return {boolean}
1240
+ */
1241
+ proto.UpdateUserResponse.prototype.hasMeta = function() {
1242
+ return jspb.Message.getField(this, 2) != null;
1243
+ };
1244
+
1245
+
626
1246
  goog.object.extend(exports, proto);