#region Apache License Version 2.0 /*---------------------------------------------------------------- Copyright 2023 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md ----------------------------------------------------------------*/ #endregion Apache License Version 2.0 /*---------------------------------------------------------------- Copyright (C) 2023 Senparc 文件名:DeleteProfitsharingReceiverRequestData.cs 文件功能描述:删除分账接收方请求数据 创建标识:Senparc - 20210915 ----------------------------------------------------------------*/ using Senparc.Weixin.TenPayV3.Entities; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Senparc.Weixin.TenPayV3.Apis.Profitsharing { /// /// 删除分账接收方请求数据 /// 详细请参考微信支付官方文档 https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter8_1_9.shtml /// public class DeleteProfitsharingReceiverRequestData { /// /// 含参构造函数 /// /// 应用ID body微信分配的公众账号ID示例值:wx8888888888888888 /// 分账接收方类型 body枚举值:MERCHANT_ID:商户IDPERSONAL_OPENID:个人openid(由父商户APPID转换得到)示例值:MERCHANT_ID /// 分账接收方账号 body类型是MERCHANT_ID时,是商户号类型是PERSONAL_OPENID时,是个人openid示例值:86693852 public DeleteProfitsharingReceiverRequestData(string appid, string type, string account) { this.appid = appid; this.type = type; this.account = account; } /// /// 无参构造函数 /// public DeleteProfitsharingReceiverRequestData() { } /// /// 应用ID /// body微信分配的公众账号ID /// 示例值:wx8888888888888888 /// public string appid { get; set; } /// /// 分账接收方类型 /// body枚举值: MERCHANT_ID:商户ID PERSONAL_OPENID:个人openid(由父商户APPID转换得到) /// 示例值:MERCHANT_ID /// public string type { get; set; } /// /// 分账接收方账号 /// body类型是MERCHANT_ID时,是商户号 类型是PERSONAL_OPENID时,是个人openid /// 示例值:86693852 /// public string account { get; set; } } }