Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/KoubeiContentCommentReplyCreateModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

30 lines
1001 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// KoubeiContentCommentReplyCreateModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiContentCommentReplyCreateModel : AopObject
{
/// <summary>
/// 服务商、服务商员工、商户、商户员工等口碑角色操作时必填对应为接口koubei.member.data.oauth.query口碑业务授权令牌查询中的auth_code默认有效期24小时isv自身角色操作的时候无需传该参数
/// </summary>
[JsonProperty("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 口碑评价id 可通过koubei.content.comment.data.batchquery接口查询
/// </summary>
[JsonProperty("comment_id")]
public string CommentId { get; set; }
/// <summary>
/// 评价回复内容回复的内容不超过500字不区分中英文
/// </summary>
[JsonProperty("content")]
public string Content { get; set; }
}
}