@ondewo/nlu-client-typescript 4.7.0 → 4.9.0
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/api/ondewo/nlu/agent_grpc_web_pb.d.ts +61 -0
- package/api/ondewo/nlu/agent_grpc_web_pb.js +308 -1
- package/api/ondewo/nlu/agent_pb.d.ts +242 -1
- package/api/ondewo/nlu/agent_pb.js +1984 -38
- package/api/ondewo/nlu/ccai_project_grpc_web_pb.d.ts +79 -0
- package/api/ondewo/nlu/ccai_project_grpc_web_pb.js +388 -0
- package/api/ondewo/nlu/ccai_project_pb.d.ts +582 -0
- package/api/ondewo/nlu/ccai_project_pb.js +4137 -0
- package/api/ondewo/nlu/common_pb.d.ts +456 -0
- package/api/ondewo/nlu/common_pb.js +3523 -4
- package/api/ondewo/nlu/context_grpc_web_pb.js +2 -0
- package/api/ondewo/nlu/context_pb.d.ts +41 -0
- package/api/ondewo/nlu/context_pb.js +328 -2
- package/api/ondewo/nlu/entity_type_grpc_web_pb.js +2 -0
- package/api/ondewo/nlu/entity_type_pb.d.ts +41 -0
- package/api/ondewo/nlu/entity_type_pb.js +328 -2
- package/api/ondewo/nlu/intent_grpc_web_pb.d.ts +3 -3
- package/api/ondewo/nlu/intent_grpc_web_pb.js +6 -6
- package/api/ondewo/nlu/intent_pb.d.ts +120 -0
- package/api/ondewo/nlu/intent_pb.js +1058 -86
- package/api/ondewo/nlu/operation_metadata_pb.d.ts +21 -0
- package/api/ondewo/nlu/operation_metadata_pb.js +165 -2
- package/api/ondewo/nlu/project_role_grpc_web_pb.js +3 -1
- package/api/ondewo/nlu/project_role_pb.d.ts +22 -1
- package/api/ondewo/nlu/project_role_pb.js +167 -3
- package/api/ondewo/nlu/session_grpc_web_pb.d.ts +109 -0
- package/api/ondewo/nlu/session_grpc_web_pb.js +551 -0
- package/api/ondewo/nlu/session_pb.d.ts +624 -0
- package/api/ondewo/nlu/session_pb.js +10278 -5168
- package/api/ondewo/nlu/user_grpc_web_pb.d.ts +85 -0
- package/api/ondewo/nlu/user_grpc_web_pb.js +431 -0
- package/api/ondewo/nlu/user_pb.d.ts +284 -0
- package/api/ondewo/nlu/user_pb.js +3418 -1024
- package/api/ondewo/nlu/webhook_grpc_web_pb.d.ts +37 -0
- package/api/ondewo/nlu/webhook_grpc_web_pb.js +191 -2
- package/api/ondewo/nlu/webhook_pb.d.ts +188 -5
- package/api/ondewo/nlu/webhook_pb.js +1530 -34
- package/package.json +1 -1
- package/public-api.d.ts +27 -25
|
@@ -23,6 +23,8 @@ var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb
|
|
|
23
23
|
goog.object.extend(proto, google_protobuf_empty_pb);
|
|
24
24
|
var google_protobuf_struct_pb = require('google-protobuf/google/protobuf/struct_pb.js');
|
|
25
25
|
goog.object.extend(proto, google_protobuf_struct_pb);
|
|
26
|
+
var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js');
|
|
27
|
+
goog.object.extend(proto, google_protobuf_timestamp_pb);
|
|
26
28
|
var ondewo_nlu_common_pb = require('../../ondewo/nlu/common_pb.js');
|
|
27
29
|
goog.object.extend(proto, ondewo_nlu_common_pb);
|
|
28
30
|
var ondewo_nlu_intent_pb = require('../../ondewo/nlu/intent_pb.js');
|
|
@@ -35,8 +37,8 @@ var ondewo_nlu_operations_pb = require('../../ondewo/nlu/operations_pb.js');
|
|
|
35
37
|
goog.object.extend(proto, ondewo_nlu_operations_pb);
|
|
36
38
|
var ondewo_nlu_session_pb = require('../../ondewo/nlu/session_pb.js');
|
|
37
39
|
goog.object.extend(proto, ondewo_nlu_session_pb);
|
|
38
|
-
var
|
|
39
|
-
goog.object.extend(proto,
|
|
40
|
+
var ondewo_nlu_ccai_project_pb = require('../../ondewo/nlu/ccai_project_pb.js');
|
|
41
|
+
goog.object.extend(proto, ondewo_nlu_ccai_project_pb);
|
|
40
42
|
goog.exportSymbol('proto.ondewo.nlu.AddUserToProjectRequest', null, global);
|
|
41
43
|
goog.exportSymbol('proto.ondewo.nlu.Agent', null, global);
|
|
42
44
|
goog.exportSymbol('proto.ondewo.nlu.AgentOfUserWithOwner', null, global);
|
|
@@ -1571,7 +1573,11 @@ proto.ondewo.nlu.Agent.toObject = function(includeInstance, msg) {
|
|
|
1571
1573
|
configs: (f = msg.getConfigs()) && google_protobuf_struct_pb.Struct.toObject(includeInstance, f),
|
|
1572
1574
|
ownerId: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
1573
1575
|
status: jspb.Message.getFieldWithDefault(msg, 9, 0),
|
|
1574
|
-
description: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
1576
|
+
description: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
1577
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
1578
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
1579
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 13, ""),
|
|
1580
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 14, "")
|
|
1575
1581
|
};
|
|
1576
1582
|
|
|
1577
1583
|
if (includeInstance) {
|
|
@@ -1649,6 +1655,24 @@ proto.ondewo.nlu.Agent.deserializeBinaryFromReader = function(msg, reader) {
|
|
|
1649
1655
|
var value = /** @type {string} */ (reader.readString());
|
|
1650
1656
|
msg.setDescription(value);
|
|
1651
1657
|
break;
|
|
1658
|
+
case 11:
|
|
1659
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
1660
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
1661
|
+
msg.setCreatedAt(value);
|
|
1662
|
+
break;
|
|
1663
|
+
case 12:
|
|
1664
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
1665
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
1666
|
+
msg.setModifiedAt(value);
|
|
1667
|
+
break;
|
|
1668
|
+
case 13:
|
|
1669
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1670
|
+
msg.setCreatedBy(value);
|
|
1671
|
+
break;
|
|
1672
|
+
case 14:
|
|
1673
|
+
var value = /** @type {string} */ (reader.readString());
|
|
1674
|
+
msg.setModifiedBy(value);
|
|
1675
|
+
break;
|
|
1652
1676
|
default:
|
|
1653
1677
|
reader.skipField();
|
|
1654
1678
|
break;
|
|
@@ -1749,6 +1773,36 @@ proto.ondewo.nlu.Agent.serializeBinaryToWriter = function(message, writer) {
|
|
|
1749
1773
|
f
|
|
1750
1774
|
);
|
|
1751
1775
|
}
|
|
1776
|
+
f = message.getCreatedAt();
|
|
1777
|
+
if (f != null) {
|
|
1778
|
+
writer.writeMessage(
|
|
1779
|
+
11,
|
|
1780
|
+
f,
|
|
1781
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
1782
|
+
);
|
|
1783
|
+
}
|
|
1784
|
+
f = message.getModifiedAt();
|
|
1785
|
+
if (f != null) {
|
|
1786
|
+
writer.writeMessage(
|
|
1787
|
+
12,
|
|
1788
|
+
f,
|
|
1789
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
1790
|
+
);
|
|
1791
|
+
}
|
|
1792
|
+
f = message.getCreatedBy();
|
|
1793
|
+
if (f.length > 0) {
|
|
1794
|
+
writer.writeString(
|
|
1795
|
+
13,
|
|
1796
|
+
f
|
|
1797
|
+
);
|
|
1798
|
+
}
|
|
1799
|
+
f = message.getModifiedBy();
|
|
1800
|
+
if (f.length > 0) {
|
|
1801
|
+
writer.writeString(
|
|
1802
|
+
14,
|
|
1803
|
+
f
|
|
1804
|
+
);
|
|
1805
|
+
}
|
|
1752
1806
|
};
|
|
1753
1807
|
|
|
1754
1808
|
|
|
@@ -1970,6 +2024,116 @@ proto.ondewo.nlu.Agent.prototype.setDescription = function(value) {
|
|
|
1970
2024
|
};
|
|
1971
2025
|
|
|
1972
2026
|
|
|
2027
|
+
/**
|
|
2028
|
+
* optional google.protobuf.Timestamp created_at = 11;
|
|
2029
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
2030
|
+
*/
|
|
2031
|
+
proto.ondewo.nlu.Agent.prototype.getCreatedAt = function() {
|
|
2032
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
2033
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 11));
|
|
2034
|
+
};
|
|
2035
|
+
|
|
2036
|
+
|
|
2037
|
+
/**
|
|
2038
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
2039
|
+
* @return {!proto.ondewo.nlu.Agent} returns this
|
|
2040
|
+
*/
|
|
2041
|
+
proto.ondewo.nlu.Agent.prototype.setCreatedAt = function(value) {
|
|
2042
|
+
return jspb.Message.setWrapperField(this, 11, value);
|
|
2043
|
+
};
|
|
2044
|
+
|
|
2045
|
+
|
|
2046
|
+
/**
|
|
2047
|
+
* Clears the message field making it undefined.
|
|
2048
|
+
* @return {!proto.ondewo.nlu.Agent} returns this
|
|
2049
|
+
*/
|
|
2050
|
+
proto.ondewo.nlu.Agent.prototype.clearCreatedAt = function() {
|
|
2051
|
+
return this.setCreatedAt(undefined);
|
|
2052
|
+
};
|
|
2053
|
+
|
|
2054
|
+
|
|
2055
|
+
/**
|
|
2056
|
+
* Returns whether this field is set.
|
|
2057
|
+
* @return {boolean}
|
|
2058
|
+
*/
|
|
2059
|
+
proto.ondewo.nlu.Agent.prototype.hasCreatedAt = function() {
|
|
2060
|
+
return jspb.Message.getField(this, 11) != null;
|
|
2061
|
+
};
|
|
2062
|
+
|
|
2063
|
+
|
|
2064
|
+
/**
|
|
2065
|
+
* optional google.protobuf.Timestamp modified_at = 12;
|
|
2066
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
2067
|
+
*/
|
|
2068
|
+
proto.ondewo.nlu.Agent.prototype.getModifiedAt = function() {
|
|
2069
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
2070
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 12));
|
|
2071
|
+
};
|
|
2072
|
+
|
|
2073
|
+
|
|
2074
|
+
/**
|
|
2075
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
2076
|
+
* @return {!proto.ondewo.nlu.Agent} returns this
|
|
2077
|
+
*/
|
|
2078
|
+
proto.ondewo.nlu.Agent.prototype.setModifiedAt = function(value) {
|
|
2079
|
+
return jspb.Message.setWrapperField(this, 12, value);
|
|
2080
|
+
};
|
|
2081
|
+
|
|
2082
|
+
|
|
2083
|
+
/**
|
|
2084
|
+
* Clears the message field making it undefined.
|
|
2085
|
+
* @return {!proto.ondewo.nlu.Agent} returns this
|
|
2086
|
+
*/
|
|
2087
|
+
proto.ondewo.nlu.Agent.prototype.clearModifiedAt = function() {
|
|
2088
|
+
return this.setModifiedAt(undefined);
|
|
2089
|
+
};
|
|
2090
|
+
|
|
2091
|
+
|
|
2092
|
+
/**
|
|
2093
|
+
* Returns whether this field is set.
|
|
2094
|
+
* @return {boolean}
|
|
2095
|
+
*/
|
|
2096
|
+
proto.ondewo.nlu.Agent.prototype.hasModifiedAt = function() {
|
|
2097
|
+
return jspb.Message.getField(this, 12) != null;
|
|
2098
|
+
};
|
|
2099
|
+
|
|
2100
|
+
|
|
2101
|
+
/**
|
|
2102
|
+
* optional string created_by = 13;
|
|
2103
|
+
* @return {string}
|
|
2104
|
+
*/
|
|
2105
|
+
proto.ondewo.nlu.Agent.prototype.getCreatedBy = function() {
|
|
2106
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
2107
|
+
};
|
|
2108
|
+
|
|
2109
|
+
|
|
2110
|
+
/**
|
|
2111
|
+
* @param {string} value
|
|
2112
|
+
* @return {!proto.ondewo.nlu.Agent} returns this
|
|
2113
|
+
*/
|
|
2114
|
+
proto.ondewo.nlu.Agent.prototype.setCreatedBy = function(value) {
|
|
2115
|
+
return jspb.Message.setProto3StringField(this, 13, value);
|
|
2116
|
+
};
|
|
2117
|
+
|
|
2118
|
+
|
|
2119
|
+
/**
|
|
2120
|
+
* optional string modified_by = 14;
|
|
2121
|
+
* @return {string}
|
|
2122
|
+
*/
|
|
2123
|
+
proto.ondewo.nlu.Agent.prototype.getModifiedBy = function() {
|
|
2124
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 14, ""));
|
|
2125
|
+
};
|
|
2126
|
+
|
|
2127
|
+
|
|
2128
|
+
/**
|
|
2129
|
+
* @param {string} value
|
|
2130
|
+
* @return {!proto.ondewo.nlu.Agent} returns this
|
|
2131
|
+
*/
|
|
2132
|
+
proto.ondewo.nlu.Agent.prototype.setModifiedBy = function(value) {
|
|
2133
|
+
return jspb.Message.setProto3StringField(this, 14, value);
|
|
2134
|
+
};
|
|
2135
|
+
|
|
2136
|
+
|
|
1973
2137
|
|
|
1974
2138
|
|
|
1975
2139
|
|
|
@@ -10777,7 +10941,11 @@ proto.ondewo.nlu.CustomPlatformInfo.toObject = function(includeInstance, msg) {
|
|
|
10777
10941
|
var f, obj = {
|
|
10778
10942
|
platform: jspb.Message.getFieldWithDefault(msg, 1, 0),
|
|
10779
10943
|
displayName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
10780
|
-
position: jspb.Message.getFieldWithDefault(msg, 3, 0)
|
|
10944
|
+
position: jspb.Message.getFieldWithDefault(msg, 3, 0),
|
|
10945
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
10946
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
10947
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
10948
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
10781
10949
|
};
|
|
10782
10950
|
|
|
10783
10951
|
if (includeInstance) {
|
|
@@ -10826,6 +10994,24 @@ proto.ondewo.nlu.CustomPlatformInfo.deserializeBinaryFromReader = function(msg,
|
|
|
10826
10994
|
var value = /** @type {number} */ (reader.readUint32());
|
|
10827
10995
|
msg.setPosition(value);
|
|
10828
10996
|
break;
|
|
10997
|
+
case 4:
|
|
10998
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
10999
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
11000
|
+
msg.setCreatedAt(value);
|
|
11001
|
+
break;
|
|
11002
|
+
case 5:
|
|
11003
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
11004
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
11005
|
+
msg.setModifiedAt(value);
|
|
11006
|
+
break;
|
|
11007
|
+
case 6:
|
|
11008
|
+
var value = /** @type {string} */ (reader.readString());
|
|
11009
|
+
msg.setCreatedBy(value);
|
|
11010
|
+
break;
|
|
11011
|
+
case 7:
|
|
11012
|
+
var value = /** @type {string} */ (reader.readString());
|
|
11013
|
+
msg.setModifiedBy(value);
|
|
11014
|
+
break;
|
|
10829
11015
|
default:
|
|
10830
11016
|
reader.skipField();
|
|
10831
11017
|
break;
|
|
@@ -10876,6 +11062,36 @@ proto.ondewo.nlu.CustomPlatformInfo.serializeBinaryToWriter = function(message,
|
|
|
10876
11062
|
f
|
|
10877
11063
|
);
|
|
10878
11064
|
}
|
|
11065
|
+
f = message.getCreatedAt();
|
|
11066
|
+
if (f != null) {
|
|
11067
|
+
writer.writeMessage(
|
|
11068
|
+
4,
|
|
11069
|
+
f,
|
|
11070
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
11071
|
+
);
|
|
11072
|
+
}
|
|
11073
|
+
f = message.getModifiedAt();
|
|
11074
|
+
if (f != null) {
|
|
11075
|
+
writer.writeMessage(
|
|
11076
|
+
5,
|
|
11077
|
+
f,
|
|
11078
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
11079
|
+
);
|
|
11080
|
+
}
|
|
11081
|
+
f = message.getCreatedBy();
|
|
11082
|
+
if (f.length > 0) {
|
|
11083
|
+
writer.writeString(
|
|
11084
|
+
6,
|
|
11085
|
+
f
|
|
11086
|
+
);
|
|
11087
|
+
}
|
|
11088
|
+
f = message.getModifiedBy();
|
|
11089
|
+
if (f.length > 0) {
|
|
11090
|
+
writer.writeString(
|
|
11091
|
+
7,
|
|
11092
|
+
f
|
|
11093
|
+
);
|
|
11094
|
+
}
|
|
10879
11095
|
};
|
|
10880
11096
|
|
|
10881
11097
|
|
|
@@ -10933,6 +11149,116 @@ proto.ondewo.nlu.CustomPlatformInfo.prototype.setPosition = function(value) {
|
|
|
10933
11149
|
};
|
|
10934
11150
|
|
|
10935
11151
|
|
|
11152
|
+
/**
|
|
11153
|
+
* optional google.protobuf.Timestamp created_at = 4;
|
|
11154
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
11155
|
+
*/
|
|
11156
|
+
proto.ondewo.nlu.CustomPlatformInfo.prototype.getCreatedAt = function() {
|
|
11157
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
11158
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 4));
|
|
11159
|
+
};
|
|
11160
|
+
|
|
11161
|
+
|
|
11162
|
+
/**
|
|
11163
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
11164
|
+
* @return {!proto.ondewo.nlu.CustomPlatformInfo} returns this
|
|
11165
|
+
*/
|
|
11166
|
+
proto.ondewo.nlu.CustomPlatformInfo.prototype.setCreatedAt = function(value) {
|
|
11167
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
|
11168
|
+
};
|
|
11169
|
+
|
|
11170
|
+
|
|
11171
|
+
/**
|
|
11172
|
+
* Clears the message field making it undefined.
|
|
11173
|
+
* @return {!proto.ondewo.nlu.CustomPlatformInfo} returns this
|
|
11174
|
+
*/
|
|
11175
|
+
proto.ondewo.nlu.CustomPlatformInfo.prototype.clearCreatedAt = function() {
|
|
11176
|
+
return this.setCreatedAt(undefined);
|
|
11177
|
+
};
|
|
11178
|
+
|
|
11179
|
+
|
|
11180
|
+
/**
|
|
11181
|
+
* Returns whether this field is set.
|
|
11182
|
+
* @return {boolean}
|
|
11183
|
+
*/
|
|
11184
|
+
proto.ondewo.nlu.CustomPlatformInfo.prototype.hasCreatedAt = function() {
|
|
11185
|
+
return jspb.Message.getField(this, 4) != null;
|
|
11186
|
+
};
|
|
11187
|
+
|
|
11188
|
+
|
|
11189
|
+
/**
|
|
11190
|
+
* optional google.protobuf.Timestamp modified_at = 5;
|
|
11191
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
11192
|
+
*/
|
|
11193
|
+
proto.ondewo.nlu.CustomPlatformInfo.prototype.getModifiedAt = function() {
|
|
11194
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
11195
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 5));
|
|
11196
|
+
};
|
|
11197
|
+
|
|
11198
|
+
|
|
11199
|
+
/**
|
|
11200
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
11201
|
+
* @return {!proto.ondewo.nlu.CustomPlatformInfo} returns this
|
|
11202
|
+
*/
|
|
11203
|
+
proto.ondewo.nlu.CustomPlatformInfo.prototype.setModifiedAt = function(value) {
|
|
11204
|
+
return jspb.Message.setWrapperField(this, 5, value);
|
|
11205
|
+
};
|
|
11206
|
+
|
|
11207
|
+
|
|
11208
|
+
/**
|
|
11209
|
+
* Clears the message field making it undefined.
|
|
11210
|
+
* @return {!proto.ondewo.nlu.CustomPlatformInfo} returns this
|
|
11211
|
+
*/
|
|
11212
|
+
proto.ondewo.nlu.CustomPlatformInfo.prototype.clearModifiedAt = function() {
|
|
11213
|
+
return this.setModifiedAt(undefined);
|
|
11214
|
+
};
|
|
11215
|
+
|
|
11216
|
+
|
|
11217
|
+
/**
|
|
11218
|
+
* Returns whether this field is set.
|
|
11219
|
+
* @return {boolean}
|
|
11220
|
+
*/
|
|
11221
|
+
proto.ondewo.nlu.CustomPlatformInfo.prototype.hasModifiedAt = function() {
|
|
11222
|
+
return jspb.Message.getField(this, 5) != null;
|
|
11223
|
+
};
|
|
11224
|
+
|
|
11225
|
+
|
|
11226
|
+
/**
|
|
11227
|
+
* optional string created_by = 6;
|
|
11228
|
+
* @return {string}
|
|
11229
|
+
*/
|
|
11230
|
+
proto.ondewo.nlu.CustomPlatformInfo.prototype.getCreatedBy = function() {
|
|
11231
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
11232
|
+
};
|
|
11233
|
+
|
|
11234
|
+
|
|
11235
|
+
/**
|
|
11236
|
+
* @param {string} value
|
|
11237
|
+
* @return {!proto.ondewo.nlu.CustomPlatformInfo} returns this
|
|
11238
|
+
*/
|
|
11239
|
+
proto.ondewo.nlu.CustomPlatformInfo.prototype.setCreatedBy = function(value) {
|
|
11240
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
11241
|
+
};
|
|
11242
|
+
|
|
11243
|
+
|
|
11244
|
+
/**
|
|
11245
|
+
* optional string modified_by = 7;
|
|
11246
|
+
* @return {string}
|
|
11247
|
+
*/
|
|
11248
|
+
proto.ondewo.nlu.CustomPlatformInfo.prototype.getModifiedBy = function() {
|
|
11249
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
11250
|
+
};
|
|
11251
|
+
|
|
11252
|
+
|
|
11253
|
+
/**
|
|
11254
|
+
* @param {string} value
|
|
11255
|
+
* @return {!proto.ondewo.nlu.CustomPlatformInfo} returns this
|
|
11256
|
+
*/
|
|
11257
|
+
proto.ondewo.nlu.CustomPlatformInfo.prototype.setModifiedBy = function(value) {
|
|
11258
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
11259
|
+
};
|
|
11260
|
+
|
|
11261
|
+
|
|
10936
11262
|
|
|
10937
11263
|
|
|
10938
11264
|
|
|
@@ -11718,7 +12044,11 @@ proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.toObjec
|
|
|
11718
12044
|
var f, obj = {
|
|
11719
12045
|
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
11720
12046
|
displayName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
11721
|
-
language: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
12047
|
+
language: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
12048
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
12049
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
12050
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
12051
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
11722
12052
|
};
|
|
11723
12053
|
|
|
11724
12054
|
if (includeInstance) {
|
|
@@ -11767,13 +12097,31 @@ proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.deseria
|
|
|
11767
12097
|
var value = /** @type {string} */ (reader.readString());
|
|
11768
12098
|
msg.setLanguage(value);
|
|
11769
12099
|
break;
|
|
11770
|
-
|
|
11771
|
-
|
|
12100
|
+
case 4:
|
|
12101
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
12102
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
12103
|
+
msg.setCreatedAt(value);
|
|
11772
12104
|
break;
|
|
11773
|
-
|
|
11774
|
-
|
|
11775
|
-
|
|
11776
|
-
|
|
12105
|
+
case 5:
|
|
12106
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
12107
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
12108
|
+
msg.setModifiedAt(value);
|
|
12109
|
+
break;
|
|
12110
|
+
case 6:
|
|
12111
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12112
|
+
msg.setCreatedBy(value);
|
|
12113
|
+
break;
|
|
12114
|
+
case 7:
|
|
12115
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12116
|
+
msg.setModifiedBy(value);
|
|
12117
|
+
break;
|
|
12118
|
+
default:
|
|
12119
|
+
reader.skipField();
|
|
12120
|
+
break;
|
|
12121
|
+
}
|
|
12122
|
+
}
|
|
12123
|
+
return msg;
|
|
12124
|
+
};
|
|
11777
12125
|
|
|
11778
12126
|
|
|
11779
12127
|
/**
|
|
@@ -11817,6 +12165,36 @@ proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.seriali
|
|
|
11817
12165
|
f
|
|
11818
12166
|
);
|
|
11819
12167
|
}
|
|
12168
|
+
f = message.getCreatedAt();
|
|
12169
|
+
if (f != null) {
|
|
12170
|
+
writer.writeMessage(
|
|
12171
|
+
4,
|
|
12172
|
+
f,
|
|
12173
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
12174
|
+
);
|
|
12175
|
+
}
|
|
12176
|
+
f = message.getModifiedAt();
|
|
12177
|
+
if (f != null) {
|
|
12178
|
+
writer.writeMessage(
|
|
12179
|
+
5,
|
|
12180
|
+
f,
|
|
12181
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
12182
|
+
);
|
|
12183
|
+
}
|
|
12184
|
+
f = message.getCreatedBy();
|
|
12185
|
+
if (f.length > 0) {
|
|
12186
|
+
writer.writeString(
|
|
12187
|
+
6,
|
|
12188
|
+
f
|
|
12189
|
+
);
|
|
12190
|
+
}
|
|
12191
|
+
f = message.getModifiedBy();
|
|
12192
|
+
if (f.length > 0) {
|
|
12193
|
+
writer.writeString(
|
|
12194
|
+
7,
|
|
12195
|
+
f
|
|
12196
|
+
);
|
|
12197
|
+
}
|
|
11820
12198
|
};
|
|
11821
12199
|
|
|
11822
12200
|
|
|
@@ -11874,6 +12252,116 @@ proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototy
|
|
|
11874
12252
|
};
|
|
11875
12253
|
|
|
11876
12254
|
|
|
12255
|
+
/**
|
|
12256
|
+
* optional google.protobuf.Timestamp created_at = 4;
|
|
12257
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
12258
|
+
*/
|
|
12259
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.getCreatedAt = function() {
|
|
12260
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
12261
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 4));
|
|
12262
|
+
};
|
|
12263
|
+
|
|
12264
|
+
|
|
12265
|
+
/**
|
|
12266
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
12267
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult} returns this
|
|
12268
|
+
*/
|
|
12269
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.setCreatedAt = function(value) {
|
|
12270
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
|
12271
|
+
};
|
|
12272
|
+
|
|
12273
|
+
|
|
12274
|
+
/**
|
|
12275
|
+
* Clears the message field making it undefined.
|
|
12276
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult} returns this
|
|
12277
|
+
*/
|
|
12278
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.clearCreatedAt = function() {
|
|
12279
|
+
return this.setCreatedAt(undefined);
|
|
12280
|
+
};
|
|
12281
|
+
|
|
12282
|
+
|
|
12283
|
+
/**
|
|
12284
|
+
* Returns whether this field is set.
|
|
12285
|
+
* @return {boolean}
|
|
12286
|
+
*/
|
|
12287
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.hasCreatedAt = function() {
|
|
12288
|
+
return jspb.Message.getField(this, 4) != null;
|
|
12289
|
+
};
|
|
12290
|
+
|
|
12291
|
+
|
|
12292
|
+
/**
|
|
12293
|
+
* optional google.protobuf.Timestamp modified_at = 5;
|
|
12294
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
12295
|
+
*/
|
|
12296
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.getModifiedAt = function() {
|
|
12297
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
12298
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 5));
|
|
12299
|
+
};
|
|
12300
|
+
|
|
12301
|
+
|
|
12302
|
+
/**
|
|
12303
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
12304
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult} returns this
|
|
12305
|
+
*/
|
|
12306
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.setModifiedAt = function(value) {
|
|
12307
|
+
return jspb.Message.setWrapperField(this, 5, value);
|
|
12308
|
+
};
|
|
12309
|
+
|
|
12310
|
+
|
|
12311
|
+
/**
|
|
12312
|
+
* Clears the message field making it undefined.
|
|
12313
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult} returns this
|
|
12314
|
+
*/
|
|
12315
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.clearModifiedAt = function() {
|
|
12316
|
+
return this.setModifiedAt(undefined);
|
|
12317
|
+
};
|
|
12318
|
+
|
|
12319
|
+
|
|
12320
|
+
/**
|
|
12321
|
+
* Returns whether this field is set.
|
|
12322
|
+
* @return {boolean}
|
|
12323
|
+
*/
|
|
12324
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.hasModifiedAt = function() {
|
|
12325
|
+
return jspb.Message.getField(this, 5) != null;
|
|
12326
|
+
};
|
|
12327
|
+
|
|
12328
|
+
|
|
12329
|
+
/**
|
|
12330
|
+
* optional string created_by = 6;
|
|
12331
|
+
* @return {string}
|
|
12332
|
+
*/
|
|
12333
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.getCreatedBy = function() {
|
|
12334
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
12335
|
+
};
|
|
12336
|
+
|
|
12337
|
+
|
|
12338
|
+
/**
|
|
12339
|
+
* @param {string} value
|
|
12340
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult} returns this
|
|
12341
|
+
*/
|
|
12342
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.setCreatedBy = function(value) {
|
|
12343
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
12344
|
+
};
|
|
12345
|
+
|
|
12346
|
+
|
|
12347
|
+
/**
|
|
12348
|
+
* optional string modified_by = 7;
|
|
12349
|
+
* @return {string}
|
|
12350
|
+
*/
|
|
12351
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.getModifiedBy = function() {
|
|
12352
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
12353
|
+
};
|
|
12354
|
+
|
|
12355
|
+
|
|
12356
|
+
/**
|
|
12357
|
+
* @param {string} value
|
|
12358
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult} returns this
|
|
12359
|
+
*/
|
|
12360
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.setModifiedBy = function(value) {
|
|
12361
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
12362
|
+
};
|
|
12363
|
+
|
|
12364
|
+
|
|
11877
12365
|
/**
|
|
11878
12366
|
* optional string parent = 1;
|
|
11879
12367
|
* @return {string}
|
|
@@ -12250,7 +12738,11 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.toObject = func
|
|
|
12250
12738
|
displayName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
12251
12739
|
entityTypeName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
12252
12740
|
entityTypeDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
12253
|
-
language: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
12741
|
+
language: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
12742
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
12743
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
12744
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
12745
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
12254
12746
|
};
|
|
12255
12747
|
|
|
12256
12748
|
if (includeInstance) {
|
|
@@ -12307,6 +12799,24 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.deserializeBina
|
|
|
12307
12799
|
var value = /** @type {string} */ (reader.readString());
|
|
12308
12800
|
msg.setLanguage(value);
|
|
12309
12801
|
break;
|
|
12802
|
+
case 6:
|
|
12803
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
12804
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
12805
|
+
msg.setCreatedAt(value);
|
|
12806
|
+
break;
|
|
12807
|
+
case 7:
|
|
12808
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
12809
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
12810
|
+
msg.setModifiedAt(value);
|
|
12811
|
+
break;
|
|
12812
|
+
case 8:
|
|
12813
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12814
|
+
msg.setCreatedBy(value);
|
|
12815
|
+
break;
|
|
12816
|
+
case 9:
|
|
12817
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12818
|
+
msg.setModifiedBy(value);
|
|
12819
|
+
break;
|
|
12310
12820
|
default:
|
|
12311
12821
|
reader.skipField();
|
|
12312
12822
|
break;
|
|
@@ -12371,6 +12881,36 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.serializeBinary
|
|
|
12371
12881
|
f
|
|
12372
12882
|
);
|
|
12373
12883
|
}
|
|
12884
|
+
f = message.getCreatedAt();
|
|
12885
|
+
if (f != null) {
|
|
12886
|
+
writer.writeMessage(
|
|
12887
|
+
6,
|
|
12888
|
+
f,
|
|
12889
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
12890
|
+
);
|
|
12891
|
+
}
|
|
12892
|
+
f = message.getModifiedAt();
|
|
12893
|
+
if (f != null) {
|
|
12894
|
+
writer.writeMessage(
|
|
12895
|
+
7,
|
|
12896
|
+
f,
|
|
12897
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
12898
|
+
);
|
|
12899
|
+
}
|
|
12900
|
+
f = message.getCreatedBy();
|
|
12901
|
+
if (f.length > 0) {
|
|
12902
|
+
writer.writeString(
|
|
12903
|
+
8,
|
|
12904
|
+
f
|
|
12905
|
+
);
|
|
12906
|
+
}
|
|
12907
|
+
f = message.getModifiedBy();
|
|
12908
|
+
if (f.length > 0) {
|
|
12909
|
+
writer.writeString(
|
|
12910
|
+
9,
|
|
12911
|
+
f
|
|
12912
|
+
);
|
|
12913
|
+
}
|
|
12374
12914
|
};
|
|
12375
12915
|
|
|
12376
12916
|
|
|
@@ -12464,6 +13004,116 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setLa
|
|
|
12464
13004
|
};
|
|
12465
13005
|
|
|
12466
13006
|
|
|
13007
|
+
/**
|
|
13008
|
+
* optional google.protobuf.Timestamp created_at = 6;
|
|
13009
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
13010
|
+
*/
|
|
13011
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.getCreatedAt = function() {
|
|
13012
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
13013
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 6));
|
|
13014
|
+
};
|
|
13015
|
+
|
|
13016
|
+
|
|
13017
|
+
/**
|
|
13018
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
13019
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
13020
|
+
*/
|
|
13021
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setCreatedAt = function(value) {
|
|
13022
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
13023
|
+
};
|
|
13024
|
+
|
|
13025
|
+
|
|
13026
|
+
/**
|
|
13027
|
+
* Clears the message field making it undefined.
|
|
13028
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
13029
|
+
*/
|
|
13030
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.clearCreatedAt = function() {
|
|
13031
|
+
return this.setCreatedAt(undefined);
|
|
13032
|
+
};
|
|
13033
|
+
|
|
13034
|
+
|
|
13035
|
+
/**
|
|
13036
|
+
* Returns whether this field is set.
|
|
13037
|
+
* @return {boolean}
|
|
13038
|
+
*/
|
|
13039
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.hasCreatedAt = function() {
|
|
13040
|
+
return jspb.Message.getField(this, 6) != null;
|
|
13041
|
+
};
|
|
13042
|
+
|
|
13043
|
+
|
|
13044
|
+
/**
|
|
13045
|
+
* optional google.protobuf.Timestamp modified_at = 7;
|
|
13046
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
13047
|
+
*/
|
|
13048
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.getModifiedAt = function() {
|
|
13049
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
13050
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7));
|
|
13051
|
+
};
|
|
13052
|
+
|
|
13053
|
+
|
|
13054
|
+
/**
|
|
13055
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
13056
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
13057
|
+
*/
|
|
13058
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setModifiedAt = function(value) {
|
|
13059
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
13060
|
+
};
|
|
13061
|
+
|
|
13062
|
+
|
|
13063
|
+
/**
|
|
13064
|
+
* Clears the message field making it undefined.
|
|
13065
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
13066
|
+
*/
|
|
13067
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.clearModifiedAt = function() {
|
|
13068
|
+
return this.setModifiedAt(undefined);
|
|
13069
|
+
};
|
|
13070
|
+
|
|
13071
|
+
|
|
13072
|
+
/**
|
|
13073
|
+
* Returns whether this field is set.
|
|
13074
|
+
* @return {boolean}
|
|
13075
|
+
*/
|
|
13076
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.hasModifiedAt = function() {
|
|
13077
|
+
return jspb.Message.getField(this, 7) != null;
|
|
13078
|
+
};
|
|
13079
|
+
|
|
13080
|
+
|
|
13081
|
+
/**
|
|
13082
|
+
* optional string created_by = 8;
|
|
13083
|
+
* @return {string}
|
|
13084
|
+
*/
|
|
13085
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.getCreatedBy = function() {
|
|
13086
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
13087
|
+
};
|
|
13088
|
+
|
|
13089
|
+
|
|
13090
|
+
/**
|
|
13091
|
+
* @param {string} value
|
|
13092
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
13093
|
+
*/
|
|
13094
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setCreatedBy = function(value) {
|
|
13095
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
13096
|
+
};
|
|
13097
|
+
|
|
13098
|
+
|
|
13099
|
+
/**
|
|
13100
|
+
* optional string modified_by = 9;
|
|
13101
|
+
* @return {string}
|
|
13102
|
+
*/
|
|
13103
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.getModifiedBy = function() {
|
|
13104
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
13105
|
+
};
|
|
13106
|
+
|
|
13107
|
+
|
|
13108
|
+
/**
|
|
13109
|
+
* @param {string} value
|
|
13110
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
13111
|
+
*/
|
|
13112
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setModifiedBy = function(value) {
|
|
13113
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
13114
|
+
};
|
|
13115
|
+
|
|
13116
|
+
|
|
12467
13117
|
/**
|
|
12468
13118
|
* optional string parent = 1;
|
|
12469
13119
|
* @return {string}
|
|
@@ -12842,7 +13492,11 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.t
|
|
|
12842
13492
|
entityTypeDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
12843
13493
|
entityName: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
12844
13494
|
entityDisplayName: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
12845
|
-
language: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
13495
|
+
language: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
13496
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
13497
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
13498
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
13499
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 11, "")
|
|
12846
13500
|
};
|
|
12847
13501
|
|
|
12848
13502
|
if (includeInstance) {
|
|
@@ -12899,13 +13553,31 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.d
|
|
|
12899
13553
|
var value = /** @type {string} */ (reader.readString());
|
|
12900
13554
|
msg.setEntityName(value);
|
|
12901
13555
|
break;
|
|
12902
|
-
case 6:
|
|
13556
|
+
case 6:
|
|
13557
|
+
var value = /** @type {string} */ (reader.readString());
|
|
13558
|
+
msg.setEntityDisplayName(value);
|
|
13559
|
+
break;
|
|
13560
|
+
case 7:
|
|
13561
|
+
var value = /** @type {string} */ (reader.readString());
|
|
13562
|
+
msg.setLanguage(value);
|
|
13563
|
+
break;
|
|
13564
|
+
case 8:
|
|
13565
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
13566
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
13567
|
+
msg.setCreatedAt(value);
|
|
13568
|
+
break;
|
|
13569
|
+
case 9:
|
|
13570
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
13571
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
13572
|
+
msg.setModifiedAt(value);
|
|
13573
|
+
break;
|
|
13574
|
+
case 10:
|
|
12903
13575
|
var value = /** @type {string} */ (reader.readString());
|
|
12904
|
-
msg.
|
|
13576
|
+
msg.setCreatedBy(value);
|
|
12905
13577
|
break;
|
|
12906
|
-
case
|
|
13578
|
+
case 11:
|
|
12907
13579
|
var value = /** @type {string} */ (reader.readString());
|
|
12908
|
-
msg.
|
|
13580
|
+
msg.setModifiedBy(value);
|
|
12909
13581
|
break;
|
|
12910
13582
|
default:
|
|
12911
13583
|
reader.skipField();
|
|
@@ -12985,6 +13657,36 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.s
|
|
|
12985
13657
|
f
|
|
12986
13658
|
);
|
|
12987
13659
|
}
|
|
13660
|
+
f = message.getCreatedAt();
|
|
13661
|
+
if (f != null) {
|
|
13662
|
+
writer.writeMessage(
|
|
13663
|
+
8,
|
|
13664
|
+
f,
|
|
13665
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
13666
|
+
);
|
|
13667
|
+
}
|
|
13668
|
+
f = message.getModifiedAt();
|
|
13669
|
+
if (f != null) {
|
|
13670
|
+
writer.writeMessage(
|
|
13671
|
+
9,
|
|
13672
|
+
f,
|
|
13673
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
13674
|
+
);
|
|
13675
|
+
}
|
|
13676
|
+
f = message.getCreatedBy();
|
|
13677
|
+
if (f.length > 0) {
|
|
13678
|
+
writer.writeString(
|
|
13679
|
+
10,
|
|
13680
|
+
f
|
|
13681
|
+
);
|
|
13682
|
+
}
|
|
13683
|
+
f = message.getModifiedBy();
|
|
13684
|
+
if (f.length > 0) {
|
|
13685
|
+
writer.writeString(
|
|
13686
|
+
11,
|
|
13687
|
+
f
|
|
13688
|
+
);
|
|
13689
|
+
}
|
|
12988
13690
|
};
|
|
12989
13691
|
|
|
12990
13692
|
|
|
@@ -13114,6 +13816,116 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.p
|
|
|
13114
13816
|
};
|
|
13115
13817
|
|
|
13116
13818
|
|
|
13819
|
+
/**
|
|
13820
|
+
* optional google.protobuf.Timestamp created_at = 8;
|
|
13821
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
13822
|
+
*/
|
|
13823
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.getCreatedAt = function() {
|
|
13824
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
13825
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 8));
|
|
13826
|
+
};
|
|
13827
|
+
|
|
13828
|
+
|
|
13829
|
+
/**
|
|
13830
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
13831
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
13832
|
+
*/
|
|
13833
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.setCreatedAt = function(value) {
|
|
13834
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
13835
|
+
};
|
|
13836
|
+
|
|
13837
|
+
|
|
13838
|
+
/**
|
|
13839
|
+
* Clears the message field making it undefined.
|
|
13840
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
13841
|
+
*/
|
|
13842
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.clearCreatedAt = function() {
|
|
13843
|
+
return this.setCreatedAt(undefined);
|
|
13844
|
+
};
|
|
13845
|
+
|
|
13846
|
+
|
|
13847
|
+
/**
|
|
13848
|
+
* Returns whether this field is set.
|
|
13849
|
+
* @return {boolean}
|
|
13850
|
+
*/
|
|
13851
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.hasCreatedAt = function() {
|
|
13852
|
+
return jspb.Message.getField(this, 8) != null;
|
|
13853
|
+
};
|
|
13854
|
+
|
|
13855
|
+
|
|
13856
|
+
/**
|
|
13857
|
+
* optional google.protobuf.Timestamp modified_at = 9;
|
|
13858
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
13859
|
+
*/
|
|
13860
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.getModifiedAt = function() {
|
|
13861
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
13862
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 9));
|
|
13863
|
+
};
|
|
13864
|
+
|
|
13865
|
+
|
|
13866
|
+
/**
|
|
13867
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
13868
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
13869
|
+
*/
|
|
13870
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.setModifiedAt = function(value) {
|
|
13871
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
13872
|
+
};
|
|
13873
|
+
|
|
13874
|
+
|
|
13875
|
+
/**
|
|
13876
|
+
* Clears the message field making it undefined.
|
|
13877
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
13878
|
+
*/
|
|
13879
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.clearModifiedAt = function() {
|
|
13880
|
+
return this.setModifiedAt(undefined);
|
|
13881
|
+
};
|
|
13882
|
+
|
|
13883
|
+
|
|
13884
|
+
/**
|
|
13885
|
+
* Returns whether this field is set.
|
|
13886
|
+
* @return {boolean}
|
|
13887
|
+
*/
|
|
13888
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.hasModifiedAt = function() {
|
|
13889
|
+
return jspb.Message.getField(this, 9) != null;
|
|
13890
|
+
};
|
|
13891
|
+
|
|
13892
|
+
|
|
13893
|
+
/**
|
|
13894
|
+
* optional string created_by = 10;
|
|
13895
|
+
* @return {string}
|
|
13896
|
+
*/
|
|
13897
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.getCreatedBy = function() {
|
|
13898
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
13899
|
+
};
|
|
13900
|
+
|
|
13901
|
+
|
|
13902
|
+
/**
|
|
13903
|
+
* @param {string} value
|
|
13904
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
13905
|
+
*/
|
|
13906
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.setCreatedBy = function(value) {
|
|
13907
|
+
return jspb.Message.setProto3StringField(this, 10, value);
|
|
13908
|
+
};
|
|
13909
|
+
|
|
13910
|
+
|
|
13911
|
+
/**
|
|
13912
|
+
* optional string modified_by = 11;
|
|
13913
|
+
* @return {string}
|
|
13914
|
+
*/
|
|
13915
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.getModifiedBy = function() {
|
|
13916
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
13917
|
+
};
|
|
13918
|
+
|
|
13919
|
+
|
|
13920
|
+
/**
|
|
13921
|
+
* @param {string} value
|
|
13922
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
13923
|
+
*/
|
|
13924
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.setModifiedBy = function(value) {
|
|
13925
|
+
return jspb.Message.setProto3StringField(this, 11, value);
|
|
13926
|
+
};
|
|
13927
|
+
|
|
13928
|
+
|
|
13117
13929
|
/**
|
|
13118
13930
|
* optional string parent = 1;
|
|
13119
13931
|
* @return {string}
|
|
@@ -13497,7 +14309,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.toObject = func
|
|
|
13497
14309
|
displayName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
13498
14310
|
domainName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
13499
14311
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
13500
|
-
language: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
14312
|
+
language: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
14313
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
14314
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
14315
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
14316
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
13501
14317
|
};
|
|
13502
14318
|
|
|
13503
14319
|
if (includeInstance) {
|
|
@@ -13554,6 +14370,24 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.deserializeBina
|
|
|
13554
14370
|
var value = /** @type {string} */ (reader.readString());
|
|
13555
14371
|
msg.setLanguage(value);
|
|
13556
14372
|
break;
|
|
14373
|
+
case 6:
|
|
14374
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
14375
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
14376
|
+
msg.setCreatedAt(value);
|
|
14377
|
+
break;
|
|
14378
|
+
case 7:
|
|
14379
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
14380
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
14381
|
+
msg.setModifiedAt(value);
|
|
14382
|
+
break;
|
|
14383
|
+
case 8:
|
|
14384
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14385
|
+
msg.setCreatedBy(value);
|
|
14386
|
+
break;
|
|
14387
|
+
case 9:
|
|
14388
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14389
|
+
msg.setModifiedBy(value);
|
|
14390
|
+
break;
|
|
13557
14391
|
default:
|
|
13558
14392
|
reader.skipField();
|
|
13559
14393
|
break;
|
|
@@ -13618,6 +14452,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.serializeBinary
|
|
|
13618
14452
|
f
|
|
13619
14453
|
);
|
|
13620
14454
|
}
|
|
14455
|
+
f = message.getCreatedAt();
|
|
14456
|
+
if (f != null) {
|
|
14457
|
+
writer.writeMessage(
|
|
14458
|
+
6,
|
|
14459
|
+
f,
|
|
14460
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
14461
|
+
);
|
|
14462
|
+
}
|
|
14463
|
+
f = message.getModifiedAt();
|
|
14464
|
+
if (f != null) {
|
|
14465
|
+
writer.writeMessage(
|
|
14466
|
+
7,
|
|
14467
|
+
f,
|
|
14468
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
14469
|
+
);
|
|
14470
|
+
}
|
|
14471
|
+
f = message.getCreatedBy();
|
|
14472
|
+
if (f.length > 0) {
|
|
14473
|
+
writer.writeString(
|
|
14474
|
+
8,
|
|
14475
|
+
f
|
|
14476
|
+
);
|
|
14477
|
+
}
|
|
14478
|
+
f = message.getModifiedBy();
|
|
14479
|
+
if (f.length > 0) {
|
|
14480
|
+
writer.writeString(
|
|
14481
|
+
9,
|
|
14482
|
+
f
|
|
14483
|
+
);
|
|
14484
|
+
}
|
|
13621
14485
|
};
|
|
13622
14486
|
|
|
13623
14487
|
|
|
@@ -13730,6 +14594,116 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setLa
|
|
|
13730
14594
|
};
|
|
13731
14595
|
|
|
13732
14596
|
|
|
14597
|
+
/**
|
|
14598
|
+
* optional google.protobuf.Timestamp created_at = 6;
|
|
14599
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
14600
|
+
*/
|
|
14601
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.getCreatedAt = function() {
|
|
14602
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
14603
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 6));
|
|
14604
|
+
};
|
|
14605
|
+
|
|
14606
|
+
|
|
14607
|
+
/**
|
|
14608
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
14609
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
|
|
14610
|
+
*/
|
|
14611
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setCreatedAt = function(value) {
|
|
14612
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
14613
|
+
};
|
|
14614
|
+
|
|
14615
|
+
|
|
14616
|
+
/**
|
|
14617
|
+
* Clears the message field making it undefined.
|
|
14618
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
|
|
14619
|
+
*/
|
|
14620
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.clearCreatedAt = function() {
|
|
14621
|
+
return this.setCreatedAt(undefined);
|
|
14622
|
+
};
|
|
14623
|
+
|
|
14624
|
+
|
|
14625
|
+
/**
|
|
14626
|
+
* Returns whether this field is set.
|
|
14627
|
+
* @return {boolean}
|
|
14628
|
+
*/
|
|
14629
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.hasCreatedAt = function() {
|
|
14630
|
+
return jspb.Message.getField(this, 6) != null;
|
|
14631
|
+
};
|
|
14632
|
+
|
|
14633
|
+
|
|
14634
|
+
/**
|
|
14635
|
+
* optional google.protobuf.Timestamp modified_at = 7;
|
|
14636
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
14637
|
+
*/
|
|
14638
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.getModifiedAt = function() {
|
|
14639
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
14640
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7));
|
|
14641
|
+
};
|
|
14642
|
+
|
|
14643
|
+
|
|
14644
|
+
/**
|
|
14645
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
14646
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
|
|
14647
|
+
*/
|
|
14648
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setModifiedAt = function(value) {
|
|
14649
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
14650
|
+
};
|
|
14651
|
+
|
|
14652
|
+
|
|
14653
|
+
/**
|
|
14654
|
+
* Clears the message field making it undefined.
|
|
14655
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
|
|
14656
|
+
*/
|
|
14657
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.clearModifiedAt = function() {
|
|
14658
|
+
return this.setModifiedAt(undefined);
|
|
14659
|
+
};
|
|
14660
|
+
|
|
14661
|
+
|
|
14662
|
+
/**
|
|
14663
|
+
* Returns whether this field is set.
|
|
14664
|
+
* @return {boolean}
|
|
14665
|
+
*/
|
|
14666
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.hasModifiedAt = function() {
|
|
14667
|
+
return jspb.Message.getField(this, 7) != null;
|
|
14668
|
+
};
|
|
14669
|
+
|
|
14670
|
+
|
|
14671
|
+
/**
|
|
14672
|
+
* optional string created_by = 8;
|
|
14673
|
+
* @return {string}
|
|
14674
|
+
*/
|
|
14675
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.getCreatedBy = function() {
|
|
14676
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
14677
|
+
};
|
|
14678
|
+
|
|
14679
|
+
|
|
14680
|
+
/**
|
|
14681
|
+
* @param {string} value
|
|
14682
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
|
|
14683
|
+
*/
|
|
14684
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setCreatedBy = function(value) {
|
|
14685
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
14686
|
+
};
|
|
14687
|
+
|
|
14688
|
+
|
|
14689
|
+
/**
|
|
14690
|
+
* optional string modified_by = 9;
|
|
14691
|
+
* @return {string}
|
|
14692
|
+
*/
|
|
14693
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.getModifiedBy = function() {
|
|
14694
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
14695
|
+
};
|
|
14696
|
+
|
|
14697
|
+
|
|
14698
|
+
/**
|
|
14699
|
+
* @param {string} value
|
|
14700
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
|
|
14701
|
+
*/
|
|
14702
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setModifiedBy = function(value) {
|
|
14703
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
14704
|
+
};
|
|
14705
|
+
|
|
14706
|
+
|
|
13733
14707
|
/**
|
|
13734
14708
|
* optional string parent = 1;
|
|
13735
14709
|
* @return {string}
|
|
@@ -14113,7 +15087,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
14113
15087
|
intentName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
14114
15088
|
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
14115
15089
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
14116
|
-
language: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
15090
|
+
language: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
15091
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
15092
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
15093
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
15094
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
14117
15095
|
};
|
|
14118
15096
|
|
|
14119
15097
|
if (includeInstance) {
|
|
@@ -14162,13 +15140,31 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
14162
15140
|
var value = /** @type {string} */ (reader.readString());
|
|
14163
15141
|
msg.setIntentDisplayName(value);
|
|
14164
15142
|
break;
|
|
14165
|
-
case 4:
|
|
15143
|
+
case 4:
|
|
15144
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15145
|
+
msg.addTags(value);
|
|
15146
|
+
break;
|
|
15147
|
+
case 5:
|
|
15148
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15149
|
+
msg.setLanguage(value);
|
|
15150
|
+
break;
|
|
15151
|
+
case 6:
|
|
15152
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
15153
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
15154
|
+
msg.setCreatedAt(value);
|
|
15155
|
+
break;
|
|
15156
|
+
case 7:
|
|
15157
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
15158
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
15159
|
+
msg.setModifiedAt(value);
|
|
15160
|
+
break;
|
|
15161
|
+
case 8:
|
|
14166
15162
|
var value = /** @type {string} */ (reader.readString());
|
|
14167
|
-
msg.
|
|
15163
|
+
msg.setCreatedBy(value);
|
|
14168
15164
|
break;
|
|
14169
|
-
case
|
|
15165
|
+
case 9:
|
|
14170
15166
|
var value = /** @type {string} */ (reader.readString());
|
|
14171
|
-
msg.
|
|
15167
|
+
msg.setModifiedBy(value);
|
|
14172
15168
|
break;
|
|
14173
15169
|
default:
|
|
14174
15170
|
reader.skipField();
|
|
@@ -14234,6 +15230,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
14234
15230
|
f
|
|
14235
15231
|
);
|
|
14236
15232
|
}
|
|
15233
|
+
f = message.getCreatedAt();
|
|
15234
|
+
if (f != null) {
|
|
15235
|
+
writer.writeMessage(
|
|
15236
|
+
6,
|
|
15237
|
+
f,
|
|
15238
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
15239
|
+
);
|
|
15240
|
+
}
|
|
15241
|
+
f = message.getModifiedAt();
|
|
15242
|
+
if (f != null) {
|
|
15243
|
+
writer.writeMessage(
|
|
15244
|
+
7,
|
|
15245
|
+
f,
|
|
15246
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
15247
|
+
);
|
|
15248
|
+
}
|
|
15249
|
+
f = message.getCreatedBy();
|
|
15250
|
+
if (f.length > 0) {
|
|
15251
|
+
writer.writeString(
|
|
15252
|
+
8,
|
|
15253
|
+
f
|
|
15254
|
+
);
|
|
15255
|
+
}
|
|
15256
|
+
f = message.getModifiedBy();
|
|
15257
|
+
if (f.length > 0) {
|
|
15258
|
+
writer.writeString(
|
|
15259
|
+
9,
|
|
15260
|
+
f
|
|
15261
|
+
);
|
|
15262
|
+
}
|
|
14237
15263
|
};
|
|
14238
15264
|
|
|
14239
15265
|
|
|
@@ -14346,6 +15372,116 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
14346
15372
|
};
|
|
14347
15373
|
|
|
14348
15374
|
|
|
15375
|
+
/**
|
|
15376
|
+
* optional google.protobuf.Timestamp created_at = 6;
|
|
15377
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
15378
|
+
*/
|
|
15379
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.getCreatedAt = function() {
|
|
15380
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
15381
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 6));
|
|
15382
|
+
};
|
|
15383
|
+
|
|
15384
|
+
|
|
15385
|
+
/**
|
|
15386
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
15387
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
15388
|
+
*/
|
|
15389
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.setCreatedAt = function(value) {
|
|
15390
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
15391
|
+
};
|
|
15392
|
+
|
|
15393
|
+
|
|
15394
|
+
/**
|
|
15395
|
+
* Clears the message field making it undefined.
|
|
15396
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
15397
|
+
*/
|
|
15398
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.clearCreatedAt = function() {
|
|
15399
|
+
return this.setCreatedAt(undefined);
|
|
15400
|
+
};
|
|
15401
|
+
|
|
15402
|
+
|
|
15403
|
+
/**
|
|
15404
|
+
* Returns whether this field is set.
|
|
15405
|
+
* @return {boolean}
|
|
15406
|
+
*/
|
|
15407
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.hasCreatedAt = function() {
|
|
15408
|
+
return jspb.Message.getField(this, 6) != null;
|
|
15409
|
+
};
|
|
15410
|
+
|
|
15411
|
+
|
|
15412
|
+
/**
|
|
15413
|
+
* optional google.protobuf.Timestamp modified_at = 7;
|
|
15414
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
15415
|
+
*/
|
|
15416
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.getModifiedAt = function() {
|
|
15417
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
15418
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7));
|
|
15419
|
+
};
|
|
15420
|
+
|
|
15421
|
+
|
|
15422
|
+
/**
|
|
15423
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
15424
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
15425
|
+
*/
|
|
15426
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.setModifiedAt = function(value) {
|
|
15427
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
15428
|
+
};
|
|
15429
|
+
|
|
15430
|
+
|
|
15431
|
+
/**
|
|
15432
|
+
* Clears the message field making it undefined.
|
|
15433
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
15434
|
+
*/
|
|
15435
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.clearModifiedAt = function() {
|
|
15436
|
+
return this.setModifiedAt(undefined);
|
|
15437
|
+
};
|
|
15438
|
+
|
|
15439
|
+
|
|
15440
|
+
/**
|
|
15441
|
+
* Returns whether this field is set.
|
|
15442
|
+
* @return {boolean}
|
|
15443
|
+
*/
|
|
15444
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.hasModifiedAt = function() {
|
|
15445
|
+
return jspb.Message.getField(this, 7) != null;
|
|
15446
|
+
};
|
|
15447
|
+
|
|
15448
|
+
|
|
15449
|
+
/**
|
|
15450
|
+
* optional string created_by = 8;
|
|
15451
|
+
* @return {string}
|
|
15452
|
+
*/
|
|
15453
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.getCreatedBy = function() {
|
|
15454
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
15455
|
+
};
|
|
15456
|
+
|
|
15457
|
+
|
|
15458
|
+
/**
|
|
15459
|
+
* @param {string} value
|
|
15460
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
15461
|
+
*/
|
|
15462
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.setCreatedBy = function(value) {
|
|
15463
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
15464
|
+
};
|
|
15465
|
+
|
|
15466
|
+
|
|
15467
|
+
/**
|
|
15468
|
+
* optional string modified_by = 9;
|
|
15469
|
+
* @return {string}
|
|
15470
|
+
*/
|
|
15471
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.getModifiedBy = function() {
|
|
15472
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
15473
|
+
};
|
|
15474
|
+
|
|
15475
|
+
|
|
15476
|
+
/**
|
|
15477
|
+
* @param {string} value
|
|
15478
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
15479
|
+
*/
|
|
15480
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.setModifiedBy = function(value) {
|
|
15481
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
15482
|
+
};
|
|
15483
|
+
|
|
15484
|
+
|
|
14349
15485
|
/**
|
|
14350
15486
|
* optional string parent = 1;
|
|
14351
15487
|
* @return {string}
|
|
@@ -14729,7 +15865,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
14729
15865
|
intentName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
14730
15866
|
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
14731
15867
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
14732
|
-
language: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
15868
|
+
language: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
15869
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
15870
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
15871
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
15872
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
14733
15873
|
};
|
|
14734
15874
|
|
|
14735
15875
|
if (includeInstance) {
|
|
@@ -14786,6 +15926,24 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
14786
15926
|
var value = /** @type {string} */ (reader.readString());
|
|
14787
15927
|
msg.setLanguage(value);
|
|
14788
15928
|
break;
|
|
15929
|
+
case 6:
|
|
15930
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
15931
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
15932
|
+
msg.setCreatedAt(value);
|
|
15933
|
+
break;
|
|
15934
|
+
case 7:
|
|
15935
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
15936
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
15937
|
+
msg.setModifiedAt(value);
|
|
15938
|
+
break;
|
|
15939
|
+
case 8:
|
|
15940
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15941
|
+
msg.setCreatedBy(value);
|
|
15942
|
+
break;
|
|
15943
|
+
case 9:
|
|
15944
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15945
|
+
msg.setModifiedBy(value);
|
|
15946
|
+
break;
|
|
14789
15947
|
default:
|
|
14790
15948
|
reader.skipField();
|
|
14791
15949
|
break;
|
|
@@ -14850,6 +16008,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
14850
16008
|
f
|
|
14851
16009
|
);
|
|
14852
16010
|
}
|
|
16011
|
+
f = message.getCreatedAt();
|
|
16012
|
+
if (f != null) {
|
|
16013
|
+
writer.writeMessage(
|
|
16014
|
+
6,
|
|
16015
|
+
f,
|
|
16016
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
16017
|
+
);
|
|
16018
|
+
}
|
|
16019
|
+
f = message.getModifiedAt();
|
|
16020
|
+
if (f != null) {
|
|
16021
|
+
writer.writeMessage(
|
|
16022
|
+
7,
|
|
16023
|
+
f,
|
|
16024
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
16025
|
+
);
|
|
16026
|
+
}
|
|
16027
|
+
f = message.getCreatedBy();
|
|
16028
|
+
if (f.length > 0) {
|
|
16029
|
+
writer.writeString(
|
|
16030
|
+
8,
|
|
16031
|
+
f
|
|
16032
|
+
);
|
|
16033
|
+
}
|
|
16034
|
+
f = message.getModifiedBy();
|
|
16035
|
+
if (f.length > 0) {
|
|
16036
|
+
writer.writeString(
|
|
16037
|
+
9,
|
|
16038
|
+
f
|
|
16039
|
+
);
|
|
16040
|
+
}
|
|
14853
16041
|
};
|
|
14854
16042
|
|
|
14855
16043
|
|
|
@@ -14936,20 +16124,130 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
14936
16124
|
|
|
14937
16125
|
|
|
14938
16126
|
/**
|
|
14939
|
-
* Clears the list making it empty but non-null.
|
|
16127
|
+
* Clears the list making it empty but non-null.
|
|
16128
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
16129
|
+
*/
|
|
16130
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.clearTagsList = function() {
|
|
16131
|
+
return this.setTagsList([]);
|
|
16132
|
+
};
|
|
16133
|
+
|
|
16134
|
+
|
|
16135
|
+
/**
|
|
16136
|
+
* optional string language = 5;
|
|
16137
|
+
* @return {string}
|
|
16138
|
+
*/
|
|
16139
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getLanguage = function() {
|
|
16140
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
16141
|
+
};
|
|
16142
|
+
|
|
16143
|
+
|
|
16144
|
+
/**
|
|
16145
|
+
* @param {string} value
|
|
16146
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
16147
|
+
*/
|
|
16148
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setLanguage = function(value) {
|
|
16149
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
16150
|
+
};
|
|
16151
|
+
|
|
16152
|
+
|
|
16153
|
+
/**
|
|
16154
|
+
* optional google.protobuf.Timestamp created_at = 6;
|
|
16155
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
16156
|
+
*/
|
|
16157
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getCreatedAt = function() {
|
|
16158
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
16159
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 6));
|
|
16160
|
+
};
|
|
16161
|
+
|
|
16162
|
+
|
|
16163
|
+
/**
|
|
16164
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
16165
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
16166
|
+
*/
|
|
16167
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setCreatedAt = function(value) {
|
|
16168
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
16169
|
+
};
|
|
16170
|
+
|
|
16171
|
+
|
|
16172
|
+
/**
|
|
16173
|
+
* Clears the message field making it undefined.
|
|
16174
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
16175
|
+
*/
|
|
16176
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.clearCreatedAt = function() {
|
|
16177
|
+
return this.setCreatedAt(undefined);
|
|
16178
|
+
};
|
|
16179
|
+
|
|
16180
|
+
|
|
16181
|
+
/**
|
|
16182
|
+
* Returns whether this field is set.
|
|
16183
|
+
* @return {boolean}
|
|
16184
|
+
*/
|
|
16185
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.hasCreatedAt = function() {
|
|
16186
|
+
return jspb.Message.getField(this, 6) != null;
|
|
16187
|
+
};
|
|
16188
|
+
|
|
16189
|
+
|
|
16190
|
+
/**
|
|
16191
|
+
* optional google.protobuf.Timestamp modified_at = 7;
|
|
16192
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
16193
|
+
*/
|
|
16194
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getModifiedAt = function() {
|
|
16195
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
16196
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7));
|
|
16197
|
+
};
|
|
16198
|
+
|
|
16199
|
+
|
|
16200
|
+
/**
|
|
16201
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
16202
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
16203
|
+
*/
|
|
16204
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setModifiedAt = function(value) {
|
|
16205
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
16206
|
+
};
|
|
16207
|
+
|
|
16208
|
+
|
|
16209
|
+
/**
|
|
16210
|
+
* Clears the message field making it undefined.
|
|
16211
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
16212
|
+
*/
|
|
16213
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.clearModifiedAt = function() {
|
|
16214
|
+
return this.setModifiedAt(undefined);
|
|
16215
|
+
};
|
|
16216
|
+
|
|
16217
|
+
|
|
16218
|
+
/**
|
|
16219
|
+
* Returns whether this field is set.
|
|
16220
|
+
* @return {boolean}
|
|
16221
|
+
*/
|
|
16222
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.hasModifiedAt = function() {
|
|
16223
|
+
return jspb.Message.getField(this, 7) != null;
|
|
16224
|
+
};
|
|
16225
|
+
|
|
16226
|
+
|
|
16227
|
+
/**
|
|
16228
|
+
* optional string created_by = 8;
|
|
16229
|
+
* @return {string}
|
|
16230
|
+
*/
|
|
16231
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getCreatedBy = function() {
|
|
16232
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
16233
|
+
};
|
|
16234
|
+
|
|
16235
|
+
|
|
16236
|
+
/**
|
|
16237
|
+
* @param {string} value
|
|
14940
16238
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
14941
16239
|
*/
|
|
14942
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.
|
|
14943
|
-
return
|
|
16240
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setCreatedBy = function(value) {
|
|
16241
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
14944
16242
|
};
|
|
14945
16243
|
|
|
14946
16244
|
|
|
14947
16245
|
/**
|
|
14948
|
-
* optional string
|
|
16246
|
+
* optional string modified_by = 9;
|
|
14949
16247
|
* @return {string}
|
|
14950
16248
|
*/
|
|
14951
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.
|
|
14952
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
16249
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getModifiedBy = function() {
|
|
16250
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
14953
16251
|
};
|
|
14954
16252
|
|
|
14955
16253
|
|
|
@@ -14957,8 +16255,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
14957
16255
|
* @param {string} value
|
|
14958
16256
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
14959
16257
|
*/
|
|
14960
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.
|
|
14961
|
-
return jspb.Message.setProto3StringField(this,
|
|
16258
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setModifiedBy = function(value) {
|
|
16259
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
14962
16260
|
};
|
|
14963
16261
|
|
|
14964
16262
|
|
|
@@ -15349,7 +16647,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
15349
16647
|
intentName: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
15350
16648
|
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
15351
16649
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f,
|
|
15352
|
-
language: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
16650
|
+
language: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
16651
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
16652
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
16653
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
16654
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
15353
16655
|
};
|
|
15354
16656
|
|
|
15355
16657
|
if (includeInstance) {
|
|
@@ -15422,6 +16724,24 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
15422
16724
|
var value = /** @type {string} */ (reader.readString());
|
|
15423
16725
|
msg.setLanguage(value);
|
|
15424
16726
|
break;
|
|
16727
|
+
case 10:
|
|
16728
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
16729
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
16730
|
+
msg.setCreatedAt(value);
|
|
16731
|
+
break;
|
|
16732
|
+
case 11:
|
|
16733
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
16734
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
16735
|
+
msg.setModifiedAt(value);
|
|
16736
|
+
break;
|
|
16737
|
+
case 12:
|
|
16738
|
+
var value = /** @type {string} */ (reader.readString());
|
|
16739
|
+
msg.setCreatedBy(value);
|
|
16740
|
+
break;
|
|
16741
|
+
case 13:
|
|
16742
|
+
var value = /** @type {string} */ (reader.readString());
|
|
16743
|
+
msg.setModifiedBy(value);
|
|
16744
|
+
break;
|
|
15425
16745
|
default:
|
|
15426
16746
|
reader.skipField();
|
|
15427
16747
|
break;
|
|
@@ -15514,6 +16834,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
15514
16834
|
f
|
|
15515
16835
|
);
|
|
15516
16836
|
}
|
|
16837
|
+
f = message.getCreatedAt();
|
|
16838
|
+
if (f != null) {
|
|
16839
|
+
writer.writeMessage(
|
|
16840
|
+
10,
|
|
16841
|
+
f,
|
|
16842
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
16843
|
+
);
|
|
16844
|
+
}
|
|
16845
|
+
f = message.getModifiedAt();
|
|
16846
|
+
if (f != null) {
|
|
16847
|
+
writer.writeMessage(
|
|
16848
|
+
11,
|
|
16849
|
+
f,
|
|
16850
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
16851
|
+
);
|
|
16852
|
+
}
|
|
16853
|
+
f = message.getCreatedBy();
|
|
16854
|
+
if (f.length > 0) {
|
|
16855
|
+
writer.writeString(
|
|
16856
|
+
12,
|
|
16857
|
+
f
|
|
16858
|
+
);
|
|
16859
|
+
}
|
|
16860
|
+
f = message.getModifiedBy();
|
|
16861
|
+
if (f.length > 0) {
|
|
16862
|
+
writer.writeString(
|
|
16863
|
+
13,
|
|
16864
|
+
f
|
|
16865
|
+
);
|
|
16866
|
+
}
|
|
15517
16867
|
};
|
|
15518
16868
|
|
|
15519
16869
|
|
|
@@ -15698,6 +17048,116 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
15698
17048
|
};
|
|
15699
17049
|
|
|
15700
17050
|
|
|
17051
|
+
/**
|
|
17052
|
+
* optional google.protobuf.Timestamp created_at = 10;
|
|
17053
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
17054
|
+
*/
|
|
17055
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.getCreatedAt = function() {
|
|
17056
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
17057
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 10));
|
|
17058
|
+
};
|
|
17059
|
+
|
|
17060
|
+
|
|
17061
|
+
/**
|
|
17062
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
17063
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
17064
|
+
*/
|
|
17065
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.setCreatedAt = function(value) {
|
|
17066
|
+
return jspb.Message.setWrapperField(this, 10, value);
|
|
17067
|
+
};
|
|
17068
|
+
|
|
17069
|
+
|
|
17070
|
+
/**
|
|
17071
|
+
* Clears the message field making it undefined.
|
|
17072
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
17073
|
+
*/
|
|
17074
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.clearCreatedAt = function() {
|
|
17075
|
+
return this.setCreatedAt(undefined);
|
|
17076
|
+
};
|
|
17077
|
+
|
|
17078
|
+
|
|
17079
|
+
/**
|
|
17080
|
+
* Returns whether this field is set.
|
|
17081
|
+
* @return {boolean}
|
|
17082
|
+
*/
|
|
17083
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.hasCreatedAt = function() {
|
|
17084
|
+
return jspb.Message.getField(this, 10) != null;
|
|
17085
|
+
};
|
|
17086
|
+
|
|
17087
|
+
|
|
17088
|
+
/**
|
|
17089
|
+
* optional google.protobuf.Timestamp modified_at = 11;
|
|
17090
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
17091
|
+
*/
|
|
17092
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.getModifiedAt = function() {
|
|
17093
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
17094
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 11));
|
|
17095
|
+
};
|
|
17096
|
+
|
|
17097
|
+
|
|
17098
|
+
/**
|
|
17099
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
17100
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
17101
|
+
*/
|
|
17102
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.setModifiedAt = function(value) {
|
|
17103
|
+
return jspb.Message.setWrapperField(this, 11, value);
|
|
17104
|
+
};
|
|
17105
|
+
|
|
17106
|
+
|
|
17107
|
+
/**
|
|
17108
|
+
* Clears the message field making it undefined.
|
|
17109
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
17110
|
+
*/
|
|
17111
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.clearModifiedAt = function() {
|
|
17112
|
+
return this.setModifiedAt(undefined);
|
|
17113
|
+
};
|
|
17114
|
+
|
|
17115
|
+
|
|
17116
|
+
/**
|
|
17117
|
+
* Returns whether this field is set.
|
|
17118
|
+
* @return {boolean}
|
|
17119
|
+
*/
|
|
17120
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.hasModifiedAt = function() {
|
|
17121
|
+
return jspb.Message.getField(this, 11) != null;
|
|
17122
|
+
};
|
|
17123
|
+
|
|
17124
|
+
|
|
17125
|
+
/**
|
|
17126
|
+
* optional string created_by = 12;
|
|
17127
|
+
* @return {string}
|
|
17128
|
+
*/
|
|
17129
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.getCreatedBy = function() {
|
|
17130
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
17131
|
+
};
|
|
17132
|
+
|
|
17133
|
+
|
|
17134
|
+
/**
|
|
17135
|
+
* @param {string} value
|
|
17136
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
17137
|
+
*/
|
|
17138
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.setCreatedBy = function(value) {
|
|
17139
|
+
return jspb.Message.setProto3StringField(this, 12, value);
|
|
17140
|
+
};
|
|
17141
|
+
|
|
17142
|
+
|
|
17143
|
+
/**
|
|
17144
|
+
* optional string modified_by = 13;
|
|
17145
|
+
* @return {string}
|
|
17146
|
+
*/
|
|
17147
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.getModifiedBy = function() {
|
|
17148
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
17149
|
+
};
|
|
17150
|
+
|
|
17151
|
+
|
|
17152
|
+
/**
|
|
17153
|
+
* @param {string} value
|
|
17154
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
17155
|
+
*/
|
|
17156
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.setModifiedBy = function(value) {
|
|
17157
|
+
return jspb.Message.setProto3StringField(this, 13, value);
|
|
17158
|
+
};
|
|
17159
|
+
|
|
17160
|
+
|
|
15701
17161
|
/**
|
|
15702
17162
|
* optional string parent = 1;
|
|
15703
17163
|
* @return {string}
|
|
@@ -16082,7 +17542,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.toObjec
|
|
|
16082
17542
|
intentName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
16083
17543
|
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
16084
17544
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
|
|
16085
|
-
language: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
17545
|
+
language: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
17546
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
17547
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
17548
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
17549
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
16086
17550
|
};
|
|
16087
17551
|
|
|
16088
17552
|
if (includeInstance) {
|
|
@@ -16143,6 +17607,24 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.deseria
|
|
|
16143
17607
|
var value = /** @type {string} */ (reader.readString());
|
|
16144
17608
|
msg.setLanguage(value);
|
|
16145
17609
|
break;
|
|
17610
|
+
case 7:
|
|
17611
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
17612
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
17613
|
+
msg.setCreatedAt(value);
|
|
17614
|
+
break;
|
|
17615
|
+
case 8:
|
|
17616
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
17617
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
17618
|
+
msg.setModifiedAt(value);
|
|
17619
|
+
break;
|
|
17620
|
+
case 9:
|
|
17621
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17622
|
+
msg.setCreatedBy(value);
|
|
17623
|
+
break;
|
|
17624
|
+
case 10:
|
|
17625
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17626
|
+
msg.setModifiedBy(value);
|
|
17627
|
+
break;
|
|
16146
17628
|
default:
|
|
16147
17629
|
reader.skipField();
|
|
16148
17630
|
break;
|
|
@@ -16214,6 +17696,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.seriali
|
|
|
16214
17696
|
f
|
|
16215
17697
|
);
|
|
16216
17698
|
}
|
|
17699
|
+
f = message.getCreatedAt();
|
|
17700
|
+
if (f != null) {
|
|
17701
|
+
writer.writeMessage(
|
|
17702
|
+
7,
|
|
17703
|
+
f,
|
|
17704
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
17705
|
+
);
|
|
17706
|
+
}
|
|
17707
|
+
f = message.getModifiedAt();
|
|
17708
|
+
if (f != null) {
|
|
17709
|
+
writer.writeMessage(
|
|
17710
|
+
8,
|
|
17711
|
+
f,
|
|
17712
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
17713
|
+
);
|
|
17714
|
+
}
|
|
17715
|
+
f = message.getCreatedBy();
|
|
17716
|
+
if (f.length > 0) {
|
|
17717
|
+
writer.writeString(
|
|
17718
|
+
9,
|
|
17719
|
+
f
|
|
17720
|
+
);
|
|
17721
|
+
}
|
|
17722
|
+
f = message.getModifiedBy();
|
|
17723
|
+
if (f.length > 0) {
|
|
17724
|
+
writer.writeString(
|
|
17725
|
+
10,
|
|
17726
|
+
f
|
|
17727
|
+
);
|
|
17728
|
+
}
|
|
16217
17729
|
};
|
|
16218
17730
|
|
|
16219
17731
|
|
|
@@ -16339,8 +17851,118 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototy
|
|
|
16339
17851
|
* @param {string} value
|
|
16340
17852
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
16341
17853
|
*/
|
|
16342
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setLanguage = function(value) {
|
|
16343
|
-
return jspb.Message.setProto3StringField(this, 6, value);
|
|
17854
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setLanguage = function(value) {
|
|
17855
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
17856
|
+
};
|
|
17857
|
+
|
|
17858
|
+
|
|
17859
|
+
/**
|
|
17860
|
+
* optional google.protobuf.Timestamp created_at = 7;
|
|
17861
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
17862
|
+
*/
|
|
17863
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getCreatedAt = function() {
|
|
17864
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
17865
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7));
|
|
17866
|
+
};
|
|
17867
|
+
|
|
17868
|
+
|
|
17869
|
+
/**
|
|
17870
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
17871
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
17872
|
+
*/
|
|
17873
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setCreatedAt = function(value) {
|
|
17874
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
17875
|
+
};
|
|
17876
|
+
|
|
17877
|
+
|
|
17878
|
+
/**
|
|
17879
|
+
* Clears the message field making it undefined.
|
|
17880
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
17881
|
+
*/
|
|
17882
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.clearCreatedAt = function() {
|
|
17883
|
+
return this.setCreatedAt(undefined);
|
|
17884
|
+
};
|
|
17885
|
+
|
|
17886
|
+
|
|
17887
|
+
/**
|
|
17888
|
+
* Returns whether this field is set.
|
|
17889
|
+
* @return {boolean}
|
|
17890
|
+
*/
|
|
17891
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.hasCreatedAt = function() {
|
|
17892
|
+
return jspb.Message.getField(this, 7) != null;
|
|
17893
|
+
};
|
|
17894
|
+
|
|
17895
|
+
|
|
17896
|
+
/**
|
|
17897
|
+
* optional google.protobuf.Timestamp modified_at = 8;
|
|
17898
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
17899
|
+
*/
|
|
17900
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getModifiedAt = function() {
|
|
17901
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
17902
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 8));
|
|
17903
|
+
};
|
|
17904
|
+
|
|
17905
|
+
|
|
17906
|
+
/**
|
|
17907
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
17908
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
17909
|
+
*/
|
|
17910
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setModifiedAt = function(value) {
|
|
17911
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
17912
|
+
};
|
|
17913
|
+
|
|
17914
|
+
|
|
17915
|
+
/**
|
|
17916
|
+
* Clears the message field making it undefined.
|
|
17917
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
17918
|
+
*/
|
|
17919
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.clearModifiedAt = function() {
|
|
17920
|
+
return this.setModifiedAt(undefined);
|
|
17921
|
+
};
|
|
17922
|
+
|
|
17923
|
+
|
|
17924
|
+
/**
|
|
17925
|
+
* Returns whether this field is set.
|
|
17926
|
+
* @return {boolean}
|
|
17927
|
+
*/
|
|
17928
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.hasModifiedAt = function() {
|
|
17929
|
+
return jspb.Message.getField(this, 8) != null;
|
|
17930
|
+
};
|
|
17931
|
+
|
|
17932
|
+
|
|
17933
|
+
/**
|
|
17934
|
+
* optional string created_by = 9;
|
|
17935
|
+
* @return {string}
|
|
17936
|
+
*/
|
|
17937
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getCreatedBy = function() {
|
|
17938
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
17939
|
+
};
|
|
17940
|
+
|
|
17941
|
+
|
|
17942
|
+
/**
|
|
17943
|
+
* @param {string} value
|
|
17944
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
17945
|
+
*/
|
|
17946
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setCreatedBy = function(value) {
|
|
17947
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
17948
|
+
};
|
|
17949
|
+
|
|
17950
|
+
|
|
17951
|
+
/**
|
|
17952
|
+
* optional string modified_by = 10;
|
|
17953
|
+
* @return {string}
|
|
17954
|
+
*/
|
|
17955
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getModifiedBy = function() {
|
|
17956
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
17957
|
+
};
|
|
17958
|
+
|
|
17959
|
+
|
|
17960
|
+
/**
|
|
17961
|
+
* @param {string} value
|
|
17962
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
17963
|
+
*/
|
|
17964
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setModifiedBy = function(value) {
|
|
17965
|
+
return jspb.Message.setProto3StringField(this, 10, value);
|
|
16344
17966
|
};
|
|
16345
17967
|
|
|
16346
17968
|
|
|
@@ -16729,7 +18351,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
16729
18351
|
intentName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
16730
18352
|
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
16731
18353
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
16732
|
-
language: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
18354
|
+
language: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
18355
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
18356
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
18357
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
18358
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 11, "")
|
|
16733
18359
|
};
|
|
16734
18360
|
|
|
16735
18361
|
if (includeInstance) {
|
|
@@ -16794,6 +18420,24 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
16794
18420
|
var value = /** @type {string} */ (reader.readString());
|
|
16795
18421
|
msg.setLanguage(value);
|
|
16796
18422
|
break;
|
|
18423
|
+
case 8:
|
|
18424
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
18425
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
18426
|
+
msg.setCreatedAt(value);
|
|
18427
|
+
break;
|
|
18428
|
+
case 9:
|
|
18429
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
18430
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
18431
|
+
msg.setModifiedAt(value);
|
|
18432
|
+
break;
|
|
18433
|
+
case 10:
|
|
18434
|
+
var value = /** @type {string} */ (reader.readString());
|
|
18435
|
+
msg.setCreatedBy(value);
|
|
18436
|
+
break;
|
|
18437
|
+
case 11:
|
|
18438
|
+
var value = /** @type {string} */ (reader.readString());
|
|
18439
|
+
msg.setModifiedBy(value);
|
|
18440
|
+
break;
|
|
16797
18441
|
default:
|
|
16798
18442
|
reader.skipField();
|
|
16799
18443
|
break;
|
|
@@ -16872,6 +18516,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
16872
18516
|
f
|
|
16873
18517
|
);
|
|
16874
18518
|
}
|
|
18519
|
+
f = message.getCreatedAt();
|
|
18520
|
+
if (f != null) {
|
|
18521
|
+
writer.writeMessage(
|
|
18522
|
+
8,
|
|
18523
|
+
f,
|
|
18524
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
18525
|
+
);
|
|
18526
|
+
}
|
|
18527
|
+
f = message.getModifiedAt();
|
|
18528
|
+
if (f != null) {
|
|
18529
|
+
writer.writeMessage(
|
|
18530
|
+
9,
|
|
18531
|
+
f,
|
|
18532
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
18533
|
+
);
|
|
18534
|
+
}
|
|
18535
|
+
f = message.getCreatedBy();
|
|
18536
|
+
if (f.length > 0) {
|
|
18537
|
+
writer.writeString(
|
|
18538
|
+
10,
|
|
18539
|
+
f
|
|
18540
|
+
);
|
|
18541
|
+
}
|
|
18542
|
+
f = message.getModifiedBy();
|
|
18543
|
+
if (f.length > 0) {
|
|
18544
|
+
writer.writeString(
|
|
18545
|
+
11,
|
|
18546
|
+
f
|
|
18547
|
+
);
|
|
18548
|
+
}
|
|
16875
18549
|
};
|
|
16876
18550
|
|
|
16877
18551
|
|
|
@@ -17020,6 +18694,116 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
17020
18694
|
};
|
|
17021
18695
|
|
|
17022
18696
|
|
|
18697
|
+
/**
|
|
18698
|
+
* optional google.protobuf.Timestamp created_at = 8;
|
|
18699
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
18700
|
+
*/
|
|
18701
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.getCreatedAt = function() {
|
|
18702
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
18703
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 8));
|
|
18704
|
+
};
|
|
18705
|
+
|
|
18706
|
+
|
|
18707
|
+
/**
|
|
18708
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
18709
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
18710
|
+
*/
|
|
18711
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.setCreatedAt = function(value) {
|
|
18712
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
18713
|
+
};
|
|
18714
|
+
|
|
18715
|
+
|
|
18716
|
+
/**
|
|
18717
|
+
* Clears the message field making it undefined.
|
|
18718
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
18719
|
+
*/
|
|
18720
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.clearCreatedAt = function() {
|
|
18721
|
+
return this.setCreatedAt(undefined);
|
|
18722
|
+
};
|
|
18723
|
+
|
|
18724
|
+
|
|
18725
|
+
/**
|
|
18726
|
+
* Returns whether this field is set.
|
|
18727
|
+
* @return {boolean}
|
|
18728
|
+
*/
|
|
18729
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.hasCreatedAt = function() {
|
|
18730
|
+
return jspb.Message.getField(this, 8) != null;
|
|
18731
|
+
};
|
|
18732
|
+
|
|
18733
|
+
|
|
18734
|
+
/**
|
|
18735
|
+
* optional google.protobuf.Timestamp modified_at = 9;
|
|
18736
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
18737
|
+
*/
|
|
18738
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.getModifiedAt = function() {
|
|
18739
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
18740
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 9));
|
|
18741
|
+
};
|
|
18742
|
+
|
|
18743
|
+
|
|
18744
|
+
/**
|
|
18745
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
18746
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
18747
|
+
*/
|
|
18748
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.setModifiedAt = function(value) {
|
|
18749
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
18750
|
+
};
|
|
18751
|
+
|
|
18752
|
+
|
|
18753
|
+
/**
|
|
18754
|
+
* Clears the message field making it undefined.
|
|
18755
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
18756
|
+
*/
|
|
18757
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.clearModifiedAt = function() {
|
|
18758
|
+
return this.setModifiedAt(undefined);
|
|
18759
|
+
};
|
|
18760
|
+
|
|
18761
|
+
|
|
18762
|
+
/**
|
|
18763
|
+
* Returns whether this field is set.
|
|
18764
|
+
* @return {boolean}
|
|
18765
|
+
*/
|
|
18766
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.hasModifiedAt = function() {
|
|
18767
|
+
return jspb.Message.getField(this, 9) != null;
|
|
18768
|
+
};
|
|
18769
|
+
|
|
18770
|
+
|
|
18771
|
+
/**
|
|
18772
|
+
* optional string created_by = 10;
|
|
18773
|
+
* @return {string}
|
|
18774
|
+
*/
|
|
18775
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.getCreatedBy = function() {
|
|
18776
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
18777
|
+
};
|
|
18778
|
+
|
|
18779
|
+
|
|
18780
|
+
/**
|
|
18781
|
+
* @param {string} value
|
|
18782
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
18783
|
+
*/
|
|
18784
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.setCreatedBy = function(value) {
|
|
18785
|
+
return jspb.Message.setProto3StringField(this, 10, value);
|
|
18786
|
+
};
|
|
18787
|
+
|
|
18788
|
+
|
|
18789
|
+
/**
|
|
18790
|
+
* optional string modified_by = 11;
|
|
18791
|
+
* @return {string}
|
|
18792
|
+
*/
|
|
18793
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.getModifiedBy = function() {
|
|
18794
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
18795
|
+
};
|
|
18796
|
+
|
|
18797
|
+
|
|
18798
|
+
/**
|
|
18799
|
+
* @param {string} value
|
|
18800
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
18801
|
+
*/
|
|
18802
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.setModifiedBy = function(value) {
|
|
18803
|
+
return jspb.Message.setProto3StringField(this, 11, value);
|
|
18804
|
+
};
|
|
18805
|
+
|
|
18806
|
+
|
|
17023
18807
|
/**
|
|
17024
18808
|
* optional string parent = 1;
|
|
17025
18809
|
* @return {string}
|
|
@@ -17404,7 +19188,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
17404
19188
|
intentName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
17405
19189
|
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
17406
19190
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
|
|
17407
|
-
language: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
19191
|
+
language: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
19192
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
19193
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
19194
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
19195
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
17408
19196
|
};
|
|
17409
19197
|
|
|
17410
19198
|
if (includeInstance) {
|
|
@@ -17465,6 +19253,24 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
17465
19253
|
var value = /** @type {string} */ (reader.readString());
|
|
17466
19254
|
msg.setLanguage(value);
|
|
17467
19255
|
break;
|
|
19256
|
+
case 7:
|
|
19257
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
19258
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
19259
|
+
msg.setCreatedAt(value);
|
|
19260
|
+
break;
|
|
19261
|
+
case 8:
|
|
19262
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
19263
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
19264
|
+
msg.setModifiedAt(value);
|
|
19265
|
+
break;
|
|
19266
|
+
case 9:
|
|
19267
|
+
var value = /** @type {string} */ (reader.readString());
|
|
19268
|
+
msg.setCreatedBy(value);
|
|
19269
|
+
break;
|
|
19270
|
+
case 10:
|
|
19271
|
+
var value = /** @type {string} */ (reader.readString());
|
|
19272
|
+
msg.setModifiedBy(value);
|
|
19273
|
+
break;
|
|
17468
19274
|
default:
|
|
17469
19275
|
reader.skipField();
|
|
17470
19276
|
break;
|
|
@@ -17536,6 +19342,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
17536
19342
|
f
|
|
17537
19343
|
);
|
|
17538
19344
|
}
|
|
19345
|
+
f = message.getCreatedAt();
|
|
19346
|
+
if (f != null) {
|
|
19347
|
+
writer.writeMessage(
|
|
19348
|
+
7,
|
|
19349
|
+
f,
|
|
19350
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
19351
|
+
);
|
|
19352
|
+
}
|
|
19353
|
+
f = message.getModifiedAt();
|
|
19354
|
+
if (f != null) {
|
|
19355
|
+
writer.writeMessage(
|
|
19356
|
+
8,
|
|
19357
|
+
f,
|
|
19358
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
19359
|
+
);
|
|
19360
|
+
}
|
|
19361
|
+
f = message.getCreatedBy();
|
|
19362
|
+
if (f.length > 0) {
|
|
19363
|
+
writer.writeString(
|
|
19364
|
+
9,
|
|
19365
|
+
f
|
|
19366
|
+
);
|
|
19367
|
+
}
|
|
19368
|
+
f = message.getModifiedBy();
|
|
19369
|
+
if (f.length > 0) {
|
|
19370
|
+
writer.writeString(
|
|
19371
|
+
10,
|
|
19372
|
+
f
|
|
19373
|
+
);
|
|
19374
|
+
}
|
|
17539
19375
|
};
|
|
17540
19376
|
|
|
17541
19377
|
|
|
@@ -17666,6 +19502,116 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
17666
19502
|
};
|
|
17667
19503
|
|
|
17668
19504
|
|
|
19505
|
+
/**
|
|
19506
|
+
* optional google.protobuf.Timestamp created_at = 7;
|
|
19507
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
19508
|
+
*/
|
|
19509
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.getCreatedAt = function() {
|
|
19510
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
19511
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7));
|
|
19512
|
+
};
|
|
19513
|
+
|
|
19514
|
+
|
|
19515
|
+
/**
|
|
19516
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
19517
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
19518
|
+
*/
|
|
19519
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.setCreatedAt = function(value) {
|
|
19520
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
19521
|
+
};
|
|
19522
|
+
|
|
19523
|
+
|
|
19524
|
+
/**
|
|
19525
|
+
* Clears the message field making it undefined.
|
|
19526
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
19527
|
+
*/
|
|
19528
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.clearCreatedAt = function() {
|
|
19529
|
+
return this.setCreatedAt(undefined);
|
|
19530
|
+
};
|
|
19531
|
+
|
|
19532
|
+
|
|
19533
|
+
/**
|
|
19534
|
+
* Returns whether this field is set.
|
|
19535
|
+
* @return {boolean}
|
|
19536
|
+
*/
|
|
19537
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.hasCreatedAt = function() {
|
|
19538
|
+
return jspb.Message.getField(this, 7) != null;
|
|
19539
|
+
};
|
|
19540
|
+
|
|
19541
|
+
|
|
19542
|
+
/**
|
|
19543
|
+
* optional google.protobuf.Timestamp modified_at = 8;
|
|
19544
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
19545
|
+
*/
|
|
19546
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.getModifiedAt = function() {
|
|
19547
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
19548
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 8));
|
|
19549
|
+
};
|
|
19550
|
+
|
|
19551
|
+
|
|
19552
|
+
/**
|
|
19553
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
19554
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
19555
|
+
*/
|
|
19556
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.setModifiedAt = function(value) {
|
|
19557
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
19558
|
+
};
|
|
19559
|
+
|
|
19560
|
+
|
|
19561
|
+
/**
|
|
19562
|
+
* Clears the message field making it undefined.
|
|
19563
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
19564
|
+
*/
|
|
19565
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.clearModifiedAt = function() {
|
|
19566
|
+
return this.setModifiedAt(undefined);
|
|
19567
|
+
};
|
|
19568
|
+
|
|
19569
|
+
|
|
19570
|
+
/**
|
|
19571
|
+
* Returns whether this field is set.
|
|
19572
|
+
* @return {boolean}
|
|
19573
|
+
*/
|
|
19574
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.hasModifiedAt = function() {
|
|
19575
|
+
return jspb.Message.getField(this, 8) != null;
|
|
19576
|
+
};
|
|
19577
|
+
|
|
19578
|
+
|
|
19579
|
+
/**
|
|
19580
|
+
* optional string created_by = 9;
|
|
19581
|
+
* @return {string}
|
|
19582
|
+
*/
|
|
19583
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.getCreatedBy = function() {
|
|
19584
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
19585
|
+
};
|
|
19586
|
+
|
|
19587
|
+
|
|
19588
|
+
/**
|
|
19589
|
+
* @param {string} value
|
|
19590
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
19591
|
+
*/
|
|
19592
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.setCreatedBy = function(value) {
|
|
19593
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
19594
|
+
};
|
|
19595
|
+
|
|
19596
|
+
|
|
19597
|
+
/**
|
|
19598
|
+
* optional string modified_by = 10;
|
|
19599
|
+
* @return {string}
|
|
19600
|
+
*/
|
|
19601
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.getModifiedBy = function() {
|
|
19602
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
19603
|
+
};
|
|
19604
|
+
|
|
19605
|
+
|
|
19606
|
+
/**
|
|
19607
|
+
* @param {string} value
|
|
19608
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
19609
|
+
*/
|
|
19610
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.setModifiedBy = function(value) {
|
|
19611
|
+
return jspb.Message.setProto3StringField(this, 10, value);
|
|
19612
|
+
};
|
|
19613
|
+
|
|
19614
|
+
|
|
17669
19615
|
/**
|
|
17670
19616
|
* optional string parent = 1;
|
|
17671
19617
|
* @return {string}
|