diff --git a/src/Twilio/TwiML/TwiML.cs b/src/Twilio/TwiML/TwiML.cs
index ec625992d..a7e59395c 100644
--- a/src/Twilio/TwiML/TwiML.cs
+++ b/src/Twilio/TwiML/TwiML.cs
@@ -16,15 +16,15 @@ public class TwiML
///
/// Tag name
///
- private string TagName { get; }
+ private string TagName { get; set; }
///
/// Children elements
///
- private List Children { get; }
+ private List Children { get; set; }
///
/// Additional tag attributes to set on the generated xml
///
- private List> Options { get; }
+ private List> Options { get; set; }
///
/// Attribute names to be transformed on the generated xml
///