public PlayReadyAnalogVideoOPIdHolder(JToken node) : base(node)
 {
     if (node["type"] != null)
     {
         this._Type = (PlayReadyAnalogVideoOPId)StringEnum.Parse(typeof(PlayReadyAnalogVideoOPId), node["type"].Value <string>());
     }
 }
 public PlayReadyAnalogVideoOPIdHolder(XmlElement node) : base(node)
 {
     foreach (XmlElement propertyNode in node.ChildNodes)
     {
         switch (propertyNode.Name)
         {
         case "type":
             this._Type = (PlayReadyAnalogVideoOPId)StringEnum.Parse(typeof(PlayReadyAnalogVideoOPId), propertyNode.InnerText);
             continue;
         }
     }
 }