我收到以下错误,我该如何解决?
ApiClient.Model.Rate无法序列化,因为它没有无参数的构造函数。
我认为它在序列化时非常有用,但是我的问题没有解决,请让我知道如何解决此问题。
public List<Rate> GetRates(string FromCountry, string FromZip, string ToCountry, string ToCity, string ToState, string ToZip, int PackWeight)
{
List<Rate> result = null;
try
{
try
{
result = apiInstance.Rates(apiKey);
}
catch (Exception e)
{
GetServiceError(e, "RatesApi.Rates");
}
}
catch (Exception ex)
{
WebMethodResult = ex.Message;
}
return result;
}