You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,9 @@
1
1
Change Log
2
2
==========
3
+
## Version 2.2.1
4
+
_2018-04-12_
5
+
* Fixed: Serialization/Deserialization of generic object in the `assistant` service([361](https://github.com/watson-developer-cloud/unity-sdk/issues/361), [363](https://github.com/watson-developer-cloud/unity-sdk/pull/363)).
6
+
3
7
## Version 2.2.0
4
8
_2018-04-09_
5
9
* New: Updated Visual Recognition with Core ML support ([4182](https://zenhub.innovate.ibm.com/app/workspace/o/watson/developer-experience/issues/4182), [357](https://github.com/watson-developer-cloud/unity-sdk/pull/357)).
@@ -108,24 +109,47 @@ public Assistant(Credentials credentials)
108
109
/// <param name="workspaceId">Unique identifier of the workspace.</param>
109
110
/// <param name="request">The message to be sent. This includes the user's input, along with optional intents, entities, and context from the last response. (optional)</param>
110
111
/// <param name="nodesVisitedDetails">Whether to include additional diagnostic information about the dialog nodes that were visited during processing of the message. (optional, default to false)</param>
/// <param name="customData">A Dictionary<string, object> of data that will be passed to the callback. The raw json output from the REST call will be passed in this object as the value of the 'json' key.</string></param>
Copy file name to clipboardExpand all lines: Scripts/Services/Assistant/v1/Model/MessageRequest.cs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ public class MessageRequest
31
31
/// </summary>
32
32
/// <value>An input object that includes the input text.</value>
33
33
[fsProperty("input")]
34
-
publicDictionary<string,object>Input{get;set;}
34
+
publicobjectInput{get;set;}
35
35
/// <summary>
36
36
/// Whether to return more than one intent. Set to `true` to return all matching intents.
37
37
/// </summary>
@@ -43,7 +43,7 @@ public class MessageRequest
43
43
/// </summary>
44
44
/// <value>State information for the conversation. Continue a conversation by including the context object from the previous response.</value>
45
45
[fsProperty("context")]
46
-
publicDictionary<string,object>Context{get;set;}
46
+
publicobjectContext{get;set;}
47
47
/// <summary>
48
48
/// Entities to use when evaluating the message. Include entities from the previous response to continue using those entities rather than detecting entities in the new input.
0 commit comments