using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayOfflineMarketItemCreateModel Data Structure. /// [Serializable] public class AlipayOfflineMarketItemCreateModel : AopObject { /// /// 商品审核上下文。支付宝内部使用,外部商户不需填写此字段 /// [XmlElement("audit_rule")] public AlipayItemAuditRule AuditRule { get; set; } /// /// 商品首图,尺寸比例在65:53范围内且图片大小不超过10k皆可,图片推荐尺寸540*420 /// [XmlElement("cover")] public string Cover { get; set; } /// /// 商品描述(代金券时,此字段必填) /// [XmlArray("descriptions")] [XmlArrayItem("alipay_item_description")] public List Descriptions { get; set; } /// /// 商品下架时间,不得早于商品生效时间,商品下架 /// [XmlElement("gmt_end")] public string GmtEnd { get; set; } /// /// 商品生效时间,到达生效时间后才可在客户端展示出来。 说明: 商品的生效时间不能早于创建当天的0点 /// [XmlElement("gmt_start")] public string GmtStart { get; set; } /// /// 商品库存数量 /// [XmlElement("inventory")] public long Inventory { get; set; } /// /// 是否自动延期,默认false。 如果需要设置自动延期,则gmt_start和gmt_end之间要间隔2天以上 /// [XmlElement("is_auto_expanded")] public bool IsAutoExpanded { get; set; } /// /// 商品类型,券类型填写固定值VOUCHER /// [XmlElement("item_type")] public string ItemType { get; set; } /// /// 商户通知地址,口碑发消息给商户通知其是否对商品创建、修改、变更状态成功 /// [XmlElement("operate_notify_url")] public string OperateNotifyUrl { get; set; } /// /// 商品操作上下文。支付宝内部使用,外部商户不需填写此字段。 /// [XmlElement("operation_context")] public AlipayItemOperationContext OperationContext { get; set; } /// /// 商品购买类型 OBTAIN为领取,AUTO_OBTAIN为自动领取 /// [XmlElement("purchase_mode")] public string PurchaseMode { get; set; } /// /// 支持英文字母和数字,由开发者自行定义(不允许重复),在商品notify消息中也会带有该参数,以此标明本次notify消息是对哪个请求的回应 /// [XmlElement("request_id")] public string RequestId { get; set; } /// /// 销售规则 /// [XmlElement("sales_rule")] public AlipayItemSalesRule SalesRule { get; set; } /// /// 上架门店id列表,即传入一个或多个shop_id,必须是创建商品partnerId下的店铺,目前支持的店铺最大100个,如果超过100个店铺需要报备 /// [XmlElement("shop_list")] public string ShopList { get; set; } /// /// 商品名称,请勿超过15个汉字,30个字符 /// [XmlElement("subject")] public string Subject { get; set; } /// /// 券模板信息 /// [XmlElement("voucher_templete")] public AlipayItemVoucherTemplete VoucherTemplete { get; set; } /// /// 商品顺序权重,必须是整数,不传默认为0,权重数值越大排序越靠前 /// [XmlElement("weight")] public long Weight { get; set; } } }