using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// AliexpressPlatformFacadeCallResponse. /// public class AliexpressPlatformFacadeCallResponse : TopResponse { /// /// Response body /// [XmlElement("res_body")] public string ResBody { get; set; } /// /// Response http status code /// [XmlElement("res_code")] public long ResCode { get; set; } /// /// Response headers: Map>? /// [XmlElement("res_headers")] public string ResHeaders { get; set; } } }