Skip to content

Commit

Permalink
Comment removal in prep for newer commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
timheuer committed Dec 30, 2016
1 parent 5b088d5 commit 43d7f14
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions Alexa.NET/Response/PlainTextOutputSpeech.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,13 @@ namespace Alexa.NET.Response
{
public class PlainTextOutputSpeech : IOutputSpeech
{
/// <summary>
/// A string containing the type of output speech to render. Valid types are:
/// - "PlainText" - Indicates that the output speech is defined as plain text.
/// - "SSML" - Indicates that the output speech is text marked up with SSML.
/// </summary>
[JsonProperty("type")]
[JsonRequired]
public string Type
{
get { return "PlainText"; }
}

/// <summary>
/// A string containing the speech to render to the user. Use this when type is "PlainText"
/// </summary>
[JsonRequired]
[JsonProperty("text")]
public string Text { get; set; }
Expand Down

0 comments on commit 43d7f14

Please sign in to comment.