NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCraftsmanDataWorkModi...

31 lines
1.1 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>
/// KoubeiCraftsmanDataWorkModifyModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCraftsmanDataWorkModifyModel : AopObject
{
/// <summary>
/// 服务商、服务商员工、商户、商户员工等口碑角色操作时必填,对应为 koubei.member.data.oauth.query 中的 auth_code默认有效期24小时ISV自身角色操作的时候无需传该参数
/// </summary>
[XmlElement("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 作品标题。不能出现网络敏感词异步审核审核不通过会删除作品。不会回调isv
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
/// <summary>
/// 口碑手艺人作品id通过查询手艺人作品信息接口koubei.craftsman.data.work.batchquery获取work_id
/// </summary>
[XmlElement("work_id")]
public string WorkId { get; set; }
}
}