NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiServindustryReservati...

43 lines
1.4 KiB
C#
Raw 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>
/// KoubeiServindustryReservationLeadsModifyModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiServindustryReservationLeadsModifyModel : AopObject
{
/// <summary>
/// 实际到店时间status_mark==CUSTOMER_ARRIVED时gmt_arrived不能为空
/// </summary>
[XmlElement("gmt_arrived")]
public string GmtArrived { get; set; }
/// <summary>
/// 预约到店时间status_mark==CUSTOMER_ACCEPTED时gmt_reserve不能为空
/// </summary>
[XmlElement("gmt_reserve")]
public string GmtReserve { get; set; }
/// <summary>
/// 商家备注和status_mark不能同时为空
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 预约记录ID
/// </summary>
[XmlElement("reservation_record_id")]
public string ReservationRecordId { get; set; }
/// <summary>
/// 客资状态和memo不能同时为空 PROCESSING("待跟进"), CUSTOMER_ACCEPTED("待到店"), CUSTOMER_ARRIVED("已到店"), CUSTOMER_REJECTED("无意向"), IN_BLACK_LIST("黑名单"),
/// </summary>
[XmlElement("status_mark")]
public string StatusMark { get; set; }
}
}