chatgraph 0.4.2__py3-none-any.whl → 0.5.1__py3-none-any.whl
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.
Potentially problematic release.
This version of chatgraph might be problematic. Click here for more details.
- chatgraph/__init__.py +5 -3
- chatgraph/bot/chatbot_model.py +70 -76
- chatgraph/gRPC/gRPCCall.py +72 -145
- chatgraph/messages/message_consumer.py +74 -139
- chatgraph/pb/router.proto +127 -0
- chatgraph/pb/router_pb2.py +77 -0
- chatgraph/pb/router_pb2_grpc.py +669 -0
- chatgraph/types/background_task.py +23 -0
- chatgraph/types/message_types.py +79 -76
- chatgraph/types/request_types.py +176 -251
- {chatgraph-0.4.2.dist-info → chatgraph-0.5.1.dist-info}/METADATA +1 -1
- chatgraph-0.5.1.dist-info/RECORD +22 -0
- chatgraph/pb/userstate.proto +0 -41
- chatgraph/pb/userstate_pb2.py +0 -47
- chatgraph/pb/userstate_pb2_grpc.py +0 -269
- chatgraph/pb/voll.proto +0 -90
- chatgraph/pb/voll_pb2.py +0 -63
- chatgraph/pb/voll_pb2_grpc.py +0 -470
- chatgraph-0.4.2.dist-info/RECORD +0 -24
- {chatgraph-0.4.2.dist-info → chatgraph-0.5.1.dist-info}/LICENSE +0 -0
- {chatgraph-0.4.2.dist-info → chatgraph-0.5.1.dist-info}/WHEEL +0 -0
- {chatgraph-0.4.2.dist-info → chatgraph-0.5.1.dist-info}/entry_points.txt +0 -0
|
@@ -1,269 +0,0 @@
|
|
|
1
|
-
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
|
2
|
-
"""Client and server classes corresponding to protobuf-defined services."""
|
|
3
|
-
import grpc
|
|
4
|
-
import warnings
|
|
5
|
-
|
|
6
|
-
import chatgraph.pb.userstate_pb2 as userstate__pb2
|
|
7
|
-
|
|
8
|
-
GRPC_GENERATED_VERSION = '1.67.0'
|
|
9
|
-
GRPC_VERSION = grpc.__version__
|
|
10
|
-
_version_not_supported = False
|
|
11
|
-
|
|
12
|
-
try:
|
|
13
|
-
from grpc._utilities import first_version_is_lower
|
|
14
|
-
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
|
15
|
-
except ImportError:
|
|
16
|
-
_version_not_supported = True
|
|
17
|
-
|
|
18
|
-
if _version_not_supported:
|
|
19
|
-
raise RuntimeError(
|
|
20
|
-
f'The grpc package installed is at version {GRPC_VERSION},'
|
|
21
|
-
+ f' but the generated code in userstate_pb2_grpc.py depends on'
|
|
22
|
-
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
|
23
|
-
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
|
24
|
-
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
|
25
|
-
)
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
class UserStateServiceStub(object):
|
|
29
|
-
"""Missing associated documentation comment in .proto file."""
|
|
30
|
-
|
|
31
|
-
def __init__(self, channel):
|
|
32
|
-
"""Constructor.
|
|
33
|
-
|
|
34
|
-
Args:
|
|
35
|
-
channel: A grpc.Channel.
|
|
36
|
-
"""
|
|
37
|
-
self.SelectUserState = channel.unary_unary(
|
|
38
|
-
'/userstate.UserStateService/SelectUserState',
|
|
39
|
-
request_serializer=userstate__pb2.UserStateId.SerializeToString,
|
|
40
|
-
response_deserializer=userstate__pb2.UserState.FromString,
|
|
41
|
-
_registered_method=True)
|
|
42
|
-
self.InsertUserState = channel.unary_unary(
|
|
43
|
-
'/userstate.UserStateService/InsertUserState',
|
|
44
|
-
request_serializer=userstate__pb2.UserState.SerializeToString,
|
|
45
|
-
response_deserializer=userstate__pb2.RequestStatus.FromString,
|
|
46
|
-
_registered_method=True)
|
|
47
|
-
self.UpdateUserState = channel.unary_unary(
|
|
48
|
-
'/userstate.UserStateService/UpdateUserState',
|
|
49
|
-
request_serializer=userstate__pb2.UserState.SerializeToString,
|
|
50
|
-
response_deserializer=userstate__pb2.RequestStatus.FromString,
|
|
51
|
-
_registered_method=True)
|
|
52
|
-
self.DeleteUserState = channel.unary_unary(
|
|
53
|
-
'/userstate.UserStateService/DeleteUserState',
|
|
54
|
-
request_serializer=userstate__pb2.UserStateId.SerializeToString,
|
|
55
|
-
response_deserializer=userstate__pb2.RequestStatus.FromString,
|
|
56
|
-
_registered_method=True)
|
|
57
|
-
self.GetAllUserStates = channel.unary_unary(
|
|
58
|
-
'/userstate.UserStateService/GetAllUserStates',
|
|
59
|
-
request_serializer=userstate__pb2.Void.SerializeToString,
|
|
60
|
-
response_deserializer=userstate__pb2.UserStatesList.FromString,
|
|
61
|
-
_registered_method=True)
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
class UserStateServiceServicer(object):
|
|
65
|
-
"""Missing associated documentation comment in .proto file."""
|
|
66
|
-
|
|
67
|
-
def SelectUserState(self, request, context):
|
|
68
|
-
"""Missing associated documentation comment in .proto file."""
|
|
69
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
70
|
-
context.set_details('Method not implemented!')
|
|
71
|
-
raise NotImplementedError('Method not implemented!')
|
|
72
|
-
|
|
73
|
-
def InsertUserState(self, request, context):
|
|
74
|
-
"""Missing associated documentation comment in .proto file."""
|
|
75
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
76
|
-
context.set_details('Method not implemented!')
|
|
77
|
-
raise NotImplementedError('Method not implemented!')
|
|
78
|
-
|
|
79
|
-
def UpdateUserState(self, request, context):
|
|
80
|
-
"""Missing associated documentation comment in .proto file."""
|
|
81
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
82
|
-
context.set_details('Method not implemented!')
|
|
83
|
-
raise NotImplementedError('Method not implemented!')
|
|
84
|
-
|
|
85
|
-
def DeleteUserState(self, request, context):
|
|
86
|
-
"""Missing associated documentation comment in .proto file."""
|
|
87
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
88
|
-
context.set_details('Method not implemented!')
|
|
89
|
-
raise NotImplementedError('Method not implemented!')
|
|
90
|
-
|
|
91
|
-
def GetAllUserStates(self, request, context):
|
|
92
|
-
"""Missing associated documentation comment in .proto file."""
|
|
93
|
-
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
|
94
|
-
context.set_details('Method not implemented!')
|
|
95
|
-
raise NotImplementedError('Method not implemented!')
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
def add_UserStateServiceServicer_to_server(servicer, server):
|
|
99
|
-
rpc_method_handlers = {
|
|
100
|
-
'SelectUserState': grpc.unary_unary_rpc_method_handler(
|
|
101
|
-
servicer.SelectUserState,
|
|
102
|
-
request_deserializer=userstate__pb2.UserStateId.FromString,
|
|
103
|
-
response_serializer=userstate__pb2.UserState.SerializeToString,
|
|
104
|
-
),
|
|
105
|
-
'InsertUserState': grpc.unary_unary_rpc_method_handler(
|
|
106
|
-
servicer.InsertUserState,
|
|
107
|
-
request_deserializer=userstate__pb2.UserState.FromString,
|
|
108
|
-
response_serializer=userstate__pb2.RequestStatus.SerializeToString,
|
|
109
|
-
),
|
|
110
|
-
'UpdateUserState': grpc.unary_unary_rpc_method_handler(
|
|
111
|
-
servicer.UpdateUserState,
|
|
112
|
-
request_deserializer=userstate__pb2.UserState.FromString,
|
|
113
|
-
response_serializer=userstate__pb2.RequestStatus.SerializeToString,
|
|
114
|
-
),
|
|
115
|
-
'DeleteUserState': grpc.unary_unary_rpc_method_handler(
|
|
116
|
-
servicer.DeleteUserState,
|
|
117
|
-
request_deserializer=userstate__pb2.UserStateId.FromString,
|
|
118
|
-
response_serializer=userstate__pb2.RequestStatus.SerializeToString,
|
|
119
|
-
),
|
|
120
|
-
'GetAllUserStates': grpc.unary_unary_rpc_method_handler(
|
|
121
|
-
servicer.GetAllUserStates,
|
|
122
|
-
request_deserializer=userstate__pb2.Void.FromString,
|
|
123
|
-
response_serializer=userstate__pb2.UserStatesList.SerializeToString,
|
|
124
|
-
),
|
|
125
|
-
}
|
|
126
|
-
generic_handler = grpc.method_handlers_generic_handler(
|
|
127
|
-
'userstate.UserStateService', rpc_method_handlers)
|
|
128
|
-
server.add_generic_rpc_handlers((generic_handler,))
|
|
129
|
-
server.add_registered_method_handlers('userstate.UserStateService', rpc_method_handlers)
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
# This class is part of an EXPERIMENTAL API.
|
|
133
|
-
class UserStateService(object):
|
|
134
|
-
"""Missing associated documentation comment in .proto file."""
|
|
135
|
-
|
|
136
|
-
@staticmethod
|
|
137
|
-
def SelectUserState(request,
|
|
138
|
-
target,
|
|
139
|
-
options=(),
|
|
140
|
-
channel_credentials=None,
|
|
141
|
-
call_credentials=None,
|
|
142
|
-
insecure=False,
|
|
143
|
-
compression=None,
|
|
144
|
-
wait_for_ready=None,
|
|
145
|
-
timeout=None,
|
|
146
|
-
metadata=None):
|
|
147
|
-
return grpc.experimental.unary_unary(
|
|
148
|
-
request,
|
|
149
|
-
target,
|
|
150
|
-
'/userstate.UserStateService/SelectUserState',
|
|
151
|
-
userstate__pb2.UserStateId.SerializeToString,
|
|
152
|
-
userstate__pb2.UserState.FromString,
|
|
153
|
-
options,
|
|
154
|
-
channel_credentials,
|
|
155
|
-
insecure,
|
|
156
|
-
call_credentials,
|
|
157
|
-
compression,
|
|
158
|
-
wait_for_ready,
|
|
159
|
-
timeout,
|
|
160
|
-
metadata,
|
|
161
|
-
_registered_method=True)
|
|
162
|
-
|
|
163
|
-
@staticmethod
|
|
164
|
-
def InsertUserState(request,
|
|
165
|
-
target,
|
|
166
|
-
options=(),
|
|
167
|
-
channel_credentials=None,
|
|
168
|
-
call_credentials=None,
|
|
169
|
-
insecure=False,
|
|
170
|
-
compression=None,
|
|
171
|
-
wait_for_ready=None,
|
|
172
|
-
timeout=None,
|
|
173
|
-
metadata=None):
|
|
174
|
-
return grpc.experimental.unary_unary(
|
|
175
|
-
request,
|
|
176
|
-
target,
|
|
177
|
-
'/userstate.UserStateService/InsertUserState',
|
|
178
|
-
userstate__pb2.UserState.SerializeToString,
|
|
179
|
-
userstate__pb2.RequestStatus.FromString,
|
|
180
|
-
options,
|
|
181
|
-
channel_credentials,
|
|
182
|
-
insecure,
|
|
183
|
-
call_credentials,
|
|
184
|
-
compression,
|
|
185
|
-
wait_for_ready,
|
|
186
|
-
timeout,
|
|
187
|
-
metadata,
|
|
188
|
-
_registered_method=True)
|
|
189
|
-
|
|
190
|
-
@staticmethod
|
|
191
|
-
def UpdateUserState(request,
|
|
192
|
-
target,
|
|
193
|
-
options=(),
|
|
194
|
-
channel_credentials=None,
|
|
195
|
-
call_credentials=None,
|
|
196
|
-
insecure=False,
|
|
197
|
-
compression=None,
|
|
198
|
-
wait_for_ready=None,
|
|
199
|
-
timeout=None,
|
|
200
|
-
metadata=None):
|
|
201
|
-
return grpc.experimental.unary_unary(
|
|
202
|
-
request,
|
|
203
|
-
target,
|
|
204
|
-
'/userstate.UserStateService/UpdateUserState',
|
|
205
|
-
userstate__pb2.UserState.SerializeToString,
|
|
206
|
-
userstate__pb2.RequestStatus.FromString,
|
|
207
|
-
options,
|
|
208
|
-
channel_credentials,
|
|
209
|
-
insecure,
|
|
210
|
-
call_credentials,
|
|
211
|
-
compression,
|
|
212
|
-
wait_for_ready,
|
|
213
|
-
timeout,
|
|
214
|
-
metadata,
|
|
215
|
-
_registered_method=True)
|
|
216
|
-
|
|
217
|
-
@staticmethod
|
|
218
|
-
def DeleteUserState(request,
|
|
219
|
-
target,
|
|
220
|
-
options=(),
|
|
221
|
-
channel_credentials=None,
|
|
222
|
-
call_credentials=None,
|
|
223
|
-
insecure=False,
|
|
224
|
-
compression=None,
|
|
225
|
-
wait_for_ready=None,
|
|
226
|
-
timeout=None,
|
|
227
|
-
metadata=None):
|
|
228
|
-
return grpc.experimental.unary_unary(
|
|
229
|
-
request,
|
|
230
|
-
target,
|
|
231
|
-
'/userstate.UserStateService/DeleteUserState',
|
|
232
|
-
userstate__pb2.UserStateId.SerializeToString,
|
|
233
|
-
userstate__pb2.RequestStatus.FromString,
|
|
234
|
-
options,
|
|
235
|
-
channel_credentials,
|
|
236
|
-
insecure,
|
|
237
|
-
call_credentials,
|
|
238
|
-
compression,
|
|
239
|
-
wait_for_ready,
|
|
240
|
-
timeout,
|
|
241
|
-
metadata,
|
|
242
|
-
_registered_method=True)
|
|
243
|
-
|
|
244
|
-
@staticmethod
|
|
245
|
-
def GetAllUserStates(request,
|
|
246
|
-
target,
|
|
247
|
-
options=(),
|
|
248
|
-
channel_credentials=None,
|
|
249
|
-
call_credentials=None,
|
|
250
|
-
insecure=False,
|
|
251
|
-
compression=None,
|
|
252
|
-
wait_for_ready=None,
|
|
253
|
-
timeout=None,
|
|
254
|
-
metadata=None):
|
|
255
|
-
return grpc.experimental.unary_unary(
|
|
256
|
-
request,
|
|
257
|
-
target,
|
|
258
|
-
'/userstate.UserStateService/GetAllUserStates',
|
|
259
|
-
userstate__pb2.Void.SerializeToString,
|
|
260
|
-
userstate__pb2.UserStatesList.FromString,
|
|
261
|
-
options,
|
|
262
|
-
channel_credentials,
|
|
263
|
-
insecure,
|
|
264
|
-
call_credentials,
|
|
265
|
-
compression,
|
|
266
|
-
wait_for_ready,
|
|
267
|
-
timeout,
|
|
268
|
-
metadata,
|
|
269
|
-
_registered_method=True)
|
chatgraph/pb/voll.proto
DELETED
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
package messagevoll;
|
|
4
|
-
|
|
5
|
-
option go_package = "./pb/messagevoll";
|
|
6
|
-
|
|
7
|
-
service MessageService {
|
|
8
|
-
rpc SendButton(MessageRequest) returns (MessageResponse);
|
|
9
|
-
rpc SendList(MessageRequest) returns (MessageResponse);
|
|
10
|
-
rpc SendText(MessageRequest) returns (MessageResponse);
|
|
11
|
-
rpc TransferToHuman(MessageRequest) returns (MessageResponse);
|
|
12
|
-
rpc EndChat(MessageRequest) returns (MessageResponse);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
service ActionsService {
|
|
16
|
-
rpc GetCampaignID(CampaignName) returns (CampaignDetails);
|
|
17
|
-
rpc GetCampaignsList(Void) returns (CampaignsList);
|
|
18
|
-
|
|
19
|
-
rpc GetTabulationID(TabulationName) returns (TabulationDetails);
|
|
20
|
-
rpc GetTabulationsList(Void) returns (TabulationsList);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
message Void {
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
message MessageRequest {
|
|
27
|
-
string hook_id = 1;
|
|
28
|
-
string enterprise_id = 2;
|
|
29
|
-
string unique_customer_id = 3;
|
|
30
|
-
string voll_id = 4;
|
|
31
|
-
string message_title = 5;
|
|
32
|
-
string message_text = 6;
|
|
33
|
-
string platform = 7;
|
|
34
|
-
string message_caption = 8;
|
|
35
|
-
string button_title = 9;
|
|
36
|
-
string campaign_name = 10;
|
|
37
|
-
string tabulation_name = 11;
|
|
38
|
-
repeated QuickOption options = 12;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
message MessageResponse {
|
|
42
|
-
bool status = 1;
|
|
43
|
-
string message = 2;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
message QuickOption {
|
|
47
|
-
string title = 1;
|
|
48
|
-
string description = 2;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
message CampaignName {
|
|
52
|
-
string campaign_name = 1;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
message TabulationName {
|
|
56
|
-
string tabulation_name = 1;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
message CampaignDetails{
|
|
60
|
-
string campaign_name = 1;
|
|
61
|
-
string campaign_id = 2;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
message CampaignElement{
|
|
65
|
-
string campaign_id = 1;
|
|
66
|
-
string campaign_name = 2;
|
|
67
|
-
string last_update = 3;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
message CampaignsList{
|
|
71
|
-
repeated CampaignElement campaigns = 1;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
message TabulationDetails{
|
|
75
|
-
string tabulation_name = 1;
|
|
76
|
-
string tabulation_id = 2;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
message TabulationElement{
|
|
80
|
-
string tabulation_id = 1;
|
|
81
|
-
string tabulation_name = 2;
|
|
82
|
-
string tabulation_type = 3;
|
|
83
|
-
string group_name = 4;
|
|
84
|
-
string customer_service_survey_id = 5;
|
|
85
|
-
string last_update = 6;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
message TabulationsList{
|
|
89
|
-
repeated TabulationElement tabulations = 1;
|
|
90
|
-
}
|
chatgraph/pb/voll_pb2.py
DELETED
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
-
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
-
# source: voll.proto
|
|
5
|
-
# Protobuf Python Version: 5.27.2
|
|
6
|
-
"""Generated protocol buffer code."""
|
|
7
|
-
from google.protobuf import descriptor as _descriptor
|
|
8
|
-
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
-
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
-
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
-
from google.protobuf.internal import builder as _builder
|
|
12
|
-
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
-
_runtime_version.Domain.PUBLIC,
|
|
14
|
-
5,
|
|
15
|
-
27,
|
|
16
|
-
2,
|
|
17
|
-
'',
|
|
18
|
-
'voll.proto'
|
|
19
|
-
)
|
|
20
|
-
# @@protoc_insertion_point(imports)
|
|
21
|
-
|
|
22
|
-
_sym_db = _symbol_database.Default()
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\nvoll.proto\x12\x0bmessagevoll\"\x06\n\x04Void\"\xae\x02\n\x0eMessageRequest\x12\x0f\n\x07hook_id\x18\x01 \x01(\t\x12\x15\n\renterprise_id\x18\x02 \x01(\t\x12\x1a\n\x12unique_customer_id\x18\x03 \x01(\t\x12\x0f\n\x07voll_id\x18\x04 \x01(\t\x12\x15\n\rmessage_title\x18\x05 \x01(\t\x12\x14\n\x0cmessage_text\x18\x06 \x01(\t\x12\x10\n\x08platform\x18\x07 \x01(\t\x12\x17\n\x0fmessage_caption\x18\x08 \x01(\t\x12\x14\n\x0c\x62utton_title\x18\t \x01(\t\x12\x15\n\rcampaign_name\x18\n \x01(\t\x12\x17\n\x0ftabulation_name\x18\x0b \x01(\t\x12)\n\x07options\x18\x0c \x03(\x0b\x32\x18.messagevoll.QuickOption\"2\n\x0fMessageResponse\x12\x0e\n\x06status\x18\x01 \x01(\x08\x12\x0f\n\x07message\x18\x02 \x01(\t\"1\n\x0bQuickOption\x12\r\n\x05title\x18\x01 \x01(\t\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\"%\n\x0c\x43\x61mpaignName\x12\x15\n\rcampaign_name\x18\x01 \x01(\t\")\n\x0eTabulationName\x12\x17\n\x0ftabulation_name\x18\x01 \x01(\t\"=\n\x0f\x43\x61mpaignDetails\x12\x15\n\rcampaign_name\x18\x01 \x01(\t\x12\x13\n\x0b\x63\x61mpaign_id\x18\x02 \x01(\t\"R\n\x0f\x43\x61mpaignElement\x12\x13\n\x0b\x63\x61mpaign_id\x18\x01 \x01(\t\x12\x15\n\rcampaign_name\x18\x02 \x01(\t\x12\x13\n\x0blast_update\x18\x03 \x01(\t\"@\n\rCampaignsList\x12/\n\tcampaigns\x18\x01 \x03(\x0b\x32\x1c.messagevoll.CampaignElement\"C\n\x11TabulationDetails\x12\x17\n\x0ftabulation_name\x18\x01 \x01(\t\x12\x15\n\rtabulation_id\x18\x02 \x01(\t\"\xa9\x01\n\x11TabulationElement\x12\x15\n\rtabulation_id\x18\x01 \x01(\t\x12\x17\n\x0ftabulation_name\x18\x02 \x01(\t\x12\x17\n\x0ftabulation_type\x18\x03 \x01(\t\x12\x12\n\ngroup_name\x18\x04 \x01(\t\x12\"\n\x1a\x63ustomer_service_survey_id\x18\x05 \x01(\t\x12\x13\n\x0blast_update\x18\x06 \x01(\t\"F\n\x0fTabulationsList\x12\x33\n\x0btabulations\x18\x01 \x03(\x0b\x32\x1e.messagevoll.TabulationElement2\xfb\x02\n\x0eMessageService\x12G\n\nSendButton\x12\x1b.messagevoll.MessageRequest\x1a\x1c.messagevoll.MessageResponse\x12\x45\n\x08SendList\x12\x1b.messagevoll.MessageRequest\x1a\x1c.messagevoll.MessageResponse\x12\x45\n\x08SendText\x12\x1b.messagevoll.MessageRequest\x1a\x1c.messagevoll.MessageResponse\x12L\n\x0fTransferToHuman\x12\x1b.messagevoll.MessageRequest\x1a\x1c.messagevoll.MessageResponse\x12\x44\n\x07\x45ndChat\x12\x1b.messagevoll.MessageRequest\x1a\x1c.messagevoll.MessageResponse2\xb4\x02\n\x0e\x41\x63tionsService\x12H\n\rGetCampaignID\x12\x19.messagevoll.CampaignName\x1a\x1c.messagevoll.CampaignDetails\x12\x41\n\x10GetCampaignsList\x12\x11.messagevoll.Void\x1a\x1a.messagevoll.CampaignsList\x12N\n\x0fGetTabulationID\x12\x1b.messagevoll.TabulationName\x1a\x1e.messagevoll.TabulationDetails\x12\x45\n\x12GetTabulationsList\x12\x11.messagevoll.Void\x1a\x1c.messagevoll.TabulationsListB\x12Z\x10./pb/messagevollb\x06proto3')
|
|
28
|
-
|
|
29
|
-
_globals = globals()
|
|
30
|
-
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
-
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'voll_pb2', _globals)
|
|
32
|
-
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
-
_globals['DESCRIPTOR']._loaded_options = None
|
|
34
|
-
_globals['DESCRIPTOR']._serialized_options = b'Z\020./pb/messagevoll'
|
|
35
|
-
_globals['_VOID']._serialized_start=27
|
|
36
|
-
_globals['_VOID']._serialized_end=33
|
|
37
|
-
_globals['_MESSAGEREQUEST']._serialized_start=36
|
|
38
|
-
_globals['_MESSAGEREQUEST']._serialized_end=338
|
|
39
|
-
_globals['_MESSAGERESPONSE']._serialized_start=340
|
|
40
|
-
_globals['_MESSAGERESPONSE']._serialized_end=390
|
|
41
|
-
_globals['_QUICKOPTION']._serialized_start=392
|
|
42
|
-
_globals['_QUICKOPTION']._serialized_end=441
|
|
43
|
-
_globals['_CAMPAIGNNAME']._serialized_start=443
|
|
44
|
-
_globals['_CAMPAIGNNAME']._serialized_end=480
|
|
45
|
-
_globals['_TABULATIONNAME']._serialized_start=482
|
|
46
|
-
_globals['_TABULATIONNAME']._serialized_end=523
|
|
47
|
-
_globals['_CAMPAIGNDETAILS']._serialized_start=525
|
|
48
|
-
_globals['_CAMPAIGNDETAILS']._serialized_end=586
|
|
49
|
-
_globals['_CAMPAIGNELEMENT']._serialized_start=588
|
|
50
|
-
_globals['_CAMPAIGNELEMENT']._serialized_end=670
|
|
51
|
-
_globals['_CAMPAIGNSLIST']._serialized_start=672
|
|
52
|
-
_globals['_CAMPAIGNSLIST']._serialized_end=736
|
|
53
|
-
_globals['_TABULATIONDETAILS']._serialized_start=738
|
|
54
|
-
_globals['_TABULATIONDETAILS']._serialized_end=805
|
|
55
|
-
_globals['_TABULATIONELEMENT']._serialized_start=808
|
|
56
|
-
_globals['_TABULATIONELEMENT']._serialized_end=977
|
|
57
|
-
_globals['_TABULATIONSLIST']._serialized_start=979
|
|
58
|
-
_globals['_TABULATIONSLIST']._serialized_end=1049
|
|
59
|
-
_globals['_MESSAGESERVICE']._serialized_start=1052
|
|
60
|
-
_globals['_MESSAGESERVICE']._serialized_end=1431
|
|
61
|
-
_globals['_ACTIONSSERVICE']._serialized_start=1434
|
|
62
|
-
_globals['_ACTIONSSERVICE']._serialized_end=1742
|
|
63
|
-
# @@protoc_insertion_point(module_scope)
|