You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
3.4 KiB

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.

#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
{
/// <summary>
/// 删除分账接收方请求数据
/// <para>详细请参考微信支付官方文档 https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter8_1_9.shtml </para>
/// </summary>
public class DeleteProfitsharingReceiverRequestData
{
/// <summary>
/// 含参构造函数
/// </summary>
/// <param name="appid">应用ID <para>body微信分配的公众账号ID</para><para>示例值wx8888888888888888</para></param>
/// <param name="type">分账接收方类型 <para>body枚举值MERCHANT_ID商户IDPERSONAL_OPENID个人openid由父商户APPID转换得到</para><para>示例值MERCHANT_ID</para></param>
/// <param name="account">分账接收方账号 <para>body类型是MERCHANT_ID时是商户号类型是PERSONAL_OPENID时是个人openid</para><para>示例值86693852</para></param>
public DeleteProfitsharingReceiverRequestData(string appid, string type, string account)
{
this.appid = appid;
this.type = type;
this.account = account;
}
/// <summary>
/// 无参构造函数
/// </summary>
public DeleteProfitsharingReceiverRequestData()
{
}
/// <summary>
/// 应用ID
/// <para>body微信分配的公众账号ID</para>
/// <para>示例值wx8888888888888888</para>
/// </summary>
public string appid { get; set; }
/// <summary>
/// 分账接收方类型
/// <para>body枚举值 MERCHANT_ID商户ID PERSONAL_OPENID个人openid由父商户APPID转换得到 </para>
/// <para>示例值MERCHANT_ID</para>
/// </summary>
public string type { get; set; }
/// <summary>
/// 分账接收方账号
/// <para>body类型是MERCHANT_ID时是商户号 类型是PERSONAL_OPENID时是个人openid </para>
/// <para>示例值86693852</para>
/// </summary>
public string account { get; set; }
}
}