using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// OfflinepayErrorIndicator Data Structure.
///
[Serializable]
public class OfflinepayErrorIndicator : AopObject
{
///
/// 右动作按钮
///
[XmlElement("action_button")]
public string ActionButton { get; set; }
///
/// 右动作按钮跳转地址
///
[XmlElement("action_url")]
public string ActionUrl { get; set; }
///
/// 针对alipayinside的定制化提示文案
///
[XmlElement("alipay_inside_tips")]
public string AlipayInsideTips { get; set; }
///
/// 是否清楚卡片本地缓存
///
[XmlElement("clean_card")]
public bool CleanCard { get; set; }
///
/// 左动作按钮
///
[XmlElement("default_button")]
public string DefaultButton { get; set; }
///
/// 默认跳转地址
///
[XmlElement("default_url")]
public string DefaultUrl { get; set; }
///
/// 错误描述
///
[XmlElement("desc")]
public string Desc { get; set; }
///
/// 错误码值
///
[XmlElement("error_code")]
public string ErrorCode { get; set; }
///
/// 错误提示文案
///
[XmlElement("tips")]
public string Tips { get; set; }
///
/// 客户端提示类型
///
[XmlElement("type")]
public string Type { get; set; }
}
}