using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class OmnichannelOrderShipUpdateRequest : JdRequestBase { public Nullable orderId {get; set;} public string deliveryId {get; set;} public Nullable status {get; set;} public string operateName {get; set;} public string contactPhone {get; set;} public Nullable operateTime {get; set;} public override string ApiName { get{return "jingdong.omnichannel.order.ship.update";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("orderId", this. orderId ); parameters.Add("deliveryId", this. deliveryId ); parameters.Add("status", this. status ); parameters.Add("operateName", this. operateName ); parameters.Add("contactPhone", this. contactPhone ); parameters.Add("operateTime", this. operateTime ); } } }