using System; using System.Collections.Generic; namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [GET] /union/promoter/open_account/get_customize_info 接口的响应。 /// public class UnionPromoterOpenAccountGetCustomizeInfoResponse : WechatApiResponse { /// /// 获取或设置自定义参数。 /// [Newtonsoft.Json.JsonProperty("customizeInfo")] [System.Text.Json.Serialization.JsonPropertyName("customizeInfo")] public string CustomizeInfo { get; set; } = default!; } }