NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDaoweiSpScheduleModif...

25 lines
1.2 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>
/// AlipayDaoweiSpScheduleModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDaoweiSpScheduleModifyModel : AopObject
{
/// <summary>
/// 服务者的可用时间表。其中Duration和Unit配合使用例如duration=30unit=MIN表示将一天分为以30分钟一小段的时间片段。Unit目前支持MIN分钟。DateYYYY-MM-DD格式。Bitmap根据定义的间隔长度跟单位将date的时间切分例如将2016-11-29整天按30分钟为一段切分为48段 111111111111111111111111111111111110000011111111 其中0表示不可用1表示可用如果工作日全天可用则每个分段都为1
/// </summary>
[XmlElement("calendar_schedule")]
public CalendarScheduleInfo CalendarSchedule { get; set; }
/// <summary>
/// 商家服务者id由商家维护的该商家下某个服务者的唯一标识仅支持数字、字母和下划线的组合
/// </summary>
[XmlElement("out_sp_id")]
public string OutSpId { get; set; }
}
}