/// <summary> /// XML Representation for this object /// </summary> /// <returns>XML String</returns> public String ToXML() { StringBuilder xml = new StringBuilder(); xml.Append("<GetFeedSubmissionResultResponse xmlns=\"http://mws.amazonaws.com/doc/2009-01-01/\">"); if (IsSetGetFeedSubmissionResultResult()) { GetFeedSubmissionResultResult getFeedSubmissionResultResult = this.GetFeedSubmissionResultResult; xml.Append("<GetFeedSubmissionResultResult>"); xml.Append(getFeedSubmissionResultResult.ToXMLFragment()); xml.Append("</GetFeedSubmissionResultResult>"); } if (IsSetResponseMetadata()) { ResponseMetadata responseMetadata = this.ResponseMetadata; xml.Append("<ResponseMetadata>"); xml.Append(responseMetadata.ToXMLFragment()); xml.Append("</ResponseMetadata>"); } xml.Append("</GetFeedSubmissionResultResponse>"); return(xml.ToString()); }
/// <summary> /// Sets the GetFeedSubmissionResultResult property /// </summary> /// <param name="getFeedSubmissionResultResult">GetFeedSubmissionResultResult property</param> /// <returns>this instance</returns> public GetFeedSubmissionResultResponse WithGetFeedSubmissionResultResult(GetFeedSubmissionResultResult getFeedSubmissionResultResult) { this.getFeedSubmissionResultResultField = getFeedSubmissionResultResult; return(this); }