NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialBaseGroupCreate...

37 lines
969 B
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>
/// AlipaySocialBaseGroupCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialBaseGroupCreateModel : AopObject
{
/// <summary>
/// 业务方传入的唯一id做为幂等使用
/// </summary>
[XmlElement("biz_no")]
public string BizNo { get; set; }
/// <summary>
/// 群的业务类型目前只能为0
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 建群时初始化的群设置
/// </summary>
[XmlElement("group_settings")]
public GroupSetting GroupSettings { get; set; }
/// <summary>
/// 建群的时候群主的userid
/// </summary>
[XmlElement("master_id")]
public string MasterId { get; set; }
}
}