You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
691 B
31 lines
691 B
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
namespace Jd.ACES.Common
|
|
{
|
|
|
|
public class JosSecretApiReportResponse
|
|
{
|
|
[JsonProperty("jingdong_jos_secret_api_report_get_responce")]
|
|
public JosSecretApiReportResponseData getResponse { get; set; }
|
|
}
|
|
public class JosSecretApiReportResponseData
|
|
{
|
|
[JsonProperty("response")]
|
|
public ReportData reportData { get; set; }
|
|
|
|
[JsonProperty("code")]
|
|
public String code { get; set; }
|
|
|
|
}
|
|
|
|
public class ReportData
|
|
{
|
|
[JsonProperty("errorCode")]
|
|
public int errorCode { get; set; }
|
|
[JsonProperty("errorMsg")]
|
|
public String errorMsg { get; set; }
|
|
}
|
|
|
|
}
|
|
|