37 lines
914 B
C#
37 lines
914 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEcoMycarDataExternalSendModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEcoMycarDataExternalSendModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// external_system_name
|
|
/// </summary>
|
|
[XmlElement("external_system_name")]
|
|
public string ExternalSystemName { get; set; }
|
|
|
|
/// <summary>
|
|
/// is_transfer_uid
|
|
/// </summary>
|
|
[XmlElement("is_transfer_uid")]
|
|
public string IsTransferUid { get; set; }
|
|
|
|
/// <summary>
|
|
/// operate_type
|
|
/// </summary>
|
|
[XmlElement("operate_type")]
|
|
public string OperateType { get; set; }
|
|
|
|
/// <summary>
|
|
/// send_data
|
|
/// </summary>
|
|
[XmlElement("send_data")]
|
|
public string SendData { get; set; }
|
|
}
|
|
}
|