@ondewo/nlu-client-typescript 4.6.0 → 4.8.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 +222 -1
- package/api/ondewo/nlu/agent_pb.js +1814 -30
- 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_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 +553 -0
- package/api/ondewo/nlu/session_pb.d.ts +637 -0
- package/api/ondewo/nlu/session_pb.js +10508 -5294
- 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
|
|
|
@@ -11718,7 +11882,11 @@ proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.toObjec
|
|
|
11718
11882
|
var f, obj = {
|
|
11719
11883
|
name: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
11720
11884
|
displayName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
11721
|
-
language: jspb.Message.getFieldWithDefault(msg, 3, "")
|
|
11885
|
+
language: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
11886
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
11887
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
11888
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
11889
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
11722
11890
|
};
|
|
11723
11891
|
|
|
11724
11892
|
if (includeInstance) {
|
|
@@ -11767,6 +11935,24 @@ proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.deseria
|
|
|
11767
11935
|
var value = /** @type {string} */ (reader.readString());
|
|
11768
11936
|
msg.setLanguage(value);
|
|
11769
11937
|
break;
|
|
11938
|
+
case 4:
|
|
11939
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
11940
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
11941
|
+
msg.setCreatedAt(value);
|
|
11942
|
+
break;
|
|
11943
|
+
case 5:
|
|
11944
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
11945
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
11946
|
+
msg.setModifiedAt(value);
|
|
11947
|
+
break;
|
|
11948
|
+
case 6:
|
|
11949
|
+
var value = /** @type {string} */ (reader.readString());
|
|
11950
|
+
msg.setCreatedBy(value);
|
|
11951
|
+
break;
|
|
11952
|
+
case 7:
|
|
11953
|
+
var value = /** @type {string} */ (reader.readString());
|
|
11954
|
+
msg.setModifiedBy(value);
|
|
11955
|
+
break;
|
|
11770
11956
|
default:
|
|
11771
11957
|
reader.skipField();
|
|
11772
11958
|
break;
|
|
@@ -11817,6 +12003,36 @@ proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.seriali
|
|
|
11817
12003
|
f
|
|
11818
12004
|
);
|
|
11819
12005
|
}
|
|
12006
|
+
f = message.getCreatedAt();
|
|
12007
|
+
if (f != null) {
|
|
12008
|
+
writer.writeMessage(
|
|
12009
|
+
4,
|
|
12010
|
+
f,
|
|
12011
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
12012
|
+
);
|
|
12013
|
+
}
|
|
12014
|
+
f = message.getModifiedAt();
|
|
12015
|
+
if (f != null) {
|
|
12016
|
+
writer.writeMessage(
|
|
12017
|
+
5,
|
|
12018
|
+
f,
|
|
12019
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
12020
|
+
);
|
|
12021
|
+
}
|
|
12022
|
+
f = message.getCreatedBy();
|
|
12023
|
+
if (f.length > 0) {
|
|
12024
|
+
writer.writeString(
|
|
12025
|
+
6,
|
|
12026
|
+
f
|
|
12027
|
+
);
|
|
12028
|
+
}
|
|
12029
|
+
f = message.getModifiedBy();
|
|
12030
|
+
if (f.length > 0) {
|
|
12031
|
+
writer.writeString(
|
|
12032
|
+
7,
|
|
12033
|
+
f
|
|
12034
|
+
);
|
|
12035
|
+
}
|
|
11820
12036
|
};
|
|
11821
12037
|
|
|
11822
12038
|
|
|
@@ -11874,6 +12090,116 @@ proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototy
|
|
|
11874
12090
|
};
|
|
11875
12091
|
|
|
11876
12092
|
|
|
12093
|
+
/**
|
|
12094
|
+
* optional google.protobuf.Timestamp created_at = 4;
|
|
12095
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
12096
|
+
*/
|
|
12097
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.getCreatedAt = function() {
|
|
12098
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
12099
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 4));
|
|
12100
|
+
};
|
|
12101
|
+
|
|
12102
|
+
|
|
12103
|
+
/**
|
|
12104
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
12105
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult} returns this
|
|
12106
|
+
*/
|
|
12107
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.setCreatedAt = function(value) {
|
|
12108
|
+
return jspb.Message.setWrapperField(this, 4, value);
|
|
12109
|
+
};
|
|
12110
|
+
|
|
12111
|
+
|
|
12112
|
+
/**
|
|
12113
|
+
* Clears the message field making it undefined.
|
|
12114
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult} returns this
|
|
12115
|
+
*/
|
|
12116
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.clearCreatedAt = function() {
|
|
12117
|
+
return this.setCreatedAt(undefined);
|
|
12118
|
+
};
|
|
12119
|
+
|
|
12120
|
+
|
|
12121
|
+
/**
|
|
12122
|
+
* Returns whether this field is set.
|
|
12123
|
+
* @return {boolean}
|
|
12124
|
+
*/
|
|
12125
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.hasCreatedAt = function() {
|
|
12126
|
+
return jspb.Message.getField(this, 4) != null;
|
|
12127
|
+
};
|
|
12128
|
+
|
|
12129
|
+
|
|
12130
|
+
/**
|
|
12131
|
+
* optional google.protobuf.Timestamp modified_at = 5;
|
|
12132
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
12133
|
+
*/
|
|
12134
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.getModifiedAt = function() {
|
|
12135
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
12136
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 5));
|
|
12137
|
+
};
|
|
12138
|
+
|
|
12139
|
+
|
|
12140
|
+
/**
|
|
12141
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
12142
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult} returns this
|
|
12143
|
+
*/
|
|
12144
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.setModifiedAt = function(value) {
|
|
12145
|
+
return jspb.Message.setWrapperField(this, 5, value);
|
|
12146
|
+
};
|
|
12147
|
+
|
|
12148
|
+
|
|
12149
|
+
/**
|
|
12150
|
+
* Clears the message field making it undefined.
|
|
12151
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult} returns this
|
|
12152
|
+
*/
|
|
12153
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.clearModifiedAt = function() {
|
|
12154
|
+
return this.setModifiedAt(undefined);
|
|
12155
|
+
};
|
|
12156
|
+
|
|
12157
|
+
|
|
12158
|
+
/**
|
|
12159
|
+
* Returns whether this field is set.
|
|
12160
|
+
* @return {boolean}
|
|
12161
|
+
*/
|
|
12162
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.hasModifiedAt = function() {
|
|
12163
|
+
return jspb.Message.getField(this, 5) != null;
|
|
12164
|
+
};
|
|
12165
|
+
|
|
12166
|
+
|
|
12167
|
+
/**
|
|
12168
|
+
* optional string created_by = 6;
|
|
12169
|
+
* @return {string}
|
|
12170
|
+
*/
|
|
12171
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.getCreatedBy = function() {
|
|
12172
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 6, ""));
|
|
12173
|
+
};
|
|
12174
|
+
|
|
12175
|
+
|
|
12176
|
+
/**
|
|
12177
|
+
* @param {string} value
|
|
12178
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult} returns this
|
|
12179
|
+
*/
|
|
12180
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.setCreatedBy = function(value) {
|
|
12181
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
12182
|
+
};
|
|
12183
|
+
|
|
12184
|
+
|
|
12185
|
+
/**
|
|
12186
|
+
* optional string modified_by = 7;
|
|
12187
|
+
* @return {string}
|
|
12188
|
+
*/
|
|
12189
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.getModifiedBy = function() {
|
|
12190
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 7, ""));
|
|
12191
|
+
};
|
|
12192
|
+
|
|
12193
|
+
|
|
12194
|
+
/**
|
|
12195
|
+
* @param {string} value
|
|
12196
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult} returns this
|
|
12197
|
+
*/
|
|
12198
|
+
proto.ondewo.nlu.FullTextSearchResponseEntityType.EntityTypeSearchResult.prototype.setModifiedBy = function(value) {
|
|
12199
|
+
return jspb.Message.setProto3StringField(this, 7, value);
|
|
12200
|
+
};
|
|
12201
|
+
|
|
12202
|
+
|
|
11877
12203
|
/**
|
|
11878
12204
|
* optional string parent = 1;
|
|
11879
12205
|
* @return {string}
|
|
@@ -12250,7 +12576,11 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.toObject = func
|
|
|
12250
12576
|
displayName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
12251
12577
|
entityTypeName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
12252
12578
|
entityTypeDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
12253
|
-
language: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
12579
|
+
language: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
12580
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
12581
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
12582
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
12583
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
12254
12584
|
};
|
|
12255
12585
|
|
|
12256
12586
|
if (includeInstance) {
|
|
@@ -12307,13 +12637,31 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.deserializeBina
|
|
|
12307
12637
|
var value = /** @type {string} */ (reader.readString());
|
|
12308
12638
|
msg.setLanguage(value);
|
|
12309
12639
|
break;
|
|
12310
|
-
|
|
12311
|
-
|
|
12640
|
+
case 6:
|
|
12641
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
12642
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
12643
|
+
msg.setCreatedAt(value);
|
|
12312
12644
|
break;
|
|
12313
|
-
|
|
12314
|
-
|
|
12315
|
-
|
|
12316
|
-
|
|
12645
|
+
case 7:
|
|
12646
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
12647
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
12648
|
+
msg.setModifiedAt(value);
|
|
12649
|
+
break;
|
|
12650
|
+
case 8:
|
|
12651
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12652
|
+
msg.setCreatedBy(value);
|
|
12653
|
+
break;
|
|
12654
|
+
case 9:
|
|
12655
|
+
var value = /** @type {string} */ (reader.readString());
|
|
12656
|
+
msg.setModifiedBy(value);
|
|
12657
|
+
break;
|
|
12658
|
+
default:
|
|
12659
|
+
reader.skipField();
|
|
12660
|
+
break;
|
|
12661
|
+
}
|
|
12662
|
+
}
|
|
12663
|
+
return msg;
|
|
12664
|
+
};
|
|
12317
12665
|
|
|
12318
12666
|
|
|
12319
12667
|
/**
|
|
@@ -12371,6 +12719,36 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.serializeBinary
|
|
|
12371
12719
|
f
|
|
12372
12720
|
);
|
|
12373
12721
|
}
|
|
12722
|
+
f = message.getCreatedAt();
|
|
12723
|
+
if (f != null) {
|
|
12724
|
+
writer.writeMessage(
|
|
12725
|
+
6,
|
|
12726
|
+
f,
|
|
12727
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
12728
|
+
);
|
|
12729
|
+
}
|
|
12730
|
+
f = message.getModifiedAt();
|
|
12731
|
+
if (f != null) {
|
|
12732
|
+
writer.writeMessage(
|
|
12733
|
+
7,
|
|
12734
|
+
f,
|
|
12735
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
12736
|
+
);
|
|
12737
|
+
}
|
|
12738
|
+
f = message.getCreatedBy();
|
|
12739
|
+
if (f.length > 0) {
|
|
12740
|
+
writer.writeString(
|
|
12741
|
+
8,
|
|
12742
|
+
f
|
|
12743
|
+
);
|
|
12744
|
+
}
|
|
12745
|
+
f = message.getModifiedBy();
|
|
12746
|
+
if (f.length > 0) {
|
|
12747
|
+
writer.writeString(
|
|
12748
|
+
9,
|
|
12749
|
+
f
|
|
12750
|
+
);
|
|
12751
|
+
}
|
|
12374
12752
|
};
|
|
12375
12753
|
|
|
12376
12754
|
|
|
@@ -12464,6 +12842,116 @@ proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setLa
|
|
|
12464
12842
|
};
|
|
12465
12843
|
|
|
12466
12844
|
|
|
12845
|
+
/**
|
|
12846
|
+
* optional google.protobuf.Timestamp created_at = 6;
|
|
12847
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
12848
|
+
*/
|
|
12849
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.getCreatedAt = function() {
|
|
12850
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
12851
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 6));
|
|
12852
|
+
};
|
|
12853
|
+
|
|
12854
|
+
|
|
12855
|
+
/**
|
|
12856
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
12857
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
12858
|
+
*/
|
|
12859
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setCreatedAt = function(value) {
|
|
12860
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
12861
|
+
};
|
|
12862
|
+
|
|
12863
|
+
|
|
12864
|
+
/**
|
|
12865
|
+
* Clears the message field making it undefined.
|
|
12866
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
12867
|
+
*/
|
|
12868
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.clearCreatedAt = function() {
|
|
12869
|
+
return this.setCreatedAt(undefined);
|
|
12870
|
+
};
|
|
12871
|
+
|
|
12872
|
+
|
|
12873
|
+
/**
|
|
12874
|
+
* Returns whether this field is set.
|
|
12875
|
+
* @return {boolean}
|
|
12876
|
+
*/
|
|
12877
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.hasCreatedAt = function() {
|
|
12878
|
+
return jspb.Message.getField(this, 6) != null;
|
|
12879
|
+
};
|
|
12880
|
+
|
|
12881
|
+
|
|
12882
|
+
/**
|
|
12883
|
+
* optional google.protobuf.Timestamp modified_at = 7;
|
|
12884
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
12885
|
+
*/
|
|
12886
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.getModifiedAt = function() {
|
|
12887
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
12888
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7));
|
|
12889
|
+
};
|
|
12890
|
+
|
|
12891
|
+
|
|
12892
|
+
/**
|
|
12893
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
12894
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
12895
|
+
*/
|
|
12896
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setModifiedAt = function(value) {
|
|
12897
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
12898
|
+
};
|
|
12899
|
+
|
|
12900
|
+
|
|
12901
|
+
/**
|
|
12902
|
+
* Clears the message field making it undefined.
|
|
12903
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
12904
|
+
*/
|
|
12905
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.clearModifiedAt = function() {
|
|
12906
|
+
return this.setModifiedAt(undefined);
|
|
12907
|
+
};
|
|
12908
|
+
|
|
12909
|
+
|
|
12910
|
+
/**
|
|
12911
|
+
* Returns whether this field is set.
|
|
12912
|
+
* @return {boolean}
|
|
12913
|
+
*/
|
|
12914
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.hasModifiedAt = function() {
|
|
12915
|
+
return jspb.Message.getField(this, 7) != null;
|
|
12916
|
+
};
|
|
12917
|
+
|
|
12918
|
+
|
|
12919
|
+
/**
|
|
12920
|
+
* optional string created_by = 8;
|
|
12921
|
+
* @return {string}
|
|
12922
|
+
*/
|
|
12923
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.getCreatedBy = function() {
|
|
12924
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
12925
|
+
};
|
|
12926
|
+
|
|
12927
|
+
|
|
12928
|
+
/**
|
|
12929
|
+
* @param {string} value
|
|
12930
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
12931
|
+
*/
|
|
12932
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setCreatedBy = function(value) {
|
|
12933
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
12934
|
+
};
|
|
12935
|
+
|
|
12936
|
+
|
|
12937
|
+
/**
|
|
12938
|
+
* optional string modified_by = 9;
|
|
12939
|
+
* @return {string}
|
|
12940
|
+
*/
|
|
12941
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.getModifiedBy = function() {
|
|
12942
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
12943
|
+
};
|
|
12944
|
+
|
|
12945
|
+
|
|
12946
|
+
/**
|
|
12947
|
+
* @param {string} value
|
|
12948
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult} returns this
|
|
12949
|
+
*/
|
|
12950
|
+
proto.ondewo.nlu.FullTextSearchResponseEntity.EntitySearchResult.prototype.setModifiedBy = function(value) {
|
|
12951
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
12952
|
+
};
|
|
12953
|
+
|
|
12954
|
+
|
|
12467
12955
|
/**
|
|
12468
12956
|
* optional string parent = 1;
|
|
12469
12957
|
* @return {string}
|
|
@@ -12842,7 +13330,11 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.t
|
|
|
12842
13330
|
entityTypeDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
12843
13331
|
entityName: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
12844
13332
|
entityDisplayName: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
12845
|
-
language: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
13333
|
+
language: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
13334
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
13335
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
13336
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
13337
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 11, "")
|
|
12846
13338
|
};
|
|
12847
13339
|
|
|
12848
13340
|
if (includeInstance) {
|
|
@@ -12907,6 +13399,24 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.d
|
|
|
12907
13399
|
var value = /** @type {string} */ (reader.readString());
|
|
12908
13400
|
msg.setLanguage(value);
|
|
12909
13401
|
break;
|
|
13402
|
+
case 8:
|
|
13403
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
13404
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
13405
|
+
msg.setCreatedAt(value);
|
|
13406
|
+
break;
|
|
13407
|
+
case 9:
|
|
13408
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
13409
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
13410
|
+
msg.setModifiedAt(value);
|
|
13411
|
+
break;
|
|
13412
|
+
case 10:
|
|
13413
|
+
var value = /** @type {string} */ (reader.readString());
|
|
13414
|
+
msg.setCreatedBy(value);
|
|
13415
|
+
break;
|
|
13416
|
+
case 11:
|
|
13417
|
+
var value = /** @type {string} */ (reader.readString());
|
|
13418
|
+
msg.setModifiedBy(value);
|
|
13419
|
+
break;
|
|
12910
13420
|
default:
|
|
12911
13421
|
reader.skipField();
|
|
12912
13422
|
break;
|
|
@@ -12985,6 +13495,36 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.s
|
|
|
12985
13495
|
f
|
|
12986
13496
|
);
|
|
12987
13497
|
}
|
|
13498
|
+
f = message.getCreatedAt();
|
|
13499
|
+
if (f != null) {
|
|
13500
|
+
writer.writeMessage(
|
|
13501
|
+
8,
|
|
13502
|
+
f,
|
|
13503
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
13504
|
+
);
|
|
13505
|
+
}
|
|
13506
|
+
f = message.getModifiedAt();
|
|
13507
|
+
if (f != null) {
|
|
13508
|
+
writer.writeMessage(
|
|
13509
|
+
9,
|
|
13510
|
+
f,
|
|
13511
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
13512
|
+
);
|
|
13513
|
+
}
|
|
13514
|
+
f = message.getCreatedBy();
|
|
13515
|
+
if (f.length > 0) {
|
|
13516
|
+
writer.writeString(
|
|
13517
|
+
10,
|
|
13518
|
+
f
|
|
13519
|
+
);
|
|
13520
|
+
}
|
|
13521
|
+
f = message.getModifiedBy();
|
|
13522
|
+
if (f.length > 0) {
|
|
13523
|
+
writer.writeString(
|
|
13524
|
+
11,
|
|
13525
|
+
f
|
|
13526
|
+
);
|
|
13527
|
+
}
|
|
12988
13528
|
};
|
|
12989
13529
|
|
|
12990
13530
|
|
|
@@ -13114,6 +13654,116 @@ proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.p
|
|
|
13114
13654
|
};
|
|
13115
13655
|
|
|
13116
13656
|
|
|
13657
|
+
/**
|
|
13658
|
+
* optional google.protobuf.Timestamp created_at = 8;
|
|
13659
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
13660
|
+
*/
|
|
13661
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.getCreatedAt = function() {
|
|
13662
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
13663
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 8));
|
|
13664
|
+
};
|
|
13665
|
+
|
|
13666
|
+
|
|
13667
|
+
/**
|
|
13668
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
13669
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
13670
|
+
*/
|
|
13671
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.setCreatedAt = function(value) {
|
|
13672
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
13673
|
+
};
|
|
13674
|
+
|
|
13675
|
+
|
|
13676
|
+
/**
|
|
13677
|
+
* Clears the message field making it undefined.
|
|
13678
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
13679
|
+
*/
|
|
13680
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.clearCreatedAt = function() {
|
|
13681
|
+
return this.setCreatedAt(undefined);
|
|
13682
|
+
};
|
|
13683
|
+
|
|
13684
|
+
|
|
13685
|
+
/**
|
|
13686
|
+
* Returns whether this field is set.
|
|
13687
|
+
* @return {boolean}
|
|
13688
|
+
*/
|
|
13689
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.hasCreatedAt = function() {
|
|
13690
|
+
return jspb.Message.getField(this, 8) != null;
|
|
13691
|
+
};
|
|
13692
|
+
|
|
13693
|
+
|
|
13694
|
+
/**
|
|
13695
|
+
* optional google.protobuf.Timestamp modified_at = 9;
|
|
13696
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
13697
|
+
*/
|
|
13698
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.getModifiedAt = function() {
|
|
13699
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
13700
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 9));
|
|
13701
|
+
};
|
|
13702
|
+
|
|
13703
|
+
|
|
13704
|
+
/**
|
|
13705
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
13706
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
13707
|
+
*/
|
|
13708
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.setModifiedAt = function(value) {
|
|
13709
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
13710
|
+
};
|
|
13711
|
+
|
|
13712
|
+
|
|
13713
|
+
/**
|
|
13714
|
+
* Clears the message field making it undefined.
|
|
13715
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
13716
|
+
*/
|
|
13717
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.clearModifiedAt = function() {
|
|
13718
|
+
return this.setModifiedAt(undefined);
|
|
13719
|
+
};
|
|
13720
|
+
|
|
13721
|
+
|
|
13722
|
+
/**
|
|
13723
|
+
* Returns whether this field is set.
|
|
13724
|
+
* @return {boolean}
|
|
13725
|
+
*/
|
|
13726
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.hasModifiedAt = function() {
|
|
13727
|
+
return jspb.Message.getField(this, 9) != null;
|
|
13728
|
+
};
|
|
13729
|
+
|
|
13730
|
+
|
|
13731
|
+
/**
|
|
13732
|
+
* optional string created_by = 10;
|
|
13733
|
+
* @return {string}
|
|
13734
|
+
*/
|
|
13735
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.getCreatedBy = function() {
|
|
13736
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
13737
|
+
};
|
|
13738
|
+
|
|
13739
|
+
|
|
13740
|
+
/**
|
|
13741
|
+
* @param {string} value
|
|
13742
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
13743
|
+
*/
|
|
13744
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.setCreatedBy = function(value) {
|
|
13745
|
+
return jspb.Message.setProto3StringField(this, 10, value);
|
|
13746
|
+
};
|
|
13747
|
+
|
|
13748
|
+
|
|
13749
|
+
/**
|
|
13750
|
+
* optional string modified_by = 11;
|
|
13751
|
+
* @return {string}
|
|
13752
|
+
*/
|
|
13753
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.getModifiedBy = function() {
|
|
13754
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
13755
|
+
};
|
|
13756
|
+
|
|
13757
|
+
|
|
13758
|
+
/**
|
|
13759
|
+
* @param {string} value
|
|
13760
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult} returns this
|
|
13761
|
+
*/
|
|
13762
|
+
proto.ondewo.nlu.FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.prototype.setModifiedBy = function(value) {
|
|
13763
|
+
return jspb.Message.setProto3StringField(this, 11, value);
|
|
13764
|
+
};
|
|
13765
|
+
|
|
13766
|
+
|
|
13117
13767
|
/**
|
|
13118
13768
|
* optional string parent = 1;
|
|
13119
13769
|
* @return {string}
|
|
@@ -13497,7 +14147,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.toObject = func
|
|
|
13497
14147
|
displayName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
13498
14148
|
domainName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
13499
14149
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
13500
|
-
language: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
14150
|
+
language: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
14151
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
14152
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
14153
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
14154
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
13501
14155
|
};
|
|
13502
14156
|
|
|
13503
14157
|
if (includeInstance) {
|
|
@@ -13554,7 +14208,25 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.deserializeBina
|
|
|
13554
14208
|
var value = /** @type {string} */ (reader.readString());
|
|
13555
14209
|
msg.setLanguage(value);
|
|
13556
14210
|
break;
|
|
13557
|
-
|
|
14211
|
+
case 6:
|
|
14212
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
14213
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
14214
|
+
msg.setCreatedAt(value);
|
|
14215
|
+
break;
|
|
14216
|
+
case 7:
|
|
14217
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
14218
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
14219
|
+
msg.setModifiedAt(value);
|
|
14220
|
+
break;
|
|
14221
|
+
case 8:
|
|
14222
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14223
|
+
msg.setCreatedBy(value);
|
|
14224
|
+
break;
|
|
14225
|
+
case 9:
|
|
14226
|
+
var value = /** @type {string} */ (reader.readString());
|
|
14227
|
+
msg.setModifiedBy(value);
|
|
14228
|
+
break;
|
|
14229
|
+
default:
|
|
13558
14230
|
reader.skipField();
|
|
13559
14231
|
break;
|
|
13560
14232
|
}
|
|
@@ -13618,6 +14290,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.serializeBinary
|
|
|
13618
14290
|
f
|
|
13619
14291
|
);
|
|
13620
14292
|
}
|
|
14293
|
+
f = message.getCreatedAt();
|
|
14294
|
+
if (f != null) {
|
|
14295
|
+
writer.writeMessage(
|
|
14296
|
+
6,
|
|
14297
|
+
f,
|
|
14298
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
14299
|
+
);
|
|
14300
|
+
}
|
|
14301
|
+
f = message.getModifiedAt();
|
|
14302
|
+
if (f != null) {
|
|
14303
|
+
writer.writeMessage(
|
|
14304
|
+
7,
|
|
14305
|
+
f,
|
|
14306
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
14307
|
+
);
|
|
14308
|
+
}
|
|
14309
|
+
f = message.getCreatedBy();
|
|
14310
|
+
if (f.length > 0) {
|
|
14311
|
+
writer.writeString(
|
|
14312
|
+
8,
|
|
14313
|
+
f
|
|
14314
|
+
);
|
|
14315
|
+
}
|
|
14316
|
+
f = message.getModifiedBy();
|
|
14317
|
+
if (f.length > 0) {
|
|
14318
|
+
writer.writeString(
|
|
14319
|
+
9,
|
|
14320
|
+
f
|
|
14321
|
+
);
|
|
14322
|
+
}
|
|
13621
14323
|
};
|
|
13622
14324
|
|
|
13623
14325
|
|
|
@@ -13730,6 +14432,116 @@ proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setLa
|
|
|
13730
14432
|
};
|
|
13731
14433
|
|
|
13732
14434
|
|
|
14435
|
+
/**
|
|
14436
|
+
* optional google.protobuf.Timestamp created_at = 6;
|
|
14437
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
14438
|
+
*/
|
|
14439
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.getCreatedAt = function() {
|
|
14440
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
14441
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 6));
|
|
14442
|
+
};
|
|
14443
|
+
|
|
14444
|
+
|
|
14445
|
+
/**
|
|
14446
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
14447
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
|
|
14448
|
+
*/
|
|
14449
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setCreatedAt = function(value) {
|
|
14450
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
14451
|
+
};
|
|
14452
|
+
|
|
14453
|
+
|
|
14454
|
+
/**
|
|
14455
|
+
* Clears the message field making it undefined.
|
|
14456
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
|
|
14457
|
+
*/
|
|
14458
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.clearCreatedAt = function() {
|
|
14459
|
+
return this.setCreatedAt(undefined);
|
|
14460
|
+
};
|
|
14461
|
+
|
|
14462
|
+
|
|
14463
|
+
/**
|
|
14464
|
+
* Returns whether this field is set.
|
|
14465
|
+
* @return {boolean}
|
|
14466
|
+
*/
|
|
14467
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.hasCreatedAt = function() {
|
|
14468
|
+
return jspb.Message.getField(this, 6) != null;
|
|
14469
|
+
};
|
|
14470
|
+
|
|
14471
|
+
|
|
14472
|
+
/**
|
|
14473
|
+
* optional google.protobuf.Timestamp modified_at = 7;
|
|
14474
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
14475
|
+
*/
|
|
14476
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.getModifiedAt = function() {
|
|
14477
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
14478
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7));
|
|
14479
|
+
};
|
|
14480
|
+
|
|
14481
|
+
|
|
14482
|
+
/**
|
|
14483
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
14484
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
|
|
14485
|
+
*/
|
|
14486
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setModifiedAt = function(value) {
|
|
14487
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
14488
|
+
};
|
|
14489
|
+
|
|
14490
|
+
|
|
14491
|
+
/**
|
|
14492
|
+
* Clears the message field making it undefined.
|
|
14493
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
|
|
14494
|
+
*/
|
|
14495
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.clearModifiedAt = function() {
|
|
14496
|
+
return this.setModifiedAt(undefined);
|
|
14497
|
+
};
|
|
14498
|
+
|
|
14499
|
+
|
|
14500
|
+
/**
|
|
14501
|
+
* Returns whether this field is set.
|
|
14502
|
+
* @return {boolean}
|
|
14503
|
+
*/
|
|
14504
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.hasModifiedAt = function() {
|
|
14505
|
+
return jspb.Message.getField(this, 7) != null;
|
|
14506
|
+
};
|
|
14507
|
+
|
|
14508
|
+
|
|
14509
|
+
/**
|
|
14510
|
+
* optional string created_by = 8;
|
|
14511
|
+
* @return {string}
|
|
14512
|
+
*/
|
|
14513
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.getCreatedBy = function() {
|
|
14514
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
14515
|
+
};
|
|
14516
|
+
|
|
14517
|
+
|
|
14518
|
+
/**
|
|
14519
|
+
* @param {string} value
|
|
14520
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
|
|
14521
|
+
*/
|
|
14522
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setCreatedBy = function(value) {
|
|
14523
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
14524
|
+
};
|
|
14525
|
+
|
|
14526
|
+
|
|
14527
|
+
/**
|
|
14528
|
+
* optional string modified_by = 9;
|
|
14529
|
+
* @return {string}
|
|
14530
|
+
*/
|
|
14531
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.getModifiedBy = function() {
|
|
14532
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
14533
|
+
};
|
|
14534
|
+
|
|
14535
|
+
|
|
14536
|
+
/**
|
|
14537
|
+
* @param {string} value
|
|
14538
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult} returns this
|
|
14539
|
+
*/
|
|
14540
|
+
proto.ondewo.nlu.FullTextSearchResponseIntent.IntentSearchResult.prototype.setModifiedBy = function(value) {
|
|
14541
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
14542
|
+
};
|
|
14543
|
+
|
|
14544
|
+
|
|
13733
14545
|
/**
|
|
13734
14546
|
* optional string parent = 1;
|
|
13735
14547
|
* @return {string}
|
|
@@ -14113,7 +14925,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
14113
14925
|
intentName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
14114
14926
|
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
14115
14927
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
14116
|
-
language: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
14928
|
+
language: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
14929
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
14930
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
14931
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
14932
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
14117
14933
|
};
|
|
14118
14934
|
|
|
14119
14935
|
if (includeInstance) {
|
|
@@ -14170,6 +14986,24 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
14170
14986
|
var value = /** @type {string} */ (reader.readString());
|
|
14171
14987
|
msg.setLanguage(value);
|
|
14172
14988
|
break;
|
|
14989
|
+
case 6:
|
|
14990
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
14991
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
14992
|
+
msg.setCreatedAt(value);
|
|
14993
|
+
break;
|
|
14994
|
+
case 7:
|
|
14995
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
14996
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
14997
|
+
msg.setModifiedAt(value);
|
|
14998
|
+
break;
|
|
14999
|
+
case 8:
|
|
15000
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15001
|
+
msg.setCreatedBy(value);
|
|
15002
|
+
break;
|
|
15003
|
+
case 9:
|
|
15004
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15005
|
+
msg.setModifiedBy(value);
|
|
15006
|
+
break;
|
|
14173
15007
|
default:
|
|
14174
15008
|
reader.skipField();
|
|
14175
15009
|
break;
|
|
@@ -14234,6 +15068,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
14234
15068
|
f
|
|
14235
15069
|
);
|
|
14236
15070
|
}
|
|
15071
|
+
f = message.getCreatedAt();
|
|
15072
|
+
if (f != null) {
|
|
15073
|
+
writer.writeMessage(
|
|
15074
|
+
6,
|
|
15075
|
+
f,
|
|
15076
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
15077
|
+
);
|
|
15078
|
+
}
|
|
15079
|
+
f = message.getModifiedAt();
|
|
15080
|
+
if (f != null) {
|
|
15081
|
+
writer.writeMessage(
|
|
15082
|
+
7,
|
|
15083
|
+
f,
|
|
15084
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
15085
|
+
);
|
|
15086
|
+
}
|
|
15087
|
+
f = message.getCreatedBy();
|
|
15088
|
+
if (f.length > 0) {
|
|
15089
|
+
writer.writeString(
|
|
15090
|
+
8,
|
|
15091
|
+
f
|
|
15092
|
+
);
|
|
15093
|
+
}
|
|
15094
|
+
f = message.getModifiedBy();
|
|
15095
|
+
if (f.length > 0) {
|
|
15096
|
+
writer.writeString(
|
|
15097
|
+
9,
|
|
15098
|
+
f
|
|
15099
|
+
);
|
|
15100
|
+
}
|
|
14237
15101
|
};
|
|
14238
15102
|
|
|
14239
15103
|
|
|
@@ -14346,6 +15210,116 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResu
|
|
|
14346
15210
|
};
|
|
14347
15211
|
|
|
14348
15212
|
|
|
15213
|
+
/**
|
|
15214
|
+
* optional google.protobuf.Timestamp created_at = 6;
|
|
15215
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
15216
|
+
*/
|
|
15217
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.getCreatedAt = function() {
|
|
15218
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
15219
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 6));
|
|
15220
|
+
};
|
|
15221
|
+
|
|
15222
|
+
|
|
15223
|
+
/**
|
|
15224
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
15225
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
15226
|
+
*/
|
|
15227
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.setCreatedAt = function(value) {
|
|
15228
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
15229
|
+
};
|
|
15230
|
+
|
|
15231
|
+
|
|
15232
|
+
/**
|
|
15233
|
+
* Clears the message field making it undefined.
|
|
15234
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
15235
|
+
*/
|
|
15236
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.clearCreatedAt = function() {
|
|
15237
|
+
return this.setCreatedAt(undefined);
|
|
15238
|
+
};
|
|
15239
|
+
|
|
15240
|
+
|
|
15241
|
+
/**
|
|
15242
|
+
* Returns whether this field is set.
|
|
15243
|
+
* @return {boolean}
|
|
15244
|
+
*/
|
|
15245
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.hasCreatedAt = function() {
|
|
15246
|
+
return jspb.Message.getField(this, 6) != null;
|
|
15247
|
+
};
|
|
15248
|
+
|
|
15249
|
+
|
|
15250
|
+
/**
|
|
15251
|
+
* optional google.protobuf.Timestamp modified_at = 7;
|
|
15252
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
15253
|
+
*/
|
|
15254
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.getModifiedAt = function() {
|
|
15255
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
15256
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7));
|
|
15257
|
+
};
|
|
15258
|
+
|
|
15259
|
+
|
|
15260
|
+
/**
|
|
15261
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
15262
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
15263
|
+
*/
|
|
15264
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.setModifiedAt = function(value) {
|
|
15265
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
15266
|
+
};
|
|
15267
|
+
|
|
15268
|
+
|
|
15269
|
+
/**
|
|
15270
|
+
* Clears the message field making it undefined.
|
|
15271
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
15272
|
+
*/
|
|
15273
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.clearModifiedAt = function() {
|
|
15274
|
+
return this.setModifiedAt(undefined);
|
|
15275
|
+
};
|
|
15276
|
+
|
|
15277
|
+
|
|
15278
|
+
/**
|
|
15279
|
+
* Returns whether this field is set.
|
|
15280
|
+
* @return {boolean}
|
|
15281
|
+
*/
|
|
15282
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.hasModifiedAt = function() {
|
|
15283
|
+
return jspb.Message.getField(this, 7) != null;
|
|
15284
|
+
};
|
|
15285
|
+
|
|
15286
|
+
|
|
15287
|
+
/**
|
|
15288
|
+
* optional string created_by = 8;
|
|
15289
|
+
* @return {string}
|
|
15290
|
+
*/
|
|
15291
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.getCreatedBy = function() {
|
|
15292
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
15293
|
+
};
|
|
15294
|
+
|
|
15295
|
+
|
|
15296
|
+
/**
|
|
15297
|
+
* @param {string} value
|
|
15298
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
15299
|
+
*/
|
|
15300
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.setCreatedBy = function(value) {
|
|
15301
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
15302
|
+
};
|
|
15303
|
+
|
|
15304
|
+
|
|
15305
|
+
/**
|
|
15306
|
+
* optional string modified_by = 9;
|
|
15307
|
+
* @return {string}
|
|
15308
|
+
*/
|
|
15309
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.getModifiedBy = function() {
|
|
15310
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
15311
|
+
};
|
|
15312
|
+
|
|
15313
|
+
|
|
15314
|
+
/**
|
|
15315
|
+
* @param {string} value
|
|
15316
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult} returns this
|
|
15317
|
+
*/
|
|
15318
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.prototype.setModifiedBy = function(value) {
|
|
15319
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
15320
|
+
};
|
|
15321
|
+
|
|
15322
|
+
|
|
14349
15323
|
/**
|
|
14350
15324
|
* optional string parent = 1;
|
|
14351
15325
|
* @return {string}
|
|
@@ -14729,7 +15703,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
14729
15703
|
intentName: jspb.Message.getFieldWithDefault(msg, 2, ""),
|
|
14730
15704
|
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
14731
15705
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 4)) == null ? undefined : f,
|
|
14732
|
-
language: jspb.Message.getFieldWithDefault(msg, 5, "")
|
|
15706
|
+
language: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
15707
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
15708
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
15709
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 8, ""),
|
|
15710
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
14733
15711
|
};
|
|
14734
15712
|
|
|
14735
15713
|
if (includeInstance) {
|
|
@@ -14786,6 +15764,24 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
14786
15764
|
var value = /** @type {string} */ (reader.readString());
|
|
14787
15765
|
msg.setLanguage(value);
|
|
14788
15766
|
break;
|
|
15767
|
+
case 6:
|
|
15768
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
15769
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
15770
|
+
msg.setCreatedAt(value);
|
|
15771
|
+
break;
|
|
15772
|
+
case 7:
|
|
15773
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
15774
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
15775
|
+
msg.setModifiedAt(value);
|
|
15776
|
+
break;
|
|
15777
|
+
case 8:
|
|
15778
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15779
|
+
msg.setCreatedBy(value);
|
|
15780
|
+
break;
|
|
15781
|
+
case 9:
|
|
15782
|
+
var value = /** @type {string} */ (reader.readString());
|
|
15783
|
+
msg.setModifiedBy(value);
|
|
15784
|
+
break;
|
|
14789
15785
|
default:
|
|
14790
15786
|
reader.skipField();
|
|
14791
15787
|
break;
|
|
@@ -14850,6 +15846,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
14850
15846
|
f
|
|
14851
15847
|
);
|
|
14852
15848
|
}
|
|
15849
|
+
f = message.getCreatedAt();
|
|
15850
|
+
if (f != null) {
|
|
15851
|
+
writer.writeMessage(
|
|
15852
|
+
6,
|
|
15853
|
+
f,
|
|
15854
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
15855
|
+
);
|
|
15856
|
+
}
|
|
15857
|
+
f = message.getModifiedAt();
|
|
15858
|
+
if (f != null) {
|
|
15859
|
+
writer.writeMessage(
|
|
15860
|
+
7,
|
|
15861
|
+
f,
|
|
15862
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
15863
|
+
);
|
|
15864
|
+
}
|
|
15865
|
+
f = message.getCreatedBy();
|
|
15866
|
+
if (f.length > 0) {
|
|
15867
|
+
writer.writeString(
|
|
15868
|
+
8,
|
|
15869
|
+
f
|
|
15870
|
+
);
|
|
15871
|
+
}
|
|
15872
|
+
f = message.getModifiedBy();
|
|
15873
|
+
if (f.length > 0) {
|
|
15874
|
+
writer.writeString(
|
|
15875
|
+
9,
|
|
15876
|
+
f
|
|
15877
|
+
);
|
|
15878
|
+
}
|
|
14853
15879
|
};
|
|
14854
15880
|
|
|
14855
15881
|
|
|
@@ -14936,20 +15962,130 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
14936
15962
|
|
|
14937
15963
|
|
|
14938
15964
|
/**
|
|
14939
|
-
* Clears the list making it empty but non-null.
|
|
15965
|
+
* Clears the list making it empty but non-null.
|
|
15966
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
15967
|
+
*/
|
|
15968
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.clearTagsList = function() {
|
|
15969
|
+
return this.setTagsList([]);
|
|
15970
|
+
};
|
|
15971
|
+
|
|
15972
|
+
|
|
15973
|
+
/**
|
|
15974
|
+
* optional string language = 5;
|
|
15975
|
+
* @return {string}
|
|
15976
|
+
*/
|
|
15977
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getLanguage = function() {
|
|
15978
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 5, ""));
|
|
15979
|
+
};
|
|
15980
|
+
|
|
15981
|
+
|
|
15982
|
+
/**
|
|
15983
|
+
* @param {string} value
|
|
15984
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
15985
|
+
*/
|
|
15986
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setLanguage = function(value) {
|
|
15987
|
+
return jspb.Message.setProto3StringField(this, 5, value);
|
|
15988
|
+
};
|
|
15989
|
+
|
|
15990
|
+
|
|
15991
|
+
/**
|
|
15992
|
+
* optional google.protobuf.Timestamp created_at = 6;
|
|
15993
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
15994
|
+
*/
|
|
15995
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getCreatedAt = function() {
|
|
15996
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
15997
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 6));
|
|
15998
|
+
};
|
|
15999
|
+
|
|
16000
|
+
|
|
16001
|
+
/**
|
|
16002
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
16003
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
16004
|
+
*/
|
|
16005
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setCreatedAt = function(value) {
|
|
16006
|
+
return jspb.Message.setWrapperField(this, 6, value);
|
|
16007
|
+
};
|
|
16008
|
+
|
|
16009
|
+
|
|
16010
|
+
/**
|
|
16011
|
+
* Clears the message field making it undefined.
|
|
16012
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
16013
|
+
*/
|
|
16014
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.clearCreatedAt = function() {
|
|
16015
|
+
return this.setCreatedAt(undefined);
|
|
16016
|
+
};
|
|
16017
|
+
|
|
16018
|
+
|
|
16019
|
+
/**
|
|
16020
|
+
* Returns whether this field is set.
|
|
16021
|
+
* @return {boolean}
|
|
16022
|
+
*/
|
|
16023
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.hasCreatedAt = function() {
|
|
16024
|
+
return jspb.Message.getField(this, 6) != null;
|
|
16025
|
+
};
|
|
16026
|
+
|
|
16027
|
+
|
|
16028
|
+
/**
|
|
16029
|
+
* optional google.protobuf.Timestamp modified_at = 7;
|
|
16030
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
16031
|
+
*/
|
|
16032
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getModifiedAt = function() {
|
|
16033
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
16034
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7));
|
|
16035
|
+
};
|
|
16036
|
+
|
|
16037
|
+
|
|
16038
|
+
/**
|
|
16039
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
16040
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
16041
|
+
*/
|
|
16042
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setModifiedAt = function(value) {
|
|
16043
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
16044
|
+
};
|
|
16045
|
+
|
|
16046
|
+
|
|
16047
|
+
/**
|
|
16048
|
+
* Clears the message field making it undefined.
|
|
16049
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
16050
|
+
*/
|
|
16051
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.clearModifiedAt = function() {
|
|
16052
|
+
return this.setModifiedAt(undefined);
|
|
16053
|
+
};
|
|
16054
|
+
|
|
16055
|
+
|
|
16056
|
+
/**
|
|
16057
|
+
* Returns whether this field is set.
|
|
16058
|
+
* @return {boolean}
|
|
16059
|
+
*/
|
|
16060
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.hasModifiedAt = function() {
|
|
16061
|
+
return jspb.Message.getField(this, 7) != null;
|
|
16062
|
+
};
|
|
16063
|
+
|
|
16064
|
+
|
|
16065
|
+
/**
|
|
16066
|
+
* optional string created_by = 8;
|
|
16067
|
+
* @return {string}
|
|
16068
|
+
*/
|
|
16069
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getCreatedBy = function() {
|
|
16070
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
|
|
16071
|
+
};
|
|
16072
|
+
|
|
16073
|
+
|
|
16074
|
+
/**
|
|
16075
|
+
* @param {string} value
|
|
14940
16076
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
14941
16077
|
*/
|
|
14942
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.
|
|
14943
|
-
return
|
|
16078
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setCreatedBy = function(value) {
|
|
16079
|
+
return jspb.Message.setProto3StringField(this, 8, value);
|
|
14944
16080
|
};
|
|
14945
16081
|
|
|
14946
16082
|
|
|
14947
16083
|
/**
|
|
14948
|
-
* optional string
|
|
16084
|
+
* optional string modified_by = 9;
|
|
14949
16085
|
* @return {string}
|
|
14950
16086
|
*/
|
|
14951
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.
|
|
14952
|
-
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this,
|
|
16087
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.getModifiedBy = function() {
|
|
16088
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
14953
16089
|
};
|
|
14954
16090
|
|
|
14955
16091
|
|
|
@@ -14957,8 +16093,8 @@ proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchRe
|
|
|
14957
16093
|
* @param {string} value
|
|
14958
16094
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult} returns this
|
|
14959
16095
|
*/
|
|
14960
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.
|
|
14961
|
-
return jspb.Message.setProto3StringField(this,
|
|
16096
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.prototype.setModifiedBy = function(value) {
|
|
16097
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
14962
16098
|
};
|
|
14963
16099
|
|
|
14964
16100
|
|
|
@@ -15349,7 +16485,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
15349
16485
|
intentName: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
15350
16486
|
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
15351
16487
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 8)) == null ? undefined : f,
|
|
15352
|
-
language: jspb.Message.getFieldWithDefault(msg, 9, "")
|
|
16488
|
+
language: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
16489
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
16490
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
16491
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 12, ""),
|
|
16492
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 13, "")
|
|
15353
16493
|
};
|
|
15354
16494
|
|
|
15355
16495
|
if (includeInstance) {
|
|
@@ -15422,6 +16562,24 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
15422
16562
|
var value = /** @type {string} */ (reader.readString());
|
|
15423
16563
|
msg.setLanguage(value);
|
|
15424
16564
|
break;
|
|
16565
|
+
case 10:
|
|
16566
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
16567
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
16568
|
+
msg.setCreatedAt(value);
|
|
16569
|
+
break;
|
|
16570
|
+
case 11:
|
|
16571
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
16572
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
16573
|
+
msg.setModifiedAt(value);
|
|
16574
|
+
break;
|
|
16575
|
+
case 12:
|
|
16576
|
+
var value = /** @type {string} */ (reader.readString());
|
|
16577
|
+
msg.setCreatedBy(value);
|
|
16578
|
+
break;
|
|
16579
|
+
case 13:
|
|
16580
|
+
var value = /** @type {string} */ (reader.readString());
|
|
16581
|
+
msg.setModifiedBy(value);
|
|
16582
|
+
break;
|
|
15425
16583
|
default:
|
|
15426
16584
|
reader.skipField();
|
|
15427
16585
|
break;
|
|
@@ -15514,6 +16672,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
15514
16672
|
f
|
|
15515
16673
|
);
|
|
15516
16674
|
}
|
|
16675
|
+
f = message.getCreatedAt();
|
|
16676
|
+
if (f != null) {
|
|
16677
|
+
writer.writeMessage(
|
|
16678
|
+
10,
|
|
16679
|
+
f,
|
|
16680
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
16681
|
+
);
|
|
16682
|
+
}
|
|
16683
|
+
f = message.getModifiedAt();
|
|
16684
|
+
if (f != null) {
|
|
16685
|
+
writer.writeMessage(
|
|
16686
|
+
11,
|
|
16687
|
+
f,
|
|
16688
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
16689
|
+
);
|
|
16690
|
+
}
|
|
16691
|
+
f = message.getCreatedBy();
|
|
16692
|
+
if (f.length > 0) {
|
|
16693
|
+
writer.writeString(
|
|
16694
|
+
12,
|
|
16695
|
+
f
|
|
16696
|
+
);
|
|
16697
|
+
}
|
|
16698
|
+
f = message.getModifiedBy();
|
|
16699
|
+
if (f.length > 0) {
|
|
16700
|
+
writer.writeString(
|
|
16701
|
+
13,
|
|
16702
|
+
f
|
|
16703
|
+
);
|
|
16704
|
+
}
|
|
15517
16705
|
};
|
|
15518
16706
|
|
|
15519
16707
|
|
|
@@ -15698,6 +16886,116 @@ proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult
|
|
|
15698
16886
|
};
|
|
15699
16887
|
|
|
15700
16888
|
|
|
16889
|
+
/**
|
|
16890
|
+
* optional google.protobuf.Timestamp created_at = 10;
|
|
16891
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
16892
|
+
*/
|
|
16893
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.getCreatedAt = function() {
|
|
16894
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
16895
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 10));
|
|
16896
|
+
};
|
|
16897
|
+
|
|
16898
|
+
|
|
16899
|
+
/**
|
|
16900
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
16901
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
16902
|
+
*/
|
|
16903
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.setCreatedAt = function(value) {
|
|
16904
|
+
return jspb.Message.setWrapperField(this, 10, value);
|
|
16905
|
+
};
|
|
16906
|
+
|
|
16907
|
+
|
|
16908
|
+
/**
|
|
16909
|
+
* Clears the message field making it undefined.
|
|
16910
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
16911
|
+
*/
|
|
16912
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.clearCreatedAt = function() {
|
|
16913
|
+
return this.setCreatedAt(undefined);
|
|
16914
|
+
};
|
|
16915
|
+
|
|
16916
|
+
|
|
16917
|
+
/**
|
|
16918
|
+
* Returns whether this field is set.
|
|
16919
|
+
* @return {boolean}
|
|
16920
|
+
*/
|
|
16921
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.hasCreatedAt = function() {
|
|
16922
|
+
return jspb.Message.getField(this, 10) != null;
|
|
16923
|
+
};
|
|
16924
|
+
|
|
16925
|
+
|
|
16926
|
+
/**
|
|
16927
|
+
* optional google.protobuf.Timestamp modified_at = 11;
|
|
16928
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
16929
|
+
*/
|
|
16930
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.getModifiedAt = function() {
|
|
16931
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
16932
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 11));
|
|
16933
|
+
};
|
|
16934
|
+
|
|
16935
|
+
|
|
16936
|
+
/**
|
|
16937
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
16938
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
16939
|
+
*/
|
|
16940
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.setModifiedAt = function(value) {
|
|
16941
|
+
return jspb.Message.setWrapperField(this, 11, value);
|
|
16942
|
+
};
|
|
16943
|
+
|
|
16944
|
+
|
|
16945
|
+
/**
|
|
16946
|
+
* Clears the message field making it undefined.
|
|
16947
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
16948
|
+
*/
|
|
16949
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.clearModifiedAt = function() {
|
|
16950
|
+
return this.setModifiedAt(undefined);
|
|
16951
|
+
};
|
|
16952
|
+
|
|
16953
|
+
|
|
16954
|
+
/**
|
|
16955
|
+
* Returns whether this field is set.
|
|
16956
|
+
* @return {boolean}
|
|
16957
|
+
*/
|
|
16958
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.hasModifiedAt = function() {
|
|
16959
|
+
return jspb.Message.getField(this, 11) != null;
|
|
16960
|
+
};
|
|
16961
|
+
|
|
16962
|
+
|
|
16963
|
+
/**
|
|
16964
|
+
* optional string created_by = 12;
|
|
16965
|
+
* @return {string}
|
|
16966
|
+
*/
|
|
16967
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.getCreatedBy = function() {
|
|
16968
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
|
|
16969
|
+
};
|
|
16970
|
+
|
|
16971
|
+
|
|
16972
|
+
/**
|
|
16973
|
+
* @param {string} value
|
|
16974
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
16975
|
+
*/
|
|
16976
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.setCreatedBy = function(value) {
|
|
16977
|
+
return jspb.Message.setProto3StringField(this, 12, value);
|
|
16978
|
+
};
|
|
16979
|
+
|
|
16980
|
+
|
|
16981
|
+
/**
|
|
16982
|
+
* optional string modified_by = 13;
|
|
16983
|
+
* @return {string}
|
|
16984
|
+
*/
|
|
16985
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.getModifiedBy = function() {
|
|
16986
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
|
|
16987
|
+
};
|
|
16988
|
+
|
|
16989
|
+
|
|
16990
|
+
/**
|
|
16991
|
+
* @param {string} value
|
|
16992
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult} returns this
|
|
16993
|
+
*/
|
|
16994
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.prototype.setModifiedBy = function(value) {
|
|
16995
|
+
return jspb.Message.setProto3StringField(this, 13, value);
|
|
16996
|
+
};
|
|
16997
|
+
|
|
16998
|
+
|
|
15701
16999
|
/**
|
|
15702
17000
|
* optional string parent = 1;
|
|
15703
17001
|
* @return {string}
|
|
@@ -16082,7 +17380,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.toObjec
|
|
|
16082
17380
|
intentName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
16083
17381
|
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
16084
17382
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
|
|
16085
|
-
language: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
17383
|
+
language: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
17384
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
17385
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
17386
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
17387
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
16086
17388
|
};
|
|
16087
17389
|
|
|
16088
17390
|
if (includeInstance) {
|
|
@@ -16143,6 +17445,24 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.deseria
|
|
|
16143
17445
|
var value = /** @type {string} */ (reader.readString());
|
|
16144
17446
|
msg.setLanguage(value);
|
|
16145
17447
|
break;
|
|
17448
|
+
case 7:
|
|
17449
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
17450
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
17451
|
+
msg.setCreatedAt(value);
|
|
17452
|
+
break;
|
|
17453
|
+
case 8:
|
|
17454
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
17455
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
17456
|
+
msg.setModifiedAt(value);
|
|
17457
|
+
break;
|
|
17458
|
+
case 9:
|
|
17459
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17460
|
+
msg.setCreatedBy(value);
|
|
17461
|
+
break;
|
|
17462
|
+
case 10:
|
|
17463
|
+
var value = /** @type {string} */ (reader.readString());
|
|
17464
|
+
msg.setModifiedBy(value);
|
|
17465
|
+
break;
|
|
16146
17466
|
default:
|
|
16147
17467
|
reader.skipField();
|
|
16148
17468
|
break;
|
|
@@ -16214,6 +17534,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.seriali
|
|
|
16214
17534
|
f
|
|
16215
17535
|
);
|
|
16216
17536
|
}
|
|
17537
|
+
f = message.getCreatedAt();
|
|
17538
|
+
if (f != null) {
|
|
17539
|
+
writer.writeMessage(
|
|
17540
|
+
7,
|
|
17541
|
+
f,
|
|
17542
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
17543
|
+
);
|
|
17544
|
+
}
|
|
17545
|
+
f = message.getModifiedAt();
|
|
17546
|
+
if (f != null) {
|
|
17547
|
+
writer.writeMessage(
|
|
17548
|
+
8,
|
|
17549
|
+
f,
|
|
17550
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
17551
|
+
);
|
|
17552
|
+
}
|
|
17553
|
+
f = message.getCreatedBy();
|
|
17554
|
+
if (f.length > 0) {
|
|
17555
|
+
writer.writeString(
|
|
17556
|
+
9,
|
|
17557
|
+
f
|
|
17558
|
+
);
|
|
17559
|
+
}
|
|
17560
|
+
f = message.getModifiedBy();
|
|
17561
|
+
if (f.length > 0) {
|
|
17562
|
+
writer.writeString(
|
|
17563
|
+
10,
|
|
17564
|
+
f
|
|
17565
|
+
);
|
|
17566
|
+
}
|
|
16217
17567
|
};
|
|
16218
17568
|
|
|
16219
17569
|
|
|
@@ -16339,8 +17689,118 @@ proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototy
|
|
|
16339
17689
|
* @param {string} value
|
|
16340
17690
|
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
16341
17691
|
*/
|
|
16342
|
-
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setLanguage = function(value) {
|
|
16343
|
-
return jspb.Message.setProto3StringField(this, 6, value);
|
|
17692
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setLanguage = function(value) {
|
|
17693
|
+
return jspb.Message.setProto3StringField(this, 6, value);
|
|
17694
|
+
};
|
|
17695
|
+
|
|
17696
|
+
|
|
17697
|
+
/**
|
|
17698
|
+
* optional google.protobuf.Timestamp created_at = 7;
|
|
17699
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
17700
|
+
*/
|
|
17701
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getCreatedAt = function() {
|
|
17702
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
17703
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7));
|
|
17704
|
+
};
|
|
17705
|
+
|
|
17706
|
+
|
|
17707
|
+
/**
|
|
17708
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
17709
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
17710
|
+
*/
|
|
17711
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setCreatedAt = function(value) {
|
|
17712
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
17713
|
+
};
|
|
17714
|
+
|
|
17715
|
+
|
|
17716
|
+
/**
|
|
17717
|
+
* Clears the message field making it undefined.
|
|
17718
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
17719
|
+
*/
|
|
17720
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.clearCreatedAt = function() {
|
|
17721
|
+
return this.setCreatedAt(undefined);
|
|
17722
|
+
};
|
|
17723
|
+
|
|
17724
|
+
|
|
17725
|
+
/**
|
|
17726
|
+
* Returns whether this field is set.
|
|
17727
|
+
* @return {boolean}
|
|
17728
|
+
*/
|
|
17729
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.hasCreatedAt = function() {
|
|
17730
|
+
return jspb.Message.getField(this, 7) != null;
|
|
17731
|
+
};
|
|
17732
|
+
|
|
17733
|
+
|
|
17734
|
+
/**
|
|
17735
|
+
* optional google.protobuf.Timestamp modified_at = 8;
|
|
17736
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
17737
|
+
*/
|
|
17738
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getModifiedAt = function() {
|
|
17739
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
17740
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 8));
|
|
17741
|
+
};
|
|
17742
|
+
|
|
17743
|
+
|
|
17744
|
+
/**
|
|
17745
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
17746
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
17747
|
+
*/
|
|
17748
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setModifiedAt = function(value) {
|
|
17749
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
17750
|
+
};
|
|
17751
|
+
|
|
17752
|
+
|
|
17753
|
+
/**
|
|
17754
|
+
* Clears the message field making it undefined.
|
|
17755
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
17756
|
+
*/
|
|
17757
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.clearModifiedAt = function() {
|
|
17758
|
+
return this.setModifiedAt(undefined);
|
|
17759
|
+
};
|
|
17760
|
+
|
|
17761
|
+
|
|
17762
|
+
/**
|
|
17763
|
+
* Returns whether this field is set.
|
|
17764
|
+
* @return {boolean}
|
|
17765
|
+
*/
|
|
17766
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.hasModifiedAt = function() {
|
|
17767
|
+
return jspb.Message.getField(this, 8) != null;
|
|
17768
|
+
};
|
|
17769
|
+
|
|
17770
|
+
|
|
17771
|
+
/**
|
|
17772
|
+
* optional string created_by = 9;
|
|
17773
|
+
* @return {string}
|
|
17774
|
+
*/
|
|
17775
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getCreatedBy = function() {
|
|
17776
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
17777
|
+
};
|
|
17778
|
+
|
|
17779
|
+
|
|
17780
|
+
/**
|
|
17781
|
+
* @param {string} value
|
|
17782
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
17783
|
+
*/
|
|
17784
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setCreatedBy = function(value) {
|
|
17785
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
17786
|
+
};
|
|
17787
|
+
|
|
17788
|
+
|
|
17789
|
+
/**
|
|
17790
|
+
* optional string modified_by = 10;
|
|
17791
|
+
* @return {string}
|
|
17792
|
+
*/
|
|
17793
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.getModifiedBy = function() {
|
|
17794
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
17795
|
+
};
|
|
17796
|
+
|
|
17797
|
+
|
|
17798
|
+
/**
|
|
17799
|
+
* @param {string} value
|
|
17800
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult} returns this
|
|
17801
|
+
*/
|
|
17802
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentTags.IntentTagsSearchResult.prototype.setModifiedBy = function(value) {
|
|
17803
|
+
return jspb.Message.setProto3StringField(this, 10, value);
|
|
16344
17804
|
};
|
|
16345
17805
|
|
|
16346
17806
|
|
|
@@ -16729,7 +18189,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
16729
18189
|
intentName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
16730
18190
|
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 5, ""),
|
|
16731
18191
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
|
|
16732
|
-
language: jspb.Message.getFieldWithDefault(msg, 7, "")
|
|
18192
|
+
language: jspb.Message.getFieldWithDefault(msg, 7, ""),
|
|
18193
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
18194
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
18195
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 10, ""),
|
|
18196
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 11, "")
|
|
16733
18197
|
};
|
|
16734
18198
|
|
|
16735
18199
|
if (includeInstance) {
|
|
@@ -16794,6 +18258,24 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
16794
18258
|
var value = /** @type {string} */ (reader.readString());
|
|
16795
18259
|
msg.setLanguage(value);
|
|
16796
18260
|
break;
|
|
18261
|
+
case 8:
|
|
18262
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
18263
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
18264
|
+
msg.setCreatedAt(value);
|
|
18265
|
+
break;
|
|
18266
|
+
case 9:
|
|
18267
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
18268
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
18269
|
+
msg.setModifiedAt(value);
|
|
18270
|
+
break;
|
|
18271
|
+
case 10:
|
|
18272
|
+
var value = /** @type {string} */ (reader.readString());
|
|
18273
|
+
msg.setCreatedBy(value);
|
|
18274
|
+
break;
|
|
18275
|
+
case 11:
|
|
18276
|
+
var value = /** @type {string} */ (reader.readString());
|
|
18277
|
+
msg.setModifiedBy(value);
|
|
18278
|
+
break;
|
|
16797
18279
|
default:
|
|
16798
18280
|
reader.skipField();
|
|
16799
18281
|
break;
|
|
@@ -16872,6 +18354,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
16872
18354
|
f
|
|
16873
18355
|
);
|
|
16874
18356
|
}
|
|
18357
|
+
f = message.getCreatedAt();
|
|
18358
|
+
if (f != null) {
|
|
18359
|
+
writer.writeMessage(
|
|
18360
|
+
8,
|
|
18361
|
+
f,
|
|
18362
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
18363
|
+
);
|
|
18364
|
+
}
|
|
18365
|
+
f = message.getModifiedAt();
|
|
18366
|
+
if (f != null) {
|
|
18367
|
+
writer.writeMessage(
|
|
18368
|
+
9,
|
|
18369
|
+
f,
|
|
18370
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
18371
|
+
);
|
|
18372
|
+
}
|
|
18373
|
+
f = message.getCreatedBy();
|
|
18374
|
+
if (f.length > 0) {
|
|
18375
|
+
writer.writeString(
|
|
18376
|
+
10,
|
|
18377
|
+
f
|
|
18378
|
+
);
|
|
18379
|
+
}
|
|
18380
|
+
f = message.getModifiedBy();
|
|
18381
|
+
if (f.length > 0) {
|
|
18382
|
+
writer.writeString(
|
|
18383
|
+
11,
|
|
18384
|
+
f
|
|
18385
|
+
);
|
|
18386
|
+
}
|
|
16875
18387
|
};
|
|
16876
18388
|
|
|
16877
18389
|
|
|
@@ -17020,6 +18532,116 @@ proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult
|
|
|
17020
18532
|
};
|
|
17021
18533
|
|
|
17022
18534
|
|
|
18535
|
+
/**
|
|
18536
|
+
* optional google.protobuf.Timestamp created_at = 8;
|
|
18537
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
18538
|
+
*/
|
|
18539
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.getCreatedAt = function() {
|
|
18540
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
18541
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 8));
|
|
18542
|
+
};
|
|
18543
|
+
|
|
18544
|
+
|
|
18545
|
+
/**
|
|
18546
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
18547
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
18548
|
+
*/
|
|
18549
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.setCreatedAt = function(value) {
|
|
18550
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
18551
|
+
};
|
|
18552
|
+
|
|
18553
|
+
|
|
18554
|
+
/**
|
|
18555
|
+
* Clears the message field making it undefined.
|
|
18556
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
18557
|
+
*/
|
|
18558
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.clearCreatedAt = function() {
|
|
18559
|
+
return this.setCreatedAt(undefined);
|
|
18560
|
+
};
|
|
18561
|
+
|
|
18562
|
+
|
|
18563
|
+
/**
|
|
18564
|
+
* Returns whether this field is set.
|
|
18565
|
+
* @return {boolean}
|
|
18566
|
+
*/
|
|
18567
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.hasCreatedAt = function() {
|
|
18568
|
+
return jspb.Message.getField(this, 8) != null;
|
|
18569
|
+
};
|
|
18570
|
+
|
|
18571
|
+
|
|
18572
|
+
/**
|
|
18573
|
+
* optional google.protobuf.Timestamp modified_at = 9;
|
|
18574
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
18575
|
+
*/
|
|
18576
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.getModifiedAt = function() {
|
|
18577
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
18578
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 9));
|
|
18579
|
+
};
|
|
18580
|
+
|
|
18581
|
+
|
|
18582
|
+
/**
|
|
18583
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
18584
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
18585
|
+
*/
|
|
18586
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.setModifiedAt = function(value) {
|
|
18587
|
+
return jspb.Message.setWrapperField(this, 9, value);
|
|
18588
|
+
};
|
|
18589
|
+
|
|
18590
|
+
|
|
18591
|
+
/**
|
|
18592
|
+
* Clears the message field making it undefined.
|
|
18593
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
18594
|
+
*/
|
|
18595
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.clearModifiedAt = function() {
|
|
18596
|
+
return this.setModifiedAt(undefined);
|
|
18597
|
+
};
|
|
18598
|
+
|
|
18599
|
+
|
|
18600
|
+
/**
|
|
18601
|
+
* Returns whether this field is set.
|
|
18602
|
+
* @return {boolean}
|
|
18603
|
+
*/
|
|
18604
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.hasModifiedAt = function() {
|
|
18605
|
+
return jspb.Message.getField(this, 9) != null;
|
|
18606
|
+
};
|
|
18607
|
+
|
|
18608
|
+
|
|
18609
|
+
/**
|
|
18610
|
+
* optional string created_by = 10;
|
|
18611
|
+
* @return {string}
|
|
18612
|
+
*/
|
|
18613
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.getCreatedBy = function() {
|
|
18614
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
18615
|
+
};
|
|
18616
|
+
|
|
18617
|
+
|
|
18618
|
+
/**
|
|
18619
|
+
* @param {string} value
|
|
18620
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
18621
|
+
*/
|
|
18622
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.setCreatedBy = function(value) {
|
|
18623
|
+
return jspb.Message.setProto3StringField(this, 10, value);
|
|
18624
|
+
};
|
|
18625
|
+
|
|
18626
|
+
|
|
18627
|
+
/**
|
|
18628
|
+
* optional string modified_by = 11;
|
|
18629
|
+
* @return {string}
|
|
18630
|
+
*/
|
|
18631
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.getModifiedBy = function() {
|
|
18632
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
|
|
18633
|
+
};
|
|
18634
|
+
|
|
18635
|
+
|
|
18636
|
+
/**
|
|
18637
|
+
* @param {string} value
|
|
18638
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult} returns this
|
|
18639
|
+
*/
|
|
18640
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentResponse.IntentResponseSearchResult.prototype.setModifiedBy = function(value) {
|
|
18641
|
+
return jspb.Message.setProto3StringField(this, 11, value);
|
|
18642
|
+
};
|
|
18643
|
+
|
|
18644
|
+
|
|
17023
18645
|
/**
|
|
17024
18646
|
* optional string parent = 1;
|
|
17025
18647
|
* @return {string}
|
|
@@ -17404,7 +19026,11 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
17404
19026
|
intentName: jspb.Message.getFieldWithDefault(msg, 3, ""),
|
|
17405
19027
|
intentDisplayName: jspb.Message.getFieldWithDefault(msg, 4, ""),
|
|
17406
19028
|
tagsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f,
|
|
17407
|
-
language: jspb.Message.getFieldWithDefault(msg, 6, "")
|
|
19029
|
+
language: jspb.Message.getFieldWithDefault(msg, 6, ""),
|
|
19030
|
+
createdAt: (f = msg.getCreatedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
19031
|
+
modifiedAt: (f = msg.getModifiedAt()) && google_protobuf_timestamp_pb.Timestamp.toObject(includeInstance, f),
|
|
19032
|
+
createdBy: jspb.Message.getFieldWithDefault(msg, 9, ""),
|
|
19033
|
+
modifiedBy: jspb.Message.getFieldWithDefault(msg, 10, "")
|
|
17408
19034
|
};
|
|
17409
19035
|
|
|
17410
19036
|
if (includeInstance) {
|
|
@@ -17465,6 +19091,24 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
17465
19091
|
var value = /** @type {string} */ (reader.readString());
|
|
17466
19092
|
msg.setLanguage(value);
|
|
17467
19093
|
break;
|
|
19094
|
+
case 7:
|
|
19095
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
19096
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
19097
|
+
msg.setCreatedAt(value);
|
|
19098
|
+
break;
|
|
19099
|
+
case 8:
|
|
19100
|
+
var value = new google_protobuf_timestamp_pb.Timestamp;
|
|
19101
|
+
reader.readMessage(value,google_protobuf_timestamp_pb.Timestamp.deserializeBinaryFromReader);
|
|
19102
|
+
msg.setModifiedAt(value);
|
|
19103
|
+
break;
|
|
19104
|
+
case 9:
|
|
19105
|
+
var value = /** @type {string} */ (reader.readString());
|
|
19106
|
+
msg.setCreatedBy(value);
|
|
19107
|
+
break;
|
|
19108
|
+
case 10:
|
|
19109
|
+
var value = /** @type {string} */ (reader.readString());
|
|
19110
|
+
msg.setModifiedBy(value);
|
|
19111
|
+
break;
|
|
17468
19112
|
default:
|
|
17469
19113
|
reader.skipField();
|
|
17470
19114
|
break;
|
|
@@ -17536,6 +19180,36 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
17536
19180
|
f
|
|
17537
19181
|
);
|
|
17538
19182
|
}
|
|
19183
|
+
f = message.getCreatedAt();
|
|
19184
|
+
if (f != null) {
|
|
19185
|
+
writer.writeMessage(
|
|
19186
|
+
7,
|
|
19187
|
+
f,
|
|
19188
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
19189
|
+
);
|
|
19190
|
+
}
|
|
19191
|
+
f = message.getModifiedAt();
|
|
19192
|
+
if (f != null) {
|
|
19193
|
+
writer.writeMessage(
|
|
19194
|
+
8,
|
|
19195
|
+
f,
|
|
19196
|
+
google_protobuf_timestamp_pb.Timestamp.serializeBinaryToWriter
|
|
19197
|
+
);
|
|
19198
|
+
}
|
|
19199
|
+
f = message.getCreatedBy();
|
|
19200
|
+
if (f.length > 0) {
|
|
19201
|
+
writer.writeString(
|
|
19202
|
+
9,
|
|
19203
|
+
f
|
|
19204
|
+
);
|
|
19205
|
+
}
|
|
19206
|
+
f = message.getModifiedBy();
|
|
19207
|
+
if (f.length > 0) {
|
|
19208
|
+
writer.writeString(
|
|
19209
|
+
10,
|
|
19210
|
+
f
|
|
19211
|
+
);
|
|
19212
|
+
}
|
|
17539
19213
|
};
|
|
17540
19214
|
|
|
17541
19215
|
|
|
@@ -17666,6 +19340,116 @@ proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchRe
|
|
|
17666
19340
|
};
|
|
17667
19341
|
|
|
17668
19342
|
|
|
19343
|
+
/**
|
|
19344
|
+
* optional google.protobuf.Timestamp created_at = 7;
|
|
19345
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
19346
|
+
*/
|
|
19347
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.getCreatedAt = function() {
|
|
19348
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
19349
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 7));
|
|
19350
|
+
};
|
|
19351
|
+
|
|
19352
|
+
|
|
19353
|
+
/**
|
|
19354
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
19355
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
19356
|
+
*/
|
|
19357
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.setCreatedAt = function(value) {
|
|
19358
|
+
return jspb.Message.setWrapperField(this, 7, value);
|
|
19359
|
+
};
|
|
19360
|
+
|
|
19361
|
+
|
|
19362
|
+
/**
|
|
19363
|
+
* Clears the message field making it undefined.
|
|
19364
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
19365
|
+
*/
|
|
19366
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.clearCreatedAt = function() {
|
|
19367
|
+
return this.setCreatedAt(undefined);
|
|
19368
|
+
};
|
|
19369
|
+
|
|
19370
|
+
|
|
19371
|
+
/**
|
|
19372
|
+
* Returns whether this field is set.
|
|
19373
|
+
* @return {boolean}
|
|
19374
|
+
*/
|
|
19375
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.hasCreatedAt = function() {
|
|
19376
|
+
return jspb.Message.getField(this, 7) != null;
|
|
19377
|
+
};
|
|
19378
|
+
|
|
19379
|
+
|
|
19380
|
+
/**
|
|
19381
|
+
* optional google.protobuf.Timestamp modified_at = 8;
|
|
19382
|
+
* @return {?proto.google.protobuf.Timestamp}
|
|
19383
|
+
*/
|
|
19384
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.getModifiedAt = function() {
|
|
19385
|
+
return /** @type{?proto.google.protobuf.Timestamp} */ (
|
|
19386
|
+
jspb.Message.getWrapperField(this, google_protobuf_timestamp_pb.Timestamp, 8));
|
|
19387
|
+
};
|
|
19388
|
+
|
|
19389
|
+
|
|
19390
|
+
/**
|
|
19391
|
+
* @param {?proto.google.protobuf.Timestamp|undefined} value
|
|
19392
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
19393
|
+
*/
|
|
19394
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.setModifiedAt = function(value) {
|
|
19395
|
+
return jspb.Message.setWrapperField(this, 8, value);
|
|
19396
|
+
};
|
|
19397
|
+
|
|
19398
|
+
|
|
19399
|
+
/**
|
|
19400
|
+
* Clears the message field making it undefined.
|
|
19401
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
19402
|
+
*/
|
|
19403
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.clearModifiedAt = function() {
|
|
19404
|
+
return this.setModifiedAt(undefined);
|
|
19405
|
+
};
|
|
19406
|
+
|
|
19407
|
+
|
|
19408
|
+
/**
|
|
19409
|
+
* Returns whether this field is set.
|
|
19410
|
+
* @return {boolean}
|
|
19411
|
+
*/
|
|
19412
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.hasModifiedAt = function() {
|
|
19413
|
+
return jspb.Message.getField(this, 8) != null;
|
|
19414
|
+
};
|
|
19415
|
+
|
|
19416
|
+
|
|
19417
|
+
/**
|
|
19418
|
+
* optional string created_by = 9;
|
|
19419
|
+
* @return {string}
|
|
19420
|
+
*/
|
|
19421
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.getCreatedBy = function() {
|
|
19422
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
|
|
19423
|
+
};
|
|
19424
|
+
|
|
19425
|
+
|
|
19426
|
+
/**
|
|
19427
|
+
* @param {string} value
|
|
19428
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
19429
|
+
*/
|
|
19430
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.setCreatedBy = function(value) {
|
|
19431
|
+
return jspb.Message.setProto3StringField(this, 9, value);
|
|
19432
|
+
};
|
|
19433
|
+
|
|
19434
|
+
|
|
19435
|
+
/**
|
|
19436
|
+
* optional string modified_by = 10;
|
|
19437
|
+
* @return {string}
|
|
19438
|
+
*/
|
|
19439
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.getModifiedBy = function() {
|
|
19440
|
+
return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 10, ""));
|
|
19441
|
+
};
|
|
19442
|
+
|
|
19443
|
+
|
|
19444
|
+
/**
|
|
19445
|
+
* @param {string} value
|
|
19446
|
+
* @return {!proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult} returns this
|
|
19447
|
+
*/
|
|
19448
|
+
proto.ondewo.nlu.FullTextSearchResponseIntentParameters.IntentParametersSearchResult.prototype.setModifiedBy = function(value) {
|
|
19449
|
+
return jspb.Message.setProto3StringField(this, 10, value);
|
|
19450
|
+
};
|
|
19451
|
+
|
|
19452
|
+
|
|
17669
19453
|
/**
|
|
17670
19454
|
* optional string parent = 1;
|
|
17671
19455
|
* @return {string}
|