NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandStoreShops...

88 lines
2.3 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AntMerchantExpandStoreShopserviceModifyModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandStoreShopserviceModifyModel : AopObject
{
/// <summary>
/// true/false, 是否有效默认为true
/// </summary>
[XmlElement("is_valid")]
public bool IsValid { get; set; }
/// <summary>
/// 测试的场景服务名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 商家接收通知的手机号
/// </summary>
[XmlElement("notify_phone")]
public string NotifyPhone { get; set; }
/// <summary>
/// 外部业务号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 具体描述预约的业务场景
/// </summary>
[XmlElement("service_desc")]
public string ServiceDesc { get; set; }
/// <summary>
/// 线下门店的服务项目列表
/// </summary>
[XmlArray("service_items")]
[XmlArrayItem("shop_service_item")]
public List<ShopServiceItem> ServiceItems { get; set; }
/// <summary>
/// 服务时间信息
/// </summary>
[XmlElement("service_time")]
public ServiceTimeInfo ServiceTime { get; set; }
/// <summary>
/// 线下门店ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 场景服务ID
/// </summary>
[XmlElement("shop_service_id")]
public string ShopServiceId { get; set; }
/// <summary>
/// 服务人员
/// </summary>
[XmlArray("shop_staffs")]
[XmlArrayItem("shop_staff_info")]
public List<ShopStaffInfo> ShopStaffs { get; set; }
/// <summary>
/// 规格ID
/// </summary>
[XmlElement("sku_id")]
public string SkuId { get; set; }
/// <summary>
/// 线上店的ID
/// </summary>
[XmlElement("store_open_id")]
public string StoreOpenId { get; set; }
}
}