步步为盈
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.

117 lines
6.9 KiB

using System;
using System.Collections.Generic;
using Jd.Api.Response;
using Jd.Api.Util;
namespace Jd.Api.Request
{
public class BrandCouponCreateJpassCouponRequest : JdRequestBase<BrandCouponCreateJpassCouponResponse>
{
public Nullable<long>
couponNum
{get; set;}
public string
couponName
{get; set;}
public string
coverImg
{get; set;}
public Nullable<DateTime>
endDate
{get; set;}
public Nullable<int>
sellType
{get; set;}
public Nullable<long>
couponAmount
{get; set;}
public Nullable<int>
effectiveType
{get; set;}
public Nullable<int>
couponType
{get; set;}
public Nullable<int>
perCoupon
{get; set;}
public Nullable<long>
quota
{get; set;}
public string
coverIntroduce
{get; set;}
public string
rfId
{get; set;}
public Nullable<DateTime>
startDate
{get; set;}
public string
notice
{get; set;}
public string
storeId {get; set; }
public string
skuId {get; set; }
public override string ApiName
{
get{return "jingdong.brand.coupon.createJpassCoupon";}
}
protected override void PrepareParam(IDictionary<String, Object> parameters)
{
parameters.Add("couponNum", this. couponNum
);
parameters.Add("couponName", this. couponName
);
parameters.Add("coverImg", this. coverImg
);
parameters.Add("endDate", this. endDate
);
parameters.Add("sellType", this. sellType
);
parameters.Add("couponAmount", this. couponAmount
);
parameters.Add("effectiveType", this. effectiveType
);
parameters.Add("couponType", this. couponType
);
parameters.Add("perCoupon", this. perCoupon
);
parameters.Add("quota", this. quota
);
parameters.Add("coverIntroduce", this. coverIntroduce
);
parameters.Add("rfId", this. rfId
);
parameters.Add("startDate", this. startDate
);
parameters.Add("notice", this. notice
);
parameters.Add("storeId", this. storeId
);
parameters.Add("skuId", this. skuId
);
}
}
}