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.
61 lines
2.8 KiB
61 lines
2.8 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class ComJdDdOpenGwApiMessagePushServiceRequest : JdRequestBase<ComJdDdOpenGwApiMessagePushServiceResponse>
|
|
{
|
|
public string
|
|
aspid
|
|
{get; set;}
|
|
|
|
public string
|
|
accessid
|
|
{get; set;}
|
|
|
|
public string
|
|
accessToken
|
|
{get; set;}
|
|
|
|
public string
|
|
version
|
|
{get; set;}
|
|
|
|
public string
|
|
time
|
|
{get; set;}
|
|
|
|
public string
|
|
jsonMsg
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.com.jd.dd.open.gw.api.MessagePushService";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("aspid", this. aspid
|
|
);
|
|
parameters.Add("accessid", this. accessid
|
|
);
|
|
parameters.Add("accessToken", this. accessToken
|
|
);
|
|
parameters.Add("version", this. version
|
|
);
|
|
parameters.Add("time", this. time
|
|
);
|
|
parameters.Add("jsonMsg", this. jsonMsg
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|