/// <summary>
        /// XML Representation for this object
        /// </summary>
        /// <returns>XML String</returns>

        public String ToXML()
        {
            StringBuilder xml = new StringBuilder();

            xml.Append("<GetAttributesResponse xmlns=\"http://sdb.amazonaws.com/doc/2009-04-15/\">");
            if (IsSetGetAttributesResult())
            {
                GetAttributesResult getAttributesResult = this.GetAttributesResult;
                xml.Append("<GetAttributesResult>");
                xml.Append(getAttributesResult.ToXMLFragment());
                xml.Append("</GetAttributesResult>");
            }
            if (IsSetResponseMetadata())
            {
                ResponseMetadata responseMetadata = this.ResponseMetadata;
                xml.Append("<ResponseMetadata>");
                xml.Append(responseMetadata.ToXMLFragment());
                xml.Append("</ResponseMetadata>");
            }
            xml.Append("</GetAttributesResponse>");
            return(xml.ToString());
        }