diff --git a/Alexa.NET/Response/PlainTextOutputSpeech.cs b/Alexa.NET/Response/PlainTextOutputSpeech.cs
index 8021dcb..ffc747b 100644
--- a/Alexa.NET/Response/PlainTextOutputSpeech.cs
+++ b/Alexa.NET/Response/PlainTextOutputSpeech.cs
@@ -4,11 +4,6 @@ namespace Alexa.NET.Response
{
public class PlainTextOutputSpeech : IOutputSpeech
{
- ///
- /// 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.
- ///
[JsonProperty("type")]
[JsonRequired]
public string Type
@@ -16,9 +11,6 @@ public string Type
get { return "PlainText"; }
}
- ///
- /// A string containing the speech to render to the user. Use this when type is "PlainText"
- ///
[JsonRequired]
[JsonProperty("text")]
public string Text { get; set; }