This repository was archived by the owner on Dec 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathFBUserMessage.cs
More file actions
129 lines (111 loc) · 3.37 KB
/
FBUserMessage.cs
File metadata and controls
129 lines (111 loc) · 3.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// Copyright 2017 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
using System;
using System.Runtime.Serialization;
namespace Chatbase
{
public struct SenderID { public string id; }
public struct RecipientID { public string id; }
public struct FBMessageContent {
public string mid;
public string text;
}
public struct FBChatbaseFields {
public string intent;
public string version;
public bool not_handled;
public bool feedback;
}
[DataContract]
public class FBUserMessage
{
public string api_key;
public string version;
public string intent;
public bool not_handled;
public bool feedback;
[DataMember]
public double timestamp;
[DataMember]
public SenderID sender;
[DataMember]
public RecipientID recipient;
[DataMember]
public FBMessageContent message;
[DataMember]
private FBChatbaseFields chatbase_fields;
public bool RequiredFieldsSet()
{
return !(
String.IsNullOrWhiteSpace(sender.id)
|| String.IsNullOrWhiteSpace(recipient.id)
|| String.IsNullOrWhiteSpace(message.mid)
|| String.IsNullOrWhiteSpace(api_key)
);
}
public FBUserMessage SetSenderID(string id)
{
sender.id = id;
return this;
}
public FBUserMessage SetRecipientID(string id)
{
recipient.id = id;
return this;
}
public FBUserMessage SetMessageID(string messageID)
{
message.mid = messageID;
return this;
}
public FBUserMessage SetMessageContent(string messageContent)
{
message.text = messageContent;
return this;
}
public FBUserMessage()
{
timestamp = Message.CurrentUnixMilliseconds();
feedback = false;
not_handled = false;
sender = new SenderID();
recipient = new RecipientID();
message = new FBMessageContent();
}
public FBUserMessage(string key)
{
timestamp = Message.CurrentUnixMilliseconds();
feedback = false;
not_handled = false;
sender = new SenderID();
recipient = new RecipientID();
message = new FBMessageContent();
api_key = key;
}
public FBUserMessage SetChatbaseFields() {
chatbase_fields = new FBChatbaseFields
{
intent = intent,
version = version,
not_handled = not_handled,
feedback = feedback
};
return this;
}
public FBChatbaseFields GetChatbaseFields()
{
return chatbase_fields;
}
}
}