NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDaoweiSpModifyModel.cs

87 lines
3.6 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayDaoweiSpModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDaoweiSpModifyModel : 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>
/// 服务者的身份证号码
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 服务者的证件类型目前只支持身份证号IDENTITY_CARD
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 服务者的描述,会进行安全审核,请勿传包含敏感信息的昵称,如果审核传含有敏感信息,需修改后重新同步服务者的描述信息
/// </summary>
[XmlElement("desc")]
public string Desc { get; set; }
/// <summary>
/// 服务者服务列表信息包括服务者可提供的类目服务和证书信息等其中license_id是商家服务者证照的唯一标识用于确定商家的某个服务者的某个证照仅支持数字、字母和下划线
/// </summary>
[XmlArray("license_list")]
[XmlArrayItem("license_info")]
public List<LicenseInfo> LicenseList { get; set; }
/// <summary>
/// 服务者的支付宝登录账号
/// </summary>
[XmlElement("logon_id")]
public string LogonId { get; set; }
/// <summary>
/// 服务者的手机号
/// </summary>
[XmlElement("mobile")]
public string Mobile { get; set; }
/// <summary>
/// 第三方服务者的姓名
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 服务者昵称,会进行安全审核,请勿传包含敏感信息的昵称,如果审核传含有敏感信息,需修改后重新同步服务者信息
/// </summary>
[XmlElement("nick_name")]
public string NickName { get; set; }
/// <summary>
/// 商家服务者id由商家维护的该商家下某个服务者的唯一标识仅支持数字、字母和下划线的组合
/// </summary>
[XmlElement("out_sp_id")]
public string OutSpId { get; set; }
/// <summary>
/// 服务者的头像url只支持https图片大小限制60K以下。请勿发布涉及黄赌毒以及其他违反国家法律法规的图片如果有安全问题将会通知商家修改后重新同步服务者头像
/// </summary>
[XmlElement("photo_url")]
public string PhotoUrl { get; set; }
/// <summary>
/// 服务状态,支持以下状态: ON上架 OFF下架 DELETE删除
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}