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.
137 lines
2.4 KiB
137 lines
2.4 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 GiftActivity:JdObject{
|
|
[JsonProperty("isPrize")]
|
|
public int
|
|
|
|
isPrize
|
|
{ get; set; }
|
|
[JsonProperty("giftRuleActivityList")]
|
|
public List<string>
|
|
|
|
giftRuleActivityList
|
|
{ get; set; }
|
|
[JsonProperty("modifier")]
|
|
public string
|
|
|
|
modifier
|
|
{ get; set; }
|
|
[JsonProperty("venderId")]
|
|
public long
|
|
|
|
venderId
|
|
{ get; set; }
|
|
[JsonProperty("sourceLink")]
|
|
public string
|
|
|
|
sourceLink
|
|
{ get; set; }
|
|
[JsonProperty("isSinglePrize")]
|
|
public int
|
|
|
|
isSinglePrize
|
|
{ get; set; }
|
|
[JsonProperty("source")]
|
|
public int
|
|
|
|
source
|
|
{ get; set; }
|
|
[JsonProperty("type")]
|
|
public int
|
|
|
|
type
|
|
{ get; set; }
|
|
[JsonProperty("modelIds")]
|
|
public string
|
|
|
|
modelIds
|
|
{ get; set; }
|
|
[JsonProperty("modified")]
|
|
public DateTime
|
|
|
|
modified
|
|
{ get; set; }
|
|
[JsonProperty("rfId")]
|
|
public long
|
|
|
|
rfId
|
|
{ get; set; }
|
|
[JsonProperty("startTime")]
|
|
public DateTime
|
|
|
|
startTime
|
|
{ get; set; }
|
|
[JsonProperty("id")]
|
|
public long
|
|
|
|
id
|
|
{ get; set; }
|
|
[JsonProperty("validate")]
|
|
public DateTime
|
|
|
|
validate
|
|
{ get; set; }
|
|
[JsonProperty("isEverydayAward")]
|
|
public int
|
|
|
|
isEverydayAward
|
|
{ get; set; }
|
|
[JsonProperty("creator")]
|
|
public string
|
|
|
|
creator
|
|
{ get; set; }
|
|
[JsonProperty("subtitleName")]
|
|
public string
|
|
|
|
subtitleName
|
|
{ get; set; }
|
|
[JsonProperty("created")]
|
|
public DateTime
|
|
|
|
created
|
|
{ get; set; }
|
|
[JsonProperty("taskIds")]
|
|
public string
|
|
|
|
taskIds
|
|
{ get; set; }
|
|
[JsonProperty("name")]
|
|
public string
|
|
|
|
name
|
|
{ get; set; }
|
|
[JsonProperty("sourceCloseLink")]
|
|
public string
|
|
|
|
sourceCloseLink
|
|
{ get; set; }
|
|
[JsonProperty("pictureLink")]
|
|
public string
|
|
|
|
pictureLink
|
|
{ get; set; }
|
|
[JsonProperty("endTime")]
|
|
public DateTime
|
|
|
|
endTime
|
|
{ get; set; }
|
|
[JsonProperty("sourceName")]
|
|
public string
|
|
|
|
sourceName
|
|
{ get; set; }
|
|
[JsonProperty("status")]
|
|
public int
|
|
|
|
status
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|