NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenLotterymallExchan...

49 lines
1.3 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenLotterymallExchangerecordstatusSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenLotterymallExchangerecordstatusSyncModel : AopObject
{
/// <summary>
/// 环境信息PRE预发环境PROD线上
/// </summary>
[XmlElement("env")]
public string Env { get; set; }
/// <summary>
/// json格式的数据
/// </summary>
[XmlElement("extinfo")]
public string Extinfo { get; set; }
/// <summary>
/// 积分兑换商城的兑换记录id
/// </summary>
[XmlElement("mallexchangerecordid")]
public string Mallexchangerecordid { get; set; }
/// <summary>
/// 该笔订单之前的状态
/// </summary>
[XmlElement("now")]
public string Now { get; set; }
/// <summary>
/// 调用方自己创建的订单id为抽奖调用业务方下单时业务方生成的业务id
/// </summary>
[XmlElement("outbizid")]
public string Outbizid { get; set; }
/// <summary>
/// 兑换记录目标状态
/// </summary>
[XmlElement("target")]
public string Target { get; set; }
}
}