NewGaoKaoApi/PaymentSDK/AliPay/Domain/FliggyPoiInfo.cs

37 lines
1.0 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>
/// FliggyPoiInfo Data Structure.
/// </summary>
[Serializable]
public class FliggyPoiInfo : AopObject
{
/// <summary>
/// 业务code标识poi同步结果
/// </summary>
[XmlElement("biz_code")]
public string BizCode { get; set; }
/// <summary>
/// 飞猪poi同步消息,失败时为失败原因
/// </summary>
[XmlElement("msg")]
public string Msg { get; set; }
/// <summary>
/// 1. 首次poi同步成功则必须返回poiId失败则需返回结果为失败及错误原因 2 后续poi同步成功/失败,均需返回。
/// </summary>
[XmlElement("poi_id")]
public string PoiId { get; set; }
/// <summary>
/// 本次同步poi的结果成功或失败成功则必须返回poi_id。
/// </summary>
[XmlElement("success")]
public bool Success { get; set; }
}
}