-
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.
Browse files
Browse the repository at this point in the history
#2767 第三方平台业务域名
- Loading branch information
Showing
5 changed files
with
196 additions
and
17 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
35 changes: 35 additions & 0 deletions
35
...Weixin.Open/Senparc.Weixin.Open/ComponentAPIs/ComponentJson/GetDomainConfirmFileResult.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,35 @@ | ||
/*---------------------------------------------------------------- | ||
Copyright (C) 2023 Senparc | ||
文件名:ModifyWxaServerDomainResult.cs | ||
文件功能描述:设置第三方平台服务器域名 返回结果 | ||
创建标识:Senparc - 20230109 | ||
----------------------------------------------------------------*/ | ||
|
||
using Senparc.Weixin.Entities; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Senparc.Weixin.Open.ComponentAPIs | ||
{ | ||
/// <summary> | ||
/// 设置第三方平台业务域名 返回结果 | ||
/// </summary> | ||
public class GetDomainConfirmFileResult : WxJsonResult | ||
{ | ||
/// <summary> | ||
/// 文件名 | ||
/// </summary> | ||
public string file_name { get; set; } | ||
/// <summary> | ||
/// 文件内容 | ||
/// </summary> | ||
public string file_content { get; set; } | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
....Weixin.Open/Senparc.Weixin.Open/ComponentAPIs/ComponentJson/ModifyWxaJumpDomainResult.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,39 @@ | ||
/*---------------------------------------------------------------- | ||
Copyright (C) 2023 Senparc | ||
文件名:ModifyWxaServerDomainResult.cs | ||
文件功能描述:设置第三方平台服务器域名 返回结果 | ||
创建标识:Senparc - 20230109 | ||
----------------------------------------------------------------*/ | ||
|
||
using Senparc.Weixin.Entities; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Senparc.Weixin.Open.ComponentAPIs | ||
{ | ||
/// <summary> | ||
/// 设置第三方平台业务域名 返回结果 | ||
/// </summary> | ||
public class ModifyWxaJumpDomainResult : WxJsonResult | ||
{ | ||
/// <summary> | ||
/// 目前生效的 “全网发布版”第三方平台“小程序业务域名”。如果修改失败,该字段不会返回。如果没有已发布的第三方平台,该字段也不会返回。 | ||
/// </summary> | ||
public string published_wxa_jump_h5_domain { get; set; } | ||
/// <summary> | ||
/// 目前生效的 “测试版”第三方平台“小程序业务域名”。如果修改失败,该字段不会返回 | ||
/// </summary> | ||
public string testing_wxa_jump_h5_domain { get; set; } | ||
/// <summary> | ||
/// 未通过验证的域名。如果不存在未通过验证的域名,该字段不会返回。 | ||
/// </summary> | ||
public string invalid_wxa_jump_h5_domain { get; set; } | ||
} | ||
} |
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
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