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.
52 lines
1.1 KiB
52 lines
1.1 KiB
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
using Jd.Api.Domain;
|
|
namespace Jd.Api.Domain
|
|
{
|
|
|
|
[Serializable]
|
|
public class PurchaseForJos:JdObject{
|
|
[JsonProperty("pin")]
|
|
public string
|
|
|
|
pin
|
|
{ get; set; }
|
|
[JsonProperty("endDate")]
|
|
public DateTime
|
|
|
|
endDate
|
|
{ get; set; }
|
|
[JsonProperty("itemCode")]
|
|
public string
|
|
|
|
itemCode
|
|
{ get; set; }
|
|
[JsonProperty("versionNo")]
|
|
public int
|
|
|
|
versionNo
|
|
{ get; set; }
|
|
[JsonProperty("appKey")]
|
|
public string
|
|
|
|
appKey
|
|
{ get; set; }
|
|
[JsonProperty("isModule")]
|
|
public int
|
|
|
|
isModule
|
|
{ get; set; }
|
|
[JsonProperty("open_id_buyer")]
|
|
public string
|
|
|
|
openIdBuyer
|
|
{ get; set; }
|
|
[JsonProperty("xid_buyer")]
|
|
public string
|
|
|
|
xidBuyer
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|