Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoCplifeRoominfoDeleteModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

32 lines
928 B
C#
Raw Permalink 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 System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoCplifeRoominfoDeleteModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoCplifeRoominfoDeleteModel : AopObject
{
/// <summary>
/// 请求批次号,由商户自定义,在商户系统内唯一标示一次业务请求。
/// </summary>
[JsonProperty("batch_id")]
public string BatchId { get; set; }
/// <summary>
/// 业主所在物业小区ID(支付宝平台唯一小区ID标示)
/// </summary>
[JsonProperty("community_id")]
public string CommunityId { get; set; }
/// <summary>
/// 待删除的商户房间列表一次API调用至多传入200条待删除的房间ID(房间在商户系统的唯一ID标识)
/// </summary>
[JsonProperty("out_room_id_set")]
public List<string> OutRoomIdSet { get; set; }
}
}