using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiAlitripBtripReimbursementInitResponse.
///
public class OapiAlitripBtripReimbursementInitResponse : DingTalkResponse
{
///
/// 错误码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 错误信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 返回值
///
[XmlElement("module")]
public OpenApiNewReimbursementRsDomain Module { get; set; }
///
/// 操作是否成功
///
[XmlElement("success")]
public bool Success { get; set; }
///
/// OpenApiNewReimbursementRsDomain Data Structure.
///
[Serializable]
public class OpenApiNewReimbursementRsDomain : TopObject
{
///
/// 报销单号
///
[XmlElement("flow_no")]
public long FlowNo { get; set; }
///
/// 第三方流程编号
///
[XmlElement("thirdparty_flow_id")]
public string ThirdpartyFlowId { get; set; }
}
}
}