using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiTradeTicketTicketcodeSyncModel Data Structure.
///
[Serializable]
public class KoubeiTradeTicketTicketcodeSyncModel : AopObject
{
///
/// 凭证码类型,INTERNAL_CODE(内部凭证码),EXTERNAL_CODE(外部凭证码),默认INTERNAL_CODE,外部券场景必填
///
[XmlElement("code_type")]
public string CodeType { get; set; }
///
/// 业务发生时间,如为空默认为接口调用时间
///
[XmlElement("gmt_biz")]
public string GmtBiz { get; set; }
///
/// 口碑订单号
///
[XmlElement("order_no")]
public string OrderNo { get; set; }
///
/// 券码剩余可核销份数(非次卡场景1可核销,0不可核销)
///
[XmlElement("quantity")]
public string Quantity { get; set; }
///
/// 外部请求号,支持英文字母和数字,由开发者自行定义(不允许重复)
///
[XmlElement("request_id")]
public string RequestId { get; set; }
///
/// 凭证状态变更操作发生的门店id
///
[XmlElement("sync_shop_id")]
public string SyncShopId { get; set; }
///
/// 凭证码,包括内部凭证码和外部凭证码,内部凭证码为12位,纯数字,且唯一不重复
///
[XmlElement("ticket_code")]
public string TicketCode { get; set; }
}
}