using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiDingpayRedenvelopeSendResponse.
///
public class OapiDingpayRedenvelopeSendResponse : DingTalkResponse
{
///
/// 错误码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 错误信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 红包发送结果
///
[XmlElement("result")]
public RedEnvelopeGetResultDomain Result { get; set; }
///
/// RedEnvelopeGetResultDomain Data Structure.
///
[Serializable]
public class RedEnvelopeGetResultDomain : TopObject
{
///
/// 企业订单号
///
[XmlElement("corp_biz_no")]
public string CorpBizNo { get; set; }
///
/// 订单订单号
///
[XmlElement("order_no")]
public string OrderNo { get; set; }
}
}
}