using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class PaipaiSopOrderJsfServiceOrderCompletedRequest : JdRequestBase { public string appKey {get; set;} public Nullable orderId {get; set;} public string notifyUrl {get; set;} public Nullable settlementAmount {get; set;} public override string ApiName { get{return "jingdong.paipai.sopOrderJsfService.orderCompleted";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("appKey", this. appKey ); parameters.Add("orderId", this. orderId ); parameters.Add("notifyUrl", this. notifyUrl ); parameters.Add("settlementAmount", this. settlementAmount ); } } }