-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2988 from JeffreySu/Developer
Developer
- Loading branch information
Showing
20 changed files
with
978 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
...n.WxOpen/Senparc.Weixin.WxOpen/AdvancedAPIs/XPay/XPayJson/CompleteComplaintRequestData.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace Senparc.Weixin.WxOpen.AdvancedAPIs.XPay | ||
{ | ||
/// <summary> | ||
/// 完成投诉处理 | ||
/// </summary> | ||
public class CompleteComplaintRequestData | ||
{ | ||
/// <summary> | ||
/// 投诉id,get_complaint_list接口返回 | ||
/// </summary> | ||
public string complaint_id { get; set; } | ||
|
||
/// <summary> | ||
/// 0-正式环境 1-沙箱环境 | ||
/// </summary> | ||
public int env { get; set; } | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
...n.WxOpen/Senparc.Weixin.WxOpen/AdvancedAPIs/XPay/XPayJson/GetComplaintDetailJsonResult.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using Senparc.Weixin.Entities; | ||
|
||
namespace Senparc.Weixin.WxOpen.AdvancedAPIs.XPay | ||
{ | ||
/// <summary> | ||
/// | ||
/// </summary> | ||
public class GetComplaintDetailJsonResult : WxJsonResult | ||
{ | ||
/// <summary> | ||
/// 与get_complaint_list接口的complaints一致 | ||
/// </summary> | ||
public ComplaintItem complaint { get; set; } | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
....WxOpen/Senparc.Weixin.WxOpen/AdvancedAPIs/XPay/XPayJson/GetComplaintDetailRequestData.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
namespace Senparc.Weixin.WxOpen.AdvancedAPIs.XPay | ||
{ | ||
/// <summary> | ||
/// 获取投诉详情 | ||
/// </summary> | ||
public class GetComplaintDetailRequestData | ||
{ | ||
/// <summary> | ||
/// 投诉id,get_complaint_list接口返回 | ||
/// </summary> | ||
public string complaint_id { get; set; } | ||
|
||
/// <summary> | ||
/// 0-正式环境 1-沙箱环境 | ||
/// </summary> | ||
public int env { get; set; } | ||
} | ||
} |
Oops, something went wrong.