diff --git a/.editorconfig b/.editorconfig index 43d2942a..e4794d0f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,7 +1,14 @@ -[*.cs] +root = true -# CS1570: XML 注释出现 XML 格式错误 +[*] +charset = utf-8 +end_of_line = crlf +indent_size = 4 +indent_style = space +tab_width = 4 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.cs] dotnet_diagnostic.CS1570.severity = none - -# CS1591: 缺少对公共可见类型或成员的 XML 注释 -dotnet_diagnostic.CS1591.severity = suggestion \ No newline at end of file +dotnet_diagnostic.CS1591.severity = suggestion diff --git a/.gitignore b/.gitignore index 72fc35c6..2b03d98f 100644 --- a/.gitignore +++ b/.gitignore @@ -191,4 +191,4 @@ ModelManifest.xml # Visual Studio temporary files .vs *.nupkg -.idea \ No newline at end of file +.idea diff --git a/CHANGELOG.md b/CHANGELOG.md index 862d59e7..41ed0c4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -72,7 +72,7 @@ - **变更**:修改反序列化回调通知事件的相关扩展方法 `DeserializeEventFromXml`、`DeserializeEventFromJson`,废弃其指示是否启用安全模式的参数,改为自动判定。 - - **变更**:修改序列化回调通知事件的相关扩展方法 `SerializeEventToXml`、`SerializeEventToJson`,调整其指示是否启用安全模式的参数默认值,由 *false* 变为 *true*。 + - **变更**:修改序列化回调通知事件的相关扩展方法 `SerializeEventToXml`、`SerializeEventToJson`,调整其指示是否启用安全模式的参数默认值,由 _false_ 变为 _true_。 - **变更**:移除原 `WxBizMsgCryptor` 工具类。 diff --git a/LICENSE b/LICENSE index 79b03939..f1178272 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020-2021 RHQYZ +Copyright (c) 2020-2022 RHQYZ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/WechatAds/Advanced_AccessToken.md b/docs/WechatAds/Advanced_AccessToken.md index 35e29e03..74f56a99 100644 --- a/docs/WechatAds/Advanced_AccessToken.md +++ b/docs/WechatAds/Advanced_AccessToken.md @@ -8,4 +8,4 @@ > > [《微信官方文档 - 开放平台:Token 生成说明》](https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/api/Before_Develop/creat_token.html) -该部分所需接口已由 [SKIT.FlurlHttpClient.Wechat.Api](../WechatApi/README.md) 模块提供,请开发者自行阅读相关文档。 \ No newline at end of file +该部分所需接口已由 [SKIT.FlurlHttpClient.Wechat.Api](../WechatApi/README.md) 模块提供,请开发者自行阅读相关文档。 diff --git a/docs/WechatAds/Advanced_Interceptor.md b/docs/WechatAds/Advanced_Interceptor.md index c44ccae1..53a02960 100644 --- a/docs/WechatAds/Advanced_Interceptor.md +++ b/docs/WechatAds/Advanced_Interceptor.md @@ -16,4 +16,4 @@ ### 内置拦截器 -本库内置了一个用于请求时自动生成服务商身份令牌(即 AgencyToken)的拦截器。 \ No newline at end of file +本库内置了一个用于请求时自动生成服务商身份令牌(即 AgencyToken)的拦截器。 diff --git a/docs/WechatTenpayV2/Advanced_EventSignatureVerification.md b/docs/WechatTenpayV2/Advanced_EventSignatureVerification.md index e6268d48..d046a839 100644 --- a/docs/WechatTenpayV2/Advanced_EventSignatureVerification.md +++ b/docs/WechatTenpayV2/Advanced_EventSignatureVerification.md @@ -12,4 +12,4 @@ bool ret = client.VerifyEventSignature( callbackBody: " 微信回调通知中请求正文 XML 内容 " ); -``` \ No newline at end of file +``` diff --git a/docs/WechatTenpayV2/Advanced_Parameters.md b/docs/WechatTenpayV2/Advanced_Parameters.md index 089e2980..60b41f4c 100644 --- a/docs/WechatTenpayV2/Advanced_Parameters.md +++ b/docs/WechatTenpayV2/Advanced_Parameters.md @@ -42,7 +42,7 @@ var paramMap = client.GenerateParametersForJsapiGetBrandPayRequest(request.AppId - 生成客户端小程序调起领取红包所需的参数字典:`GenerateParametersForJsapiSendBusinessRedPack` -- 生成客户端公众号唤起微信委托代扣的 URL:`GenerateParameterizedUrlForMediaPlatformPAPPayEntrustWeb` / `GenerateParameterizedUrlForMediaPlatformPAPPayPartnerEntrustWeb` +- 生成客户端公众号唤起微信委托代扣的 URL:`GenerateParameterizedUrlForMediaPlatformPAPPayEntrustWeb` / `GenerateParameterizedUrlForMediaPlatformPAPPayPartnerEntrustWeb` - 生成客户端小程序唤起微信委托代扣页面所需的参数字典:`GenerateParametersForMiniProgramPAPPayEntrust` / `GenerateParametersForMiniProgramPAPPayPartnerEntrust` diff --git a/docs/WechatTenpayV3/Advanced_EventSignatureVerification.md b/docs/WechatTenpayV3/Advanced_EventSignatureVerification.md index 383a9c18..0c28228f 100644 --- a/docs/WechatTenpayV3/Advanced_EventSignatureVerification.md +++ b/docs/WechatTenpayV3/Advanced_EventSignatureVerification.md @@ -55,7 +55,7 @@ bool ret = client.VerifyEventSignature( ```csharp bool ret = client.VerifyEventSignature(timestamp, nonce, body, signature, serialNumber, out Exception error); -if (!ret) +if (!ret) { Console.WriteLine(error); Console.WriteLine(error.InnerException); @@ -66,4 +66,4 @@ if (!ret) ### 通过 `CertificateManager` 管理平台证书信息: -请参阅本文档[《高级技巧 - 如何加密请求中的敏感数据?》](./Advanced_RequestSensitiveDataEncryption.md)下的同名章节。 \ No newline at end of file +请参阅本文档[《高级技巧 - 如何加密请求中的敏感数据?》](./Advanced_RequestSensitiveDataEncryption.md)下的同名章节。 diff --git a/docs/WechatTenpayV3/Advanced_MerchantCertificateSerialNumber.md b/docs/WechatTenpayV3/Advanced_MerchantCertificateSerialNumber.md index 3bbeeaea..2e593e3a 100644 --- a/docs/WechatTenpayV3/Advanced_MerchantCertificateSerialNumber.md +++ b/docs/WechatTenpayV3/Advanced_MerchantCertificateSerialNumber.md @@ -15,4 +15,4 @@ ```csharp string certificate = "CRT/CER 证书内容"; string serialNumber = RSAUtility.ExportSerialNumber(certificate); -``` \ No newline at end of file +``` diff --git a/docs/WechatTenpayV3/Advanced_ModelDefinition.md b/docs/WechatTenpayV3/Advanced_ModelDefinition.md index 318a965d..f0bf2fe9 100644 --- a/docs/WechatTenpayV3/Advanced_ModelDefinition.md +++ b/docs/WechatTenpayV3/Advanced_ModelDefinition.md @@ -1088,7 +1088,6 @@ - Query Fund Settlement Details:`QueryHKSettlements` - - QR Code Payment - Order Placement:`CreateHKTransactionMicroPay` / `CreateHKPartnerTransactionMicroPay` diff --git a/docs/WechatTenpayV3/Advanced_RequestSensitiveDataEncryption.md b/docs/WechatTenpayV3/Advanced_RequestSensitiveDataEncryption.md index fa45a4c0..6d61864f 100644 --- a/docs/WechatTenpayV3/Advanced_RequestSensitiveDataEncryption.md +++ b/docs/WechatTenpayV3/Advanced_RequestSensitiveDataEncryption.md @@ -77,10 +77,10 @@ var response = await client.ExecuteAddProfitSharingReceiverAsync(request); 如果你希望本库在请求前能自动完成这项操作,你可以在构造得到 `WechatApiClient` 对象时指定自动化参数: ```csharp -var options = new WechatTenpayClientOptions() -{ +var options = new WechatTenpayClientOptions() +{ // 其他配置项略 - AutoEncryptRequestSensitiveProperty = true + AutoEncryptRequestSensitiveProperty = true }; var client = new WechatTenpayClient(options); ``` @@ -101,10 +101,10 @@ var client = new WechatTenpayClient(options); ```csharp var manager = new InMemoryCertificateManager(); // 为便于后续使用,该对象可使用同一商户号下全局单例的方式声明 -var options = new WechatTenpayClientOptions() -{ +var options = new WechatTenpayClientOptions() +{ // 其他配置项略 - PlatformCertificateManager = manager + PlatformCertificateManager = manager }; var client = new WechatTenpayClient(options); ``` @@ -227,4 +227,4 @@ public class RedisCertificateManager : CertificateManager return Connection.GetDatabase().KeyDelete(key); } } -``` \ No newline at end of file +``` diff --git a/docs/WechatTenpayV3/Advanced_ResponseSensitiveDataDecryption.md b/docs/WechatTenpayV3/Advanced_ResponseSensitiveDataDecryption.md index f470302e..ad23d75a 100644 --- a/docs/WechatTenpayV3/Advanced_ResponseSensitiveDataDecryption.md +++ b/docs/WechatTenpayV3/Advanced_ResponseSensitiveDataDecryption.md @@ -41,9 +41,9 @@ string temp = response.CertificateList.First().EncryptCertificate.CipherText; // 如果你希望本库在响应后能自动完成这项操作,你可以在构造得到 `WechatApiClient` 对象时指定自动化参数: ```csharp -var options = new WechatTenpayClientOptions() -{ - AutoDecryptResponseSensitiveProperty = true +var options = new WechatTenpayClientOptions() +{ + AutoDecryptResponseSensitiveProperty = true }; var client = new WechatTenpayClient(options); ``` diff --git a/docs/WechatTenpayV3/Advanced_ResponseSignatureVerification.md b/docs/WechatTenpayV3/Advanced_ResponseSignatureVerification.md index 4ec4a755..0b1dcb07 100644 --- a/docs/WechatTenpayV3/Advanced_ResponseSignatureVerification.md +++ b/docs/WechatTenpayV3/Advanced_ResponseSignatureVerification.md @@ -64,7 +64,7 @@ bool ret = client.VerifyResponseSignature(response); ```csharp bool ret = client.VerifyResponseSignature(response, out Exception error); -if (!ret) +if (!ret) { Console.WriteLine(error); Console.WriteLine(error.InnerException); @@ -75,4 +75,4 @@ if (!ret) ### 通过 `CertificateManager` 管理平台证书信息: -请参阅本文档[《高级技巧 - 如何加密请求中的敏感数据?》](./Advanced_RequestSensitiveDataEncryption.md)下的同名章节。 \ No newline at end of file +请参阅本文档[《高级技巧 - 如何加密请求中的敏感数据?》](./Advanced_RequestSensitiveDataEncryption.md)下的同名章节。 diff --git a/samples/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47.csproj b/samples/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47.csproj index 784c9298..6bbceaee 100644 --- a/samples/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47.csproj +++ b/samples/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47.csproj @@ -249,4 +249,4 @@ - \ No newline at end of file + diff --git a/samples/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47/Web.config b/samples/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47/Web.config index 4bce9b9c..a639dec4 100644 --- a/samples/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47/Web.config +++ b/samples/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47/Web.config @@ -7,7 +7,7 @@ - + @@ -88,4 +88,4 @@ - \ No newline at end of file + diff --git a/samples/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47/packages.config b/samples/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47/packages.config index 8173668f..6c842c68 100644 --- a/samples/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47/packages.config +++ b/samples/SKIT.FlurlHttpClient.Wechat.TenpayV3.Sample_NetFramework47/packages.config @@ -32,4 +32,4 @@ - \ No newline at end of file + diff --git a/src/SKIT.FlurlHttpClient.Wechat.Ads/Properties/AssemblyInfo.cs b/src/SKIT.FlurlHttpClient.Wechat.Ads/Properties/AssemblyInfo.cs index 2c280722..fca85695 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Ads/Properties/AssemblyInfo.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Ads/Properties/AssemblyInfo.cs @@ -1,3 +1,3 @@ using System.Runtime.CompilerServices; -[assembly: InternalsVisibleTo("SKIT.FlurlHttpClient.Wechat.Ads.UnitTests")] \ No newline at end of file +[assembly: InternalsVisibleTo("SKIT.FlurlHttpClient.Wechat.Ads.UnitTests")] diff --git a/src/SKIT.FlurlHttpClient.Wechat.Ads/README.md b/src/SKIT.FlurlHttpClient.Wechat.Ads/README.md index 407c37ce..98d5ee60 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Ads/README.md +++ b/src/SKIT.FlurlHttpClient.Wechat.Ads/README.md @@ -22,4 +22,4 @@ ### 【更新日志】 -[点此查看](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/blob/main/CHANGELOG.md)。 \ No newline at end of file +[点此查看](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/blob/main/CHANGELOG.md)。 diff --git a/src/SKIT.FlurlHttpClient.Wechat.Ads/WechatAdsResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Ads/WechatAdsResponse.cs index 383a4743..188cb281 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Ads/WechatAdsResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Ads/WechatAdsResponse.cs @@ -8,17 +8,17 @@ namespace SKIT.FlurlHttpClient.Wechat.Ads public abstract class WechatAdsResponse : ICommonResponse { /// - /// + /// /// int ICommonResponse.RawStatus { get; set; } /// - /// + /// /// IDictionary ICommonResponse.RawHeaders { get; set; } = default!; /// - /// + /// /// byte[] ICommonResponse.RawBytes { get; set; } = default!; diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageOpenOpenMessageRequest.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageOpenOpenMessageRequest.cs index 898cdc5f..313c4ff1 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageOpenOpenMessageRequest.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageOpenOpenMessageRequest.cs @@ -1,6 +1,4 @@ -using System.Collections.Generic; - -namespace SKIT.FlurlHttpClient.Wechat.Api.Models +namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /cgi-bin/express/delivery/open_msg/open_openmsg 接口的请求。 diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageOpenQueryPluginRequest.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageOpenQueryPluginRequest.cs index bb978ee5..b86d1cb8 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageOpenQueryPluginRequest.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageOpenQueryPluginRequest.cs @@ -1,6 +1,4 @@ -using System.Collections.Generic; - -namespace SKIT.FlurlHttpClient.Wechat.Api.Models +namespace SKIT.FlurlHttpClient.Wechat.Api.Models { /// /// 表示 [POST] /cgi-bin/express/delivery/open_msg/open_query_plugin 接口的请求。 diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinMaterial/CgibinMaterialBatchGetMaterialResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinMaterial/CgibinMaterialBatchGetMaterialResponse.cs index 24238ba8..fffdcd11 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinMaterial/CgibinMaterialBatchGetMaterialResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinMaterial/CgibinMaterialBatchGetMaterialResponse.cs @@ -15,6 +15,7 @@ { public static class Types { + [System.Obsolete] public class Article : CgibinMaterialGetMaterialAsNewsResponse.Types.Article { } diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinMedia/CgibinMediaUploadNewsRequest.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinMedia/CgibinMediaUploadNewsRequest.cs index 669bb227..0d1d37a9 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinMedia/CgibinMediaUploadNewsRequest.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/CgibinMedia/CgibinMediaUploadNewsRequest.cs @@ -9,6 +9,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models { public static class Types { + [System.Obsolete] public class Article : CgibinMaterialAddNewsRequest.Types.Article { } diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Wxa/WxaCode/WxaGetWxaCodeRequest.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Wxa/WxaCode/WxaGetWxaCodeRequest.cs index d5a9901c..bd7475a6 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Wxa/WxaCode/WxaGetWxaCodeRequest.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/Wxa/WxaCode/WxaGetWxaCodeRequest.cs @@ -74,4 +74,4 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models [System.Text.Json.Serialization.JsonPropertyName("env_version")] public string? EnvironmentVersion { get; set; } } -} \ No newline at end of file +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/WxaBusiness/WxaBusinessCheckEncryptedMessageResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/WxaBusiness/WxaBusinessCheckEncryptedMessageResponse.cs index 82b8f0bc..a565ec2a 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/Models/WxaBusiness/WxaBusinessCheckEncryptedMessageResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/Models/WxaBusiness/WxaBusinessCheckEncryptedMessageResponse.cs @@ -1,22 +1,22 @@ -namespace SKIT.FlurlHttpClient.Wechat.Api.Models -{ - /// - /// 表示 [POST] /wxa/business/checkencryptedmsg 接口的响应。 - /// - public class WxaBusinessCheckEncryptedMessageResponse : WechatApiResponse - { - /// - /// 获取或设置是否是合法的数据。 - /// - [Newtonsoft.Json.JsonProperty("vaild")] - [System.Text.Json.Serialization.JsonPropertyName("vaild")] +namespace SKIT.FlurlHttpClient.Wechat.Api.Models +{ + /// + /// 表示 [POST] /wxa/business/checkencryptedmsg 接口的响应。 + /// + public class WxaBusinessCheckEncryptedMessageResponse : WechatApiResponse + { + /// + /// 获取或设置是否是合法的数据。 + /// + [Newtonsoft.Json.JsonProperty("vaild")] + [System.Text.Json.Serialization.JsonPropertyName("vaild")] public bool IsValid { get; set; } - /// - /// 获取或设置加密数据生成的时间戳。 - /// - [Newtonsoft.Json.JsonProperty("create_time")] - [System.Text.Json.Serialization.JsonPropertyName("create_time")] + /// + /// 获取或设置加密数据生成的时间戳。 + /// + [Newtonsoft.Json.JsonProperty("create_time")] + [System.Text.Json.Serialization.JsonPropertyName("create_time")] public long CreateTimestamp { get; set; } - } -} + } +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/README.md b/src/SKIT.FlurlHttpClient.Wechat.Api/README.md index a68cbe18..89f59021 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/README.md +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/README.md @@ -22,4 +22,4 @@ ### 【更新日志】 -[点此查看](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/blob/main/CHANGELOG.md)。 \ No newline at end of file +[点此查看](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/blob/main/CHANGELOG.md)。 diff --git a/src/SKIT.FlurlHttpClient.Wechat.Api/WechatApiResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Api/WechatApiResponse.cs index 47ed8f48..945e5dcc 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Api/WechatApiResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Api/WechatApiResponse.cs @@ -8,17 +8,17 @@ namespace SKIT.FlurlHttpClient.Wechat.Api public abstract class WechatApiResponse : ICommonResponse { /// - /// + /// /// int ICommonResponse.RawStatus { get; set; } /// - /// + /// /// IDictionary ICommonResponse.RawHeaders { get; set; } = default!; /// - /// + /// /// byte[] ICommonResponse.RawBytes { get; set; } = default!; diff --git a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Extensions/Platform/WechatOpenAIPlatformClientEventExtensions.cs b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Extensions/Platform/WechatOpenAIPlatformClientEventExtensions.cs index 23aa7d6c..8b9a283d 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Extensions/Platform/WechatOpenAIPlatformClientEventExtensions.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Extensions/Platform/WechatOpenAIPlatformClientEventExtensions.cs @@ -1,4 +1,4 @@ -using System; +using System; namespace SKIT.FlurlHttpClient.Wechat.OpenAI { @@ -35,10 +35,10 @@ namespace SKIT.FlurlHttpClient.Wechat.OpenAI try { - if (!Utilities.WxBizMsgCryptor.TryParseXml(callbackXml, out string? encryptedXml)) + if (!Utilities.WechatEventDataCryptor.TryParseXml(callbackXml, out string? encryptedXml)) throw new Exceptions.WechatOpenAIEventSerializationException("Encrypt event failed, because of empty encrypted data."); - callbackXml = Utilities.WxBizMsgCryptor.AESDecrypt(cipherText: encryptedXml!, encodingAESKey: client.Credentials.EncodingAESKey!, out _); + callbackXml = Utilities.WechatEventDataCryptor.AESDecrypt(cipherText: encryptedXml!, encodingAESKey: client.Credentials.EncodingAESKey!, out _); return Utilities.XmlUtility.Deserialize(callbackXml); } catch (WechatOpenAIException) @@ -104,13 +104,13 @@ namespace SKIT.FlurlHttpClient.Wechat.OpenAI try { - string cipher = Utilities.WxBizMsgCryptor.AESEncrypt( + string cipher = Utilities.WechatEventDataCryptor.AESEncrypt( plainText: xml, encodingAESKey: client.Credentials.EncodingAESKey!, appId: client.Credentials.AppId! ); - xml = Utilities.WxBizMsgCryptor.WrapXml(sToken: client.Credentials.Token!, sMsgEncrypt: cipher); + xml = Utilities.WechatEventDataCryptor.WrapXml(sToken: client.Credentials.Token!, sMsgEncrypt: cipher); } catch (Exception ex) { diff --git a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Extensions/Platform/WechatOpenAIPlatformClientExecuteMpExtensions.cs b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Extensions/Platform/WechatOpenAIPlatformClientExecuteMpExtensions.cs index 6050e6e2..6e1377e1 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Extensions/Platform/WechatOpenAIPlatformClientExecuteMpExtensions.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Extensions/Platform/WechatOpenAIPlatformClientExecuteMpExtensions.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Net.Http; using System.Net.Http.Headers; using System.Text; @@ -112,7 +112,7 @@ namespace SKIT.FlurlHttpClient.Wechat.OpenAI using var fileContent = new ByteArrayContent(request.FileBytes ?? Array.Empty()); using var paramContent = new StringContent( - Utilities.WxBizMsgCryptor.AESEncrypt( + Utilities.WechatEventDataCryptor.AESEncrypt( plainText: Utilities.XmlUtility.Serialize(request), encodingAESKey: client.Credentials.EncodingAESKey!, appId: client.Credentials.AppId! diff --git a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Properties/AssemblyInfo.cs b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Properties/AssemblyInfo.cs index 813c0f46..a4d82e0e 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Properties/AssemblyInfo.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Properties/AssemblyInfo.cs @@ -1,3 +1,3 @@ using System.Runtime.CompilerServices; -[assembly: InternalsVisibleTo("SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests")] \ No newline at end of file +[assembly: InternalsVisibleTo("SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests")] diff --git a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/README.md b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/README.md index 641992a4..3d3e7600 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/README.md +++ b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/README.md @@ -24,4 +24,4 @@ ### 【更新日志】 -[点此查看](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/blob/main/CHANGELOG.md)。 \ No newline at end of file +[点此查看](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/blob/main/CHANGELOG.md)。 diff --git a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/SKIT.FlurlHttpClient.Wechat.OpenAI.csproj b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/SKIT.FlurlHttpClient.Wechat.OpenAI.csproj index d0fad3a1..7f0dc67e 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/SKIT.FlurlHttpClient.Wechat.OpenAI.csproj +++ b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/SKIT.FlurlHttpClient.Wechat.OpenAI.csproj @@ -40,7 +40,7 @@ - + diff --git a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/Internal/JWTUtility.cs b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/Internal/JWTUtility.cs index 3e7495b5..801eea45 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/Internal/JWTUtility.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/Internal/JWTUtility.cs @@ -1,4 +1,4 @@ -using System; +using System; using JWT; using JWT.Algorithms; using JWT.Serializers; @@ -10,7 +10,9 @@ namespace SKIT.FlurlHttpClient.Wechat.OpenAI.Utilities { private static readonly Lazy _encoder = new Lazy(() => { +#pragma warning disable CS0618 IJwtAlgorithm algorithm = new HMACSHA256Algorithm(); +#pragma warning restore CS0618 IJsonSerializer serializer = new JsonNetSerializer(new JsonSerializer() { NullValueHandling = NullValueHandling.Ignore }); IBase64UrlEncoder urlEncoder = new JwtBase64UrlEncoder(); IJwtEncoder encoder = new JwtEncoder(algorithm, serializer, urlEncoder); diff --git a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/Internal/JwtUtility.cs b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/Internal/JwtUtility.cs index 3e7495b5..801eea45 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/Internal/JwtUtility.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/Internal/JwtUtility.cs @@ -1,4 +1,4 @@ -using System; +using System; using JWT; using JWT.Algorithms; using JWT.Serializers; @@ -10,7 +10,9 @@ namespace SKIT.FlurlHttpClient.Wechat.OpenAI.Utilities { private static readonly Lazy _encoder = new Lazy(() => { +#pragma warning disable CS0618 IJwtAlgorithm algorithm = new HMACSHA256Algorithm(); +#pragma warning restore CS0618 IJsonSerializer serializer = new JsonNetSerializer(new JsonSerializer() { NullValueHandling = NullValueHandling.Ignore }); IBase64UrlEncoder urlEncoder = new JwtBase64UrlEncoder(); IJwtEncoder encoder = new JwtEncoder(algorithm, serializer, urlEncoder); diff --git a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/WxBizMsgCryptor.cs b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/Internal/WechatEventDataCryptor.cs similarity index 99% rename from src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/WxBizMsgCryptor.cs rename to src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/Internal/WechatEventDataCryptor.cs index a51eac06..4308ad71 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/WxBizMsgCryptor.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/Utilities/Internal/WechatEventDataCryptor.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.IO; using System.Linq; @@ -10,7 +10,7 @@ using System.Xml; namespace SKIT.FlurlHttpClient.Wechat.OpenAI.Utilities { - public static class WxBizMsgCryptor + internal static class WechatEventDataCryptor { private const int AES_KEY_SIZE = 256; private const int AES_BLOCK_SIZE = 128; diff --git a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/WechatOpenAIPlatformClient.cs b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/WechatOpenAIPlatformClient.cs index 2cbfdb47..48fdfade 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/WechatOpenAIPlatformClient.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/WechatOpenAIPlatformClient.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Net.Http; using System.Threading; using System.Threading.Tasks; @@ -103,7 +103,7 @@ namespace SKIT.FlurlHttpClient.Wechat.OpenAI if (data is WechatOpenAIPlatformRequest.Serialization.IEncryptedXmlable) { string plainXml = Utilities.XmlUtility.Serialize(data); - string encryptedXml = Utilities.WxBizMsgCryptor.AESEncrypt(plainText: plainXml, encodingAESKey: Credentials.EncodingAESKey!, appId: Credentials.AppId!); + string encryptedXml = Utilities.WechatEventDataCryptor.AESEncrypt(plainText: plainXml, encodingAESKey: Credentials.EncodingAESKey!, appId: Credentials.AppId!); data = new { encrypt = encryptedXml }; } diff --git a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/WechatOpenAIPlatformResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/WechatOpenAIPlatformResponse.cs index 8d878c7b..c27a7606 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/WechatOpenAIPlatformResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/WechatOpenAIPlatformResponse.cs @@ -8,17 +8,17 @@ namespace SKIT.FlurlHttpClient.Wechat.OpenAI public abstract class WechatOpenAIPlatformResponse : ICommonResponse { /// - /// + /// /// int ICommonResponse.RawStatus { get; set; } /// - /// + /// /// IDictionary ICommonResponse.RawHeaders { get; set; } = default!; /// - /// + /// /// byte[] ICommonResponse.RawBytes { get; set; } = default!; diff --git a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/WechatOpenAIThirdPartyResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/WechatOpenAIThirdPartyResponse.cs index 188ede04..e0f8895d 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.OpenAI/WechatOpenAIThirdPartyResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.OpenAI/WechatOpenAIThirdPartyResponse.cs @@ -8,17 +8,17 @@ namespace SKIT.FlurlHttpClient.Wechat.OpenAI public abstract class WechatOpenAIThirdPartyResponse : ICommonResponse { /// - /// + /// /// int ICommonResponse.RawStatus { get; set; } /// - /// + /// /// IDictionary ICommonResponse.RawHeaders { get; set; } = default!; /// - /// + /// /// byte[] ICommonResponse.RawBytes { get; set; } = default!; diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/Extensions/WechatTenpayClientExecuteFraudExtensions.cs b/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/Extensions/WechatTenpayClientExecuteFraudExtensions.cs index 688bf916..cf1beff0 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/Extensions/WechatTenpayClientExecuteFraudExtensions.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/Extensions/WechatTenpayClientExecuteFraudExtensions.cs @@ -2,7 +2,6 @@ using System.Net.Http; using System.Threading; using System.Threading.Tasks; -using Flurl; using Flurl.Http; namespace SKIT.FlurlHttpClient.Wechat.TenpayV2 diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/Properties/AssemblyInfo.cs b/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/Properties/AssemblyInfo.cs index f51506be..96b5bd5b 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/Properties/AssemblyInfo.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/Properties/AssemblyInfo.cs @@ -1,3 +1,3 @@ using System.Runtime.CompilerServices; -[assembly: InternalsVisibleTo("SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests")] \ No newline at end of file +[assembly: InternalsVisibleTo("SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests")] diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/README.md b/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/README.md index f73f6911..2dd512a9 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/README.md +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/README.md @@ -26,4 +26,4 @@ ### 【更新日志】 -[点此查看](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/blob/main/CHANGELOG.md)。 \ No newline at end of file +[点此查看](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/blob/main/CHANGELOG.md)。 diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/SKIT.FlurlHttpClient.Wechat.TenpayV2.csproj b/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/SKIT.FlurlHttpClient.Wechat.TenpayV2.csproj index 09cb2512..534b28d4 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/SKIT.FlurlHttpClient.Wechat.TenpayV2.csproj +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/SKIT.FlurlHttpClient.Wechat.TenpayV2.csproj @@ -44,4 +44,4 @@ - \ No newline at end of file + diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/WechatTenpayResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/WechatTenpayResponse.cs index 92ddd62c..f0f03ce2 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/WechatTenpayResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV2/WechatTenpayResponse.cs @@ -8,17 +8,17 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV2 public abstract class WechatTenpayResponse : ICommonResponse { /// - /// + /// /// int ICommonResponse.RawStatus { get; set; } /// - /// + /// /// IDictionary ICommonResponse.RawHeaders { get; set; } = default!; /// - /// + /// /// byte[] ICommonResponse.RawBytes { get; set; } = default!; diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Extensions/WechatTenpayClientExecuteMarketingBankExtensions.cs b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Extensions/WechatTenpayClientExecuteMarketingBankExtensions.cs index 0712fb99..ea073c18 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Extensions/WechatTenpayClientExecuteMarketingBankExtensions.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Extensions/WechatTenpayClientExecuteMarketingBankExtensions.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Net.Http; using System.Threading; using System.Threading.Tasks; @@ -37,7 +37,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3 IFlurlRequest flurlReq = client .CreateRequest(request, HttpMethod.Post, "marketing", "bank", "packages", request.PackageId, "tasks"); - using var httpContent = Utilities.FileHttpContentBuilder.Build(fileName: request.FileName, fileBytes: request.FileBytes, fileContentType: request.FileContentType, fileMetaJson: client.JsonSerializer.Serialize(request)); + using var httpContent = Utilities.FileHttpContentBuilder.Build(fileName: request.FileName, fileBytes: request.FileBytes!, fileContentType: request.FileContentType, fileMetaJson: client.JsonSerializer.Serialize(request)); return await client.SendRequestAsync(flurlReq, httpContent: httpContent, cancellationToken: cancellationToken); } } diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Properties/AssemblyInfo.cs b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Properties/AssemblyInfo.cs index 453ec1b1..44b28d77 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Properties/AssemblyInfo.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Properties/AssemblyInfo.cs @@ -1,3 +1,3 @@ using System.Runtime.CompilerServices; -[assembly: InternalsVisibleTo("SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests")] \ No newline at end of file +[assembly: InternalsVisibleTo("SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests")] diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/README.md b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/README.md index 5c643e29..84a6b7d3 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/README.md +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/README.md @@ -24,4 +24,4 @@ ### 【更新日志】 -[点此查看](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/blob/main/CHANGELOG.md)。 \ No newline at end of file +[点此查看](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/blob/main/CHANGELOG.md)。 diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/SKIT.FlurlHttpClient.Wechat.TenpayV3.csproj b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/SKIT.FlurlHttpClient.Wechat.TenpayV3.csproj index b2b2393a..a81e1057 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/SKIT.FlurlHttpClient.Wechat.TenpayV3.csproj +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/SKIT.FlurlHttpClient.Wechat.TenpayV3.csproj @@ -45,4 +45,4 @@ - \ No newline at end of file + diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Utilities/Internal/ReflectionUtility.cs b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Utilities/Internal/ReflectionUtility.cs index 08cc8823..8e562a22 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Utilities/Internal/ReflectionUtility.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Utilities/Internal/ReflectionUtility.cs @@ -98,7 +98,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Utilities { InnerReplacePropertyStringValue(ref element, replacement); //if (!array.IsReadOnly) - //{ + //{ // array.SetValue(element, i); //} } diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/WechatTenpayResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/WechatTenpayResponse.cs index 229386f8..36d7e8cc 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/WechatTenpayResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/WechatTenpayResponse.cs @@ -9,17 +9,17 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3 public abstract class WechatTenpayResponse : ICommonResponse { /// - /// + /// /// int ICommonResponse.RawStatus { get; set; } /// - /// + /// /// IDictionary ICommonResponse.RawHeaders { get; set; } = default!; /// - /// + /// /// byte[] ICommonResponse.RawBytes { get; set; } = default!; diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinExmailExtensions.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinExmailExtensions.cs index 25f37d38..d3ac0ec2 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinExmailExtensions.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinExmailExtensions.cs @@ -29,7 +29,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } - + /// /// 异步调用 [POST] /cgi-bin/exmail/group/update 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95510 @@ -49,7 +49,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } - + /// /// 异步调用 [POST] /cgi-bin/exmail/group/delete 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95510 @@ -69,7 +69,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } - + /// /// 异步调用 [GET] /cgi-bin/exmail/group/search 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95510 @@ -93,7 +93,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } - + /// /// 异步调用 [GET] /cgi-bin/exmail/group/get 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95510 @@ -136,7 +136,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } - + /// /// 异步调用 [POST] /cgi-bin/exmail/publicmail/update 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95511 @@ -156,7 +156,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } - + /// /// 异步调用 [POST] /cgi-bin/exmail/publicmail/delete 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95511 @@ -176,7 +176,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } - + /// /// 异步调用 [GET] /cgi-bin/exmail/publicmail/search 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95510 @@ -200,7 +200,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } - + /// /// 异步调用 [POST] /cgi-bin/exmail/publicmail/get 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95510 @@ -221,7 +221,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } #endregion - + #region Account /// /// 异步调用 [POST] /cgi-bin/exmail/account/act_email 接口。 @@ -243,7 +243,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } #endregion - + #region UserOption /// /// 异步调用 [POST] /cgi-bin/exmail/useroption/get 接口。 @@ -264,7 +264,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } - + /// /// 异步调用 [POST] /cgi-bin/exmail/useroption/update 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95513 diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinKfExtensions.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinKfExtensions.cs index 67d357ed..4dc37d29 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinKfExtensions.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinKfExtensions.cs @@ -374,7 +374,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } - + /// /// 异步调用 [GET] /cgi-bin/kf/get_corp_qualification 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95153 @@ -394,7 +394,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } - + /// /// 异步调用 [POST] /cgi-bin/kf/get_corp_statistic 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95489 @@ -414,7 +414,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } - + /// /// 异步调用 [POST] /cgi-bin/kf/get_servicer_statistic 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95490 diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinReportExtensions.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinReportExtensions.cs index 697ff4fc..6cbe1da1 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinReportExtensions.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Extensions/WechatWorkClientExecuteCgibinReportExtensions.cs @@ -436,7 +436,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, data: request, cancellationToken: cancellationToken); } #endregion - + #region SiteCode /// /// 异步调用 [POST] /cgi-bin/report/sitecode/list 接口。 @@ -457,7 +457,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, cancellationToken: cancellationToken); } - + /// /// 异步调用 [POST] /cgi-bin/report/sitecode/get_site_report_info 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95461 @@ -477,7 +477,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work return await client.SendRequestWithJsonAsync(flurlReq, cancellationToken: cancellationToken); } - + /// /// 异步调用 [POST] /cgi-bin/report/sitecode/get_report_answer 接口。 /// REF: https://developer.work.weixin.qq.com/document/path/95464 diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExmail/PublicMail/CgibinExmailPublicMailGetResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExmail/PublicMail/CgibinExmailPublicMailGetResponse.cs index 2e139fba..d803409a 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExmail/PublicMail/CgibinExmailPublicMailGetResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExmail/PublicMail/CgibinExmailPublicMailGetResponse.cs @@ -73,7 +73,7 @@ public Types.DepartmentIdList? AllowDepartmentIdList { get; set; } } } - + /// /// 获取或设置业务邮箱列表。 /// diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExmail/UserOption/CgibinExmailUserOptionUpdateRequest.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExmail/UserOption/CgibinExmailUserOptionUpdateRequest.cs index 6f0d0a5d..efc75ebe 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExmail/UserOption/CgibinExmailUserOptionUpdateRequest.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExmail/UserOption/CgibinExmailUserOptionUpdateRequest.cs @@ -43,7 +43,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.Models [Newtonsoft.Json.JsonProperty("userid")] [System.Text.Json.Serialization.JsonPropertyName("userid")] public string? UserId { get; set; } - + /// /// 获取或设置功能设置列表。 /// diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleListResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleListResponse.cs index 9b40a039..2f22057c 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleListResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleListResponse.cs @@ -40,4 +40,4 @@ [System.Text.Json.Serialization.JsonPropertyName("rule_list")] public Types.Rule[] RuleList { get; set; } = default!; } -} \ No newline at end of file +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleResponse.cs index 04a6533a..2f413e3e 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleResponse.cs @@ -76,4 +76,4 @@ [System.Text.Json.Serialization.JsonPropertyName("rule")] public Types.Rule Rule { get; set; } = default!; } -} \ No newline at end of file +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumListResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumListResponse.cs index 43031272..680c8c44 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumListResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumListResponse.cs @@ -93,4 +93,4 @@ [System.Text.Json.Serialization.JsonPropertyName("product_list")] public Types.Product[] ProductList { get; set; } = default!; } -} \ No newline at end of file +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumResponse.cs index 196b59a5..8670dd85 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumResponse.cs @@ -25,4 +25,4 @@ [System.Text.Json.Serialization.JsonPropertyName("product")] public Types.Product Product { get; set; } = default!; } -} \ No newline at end of file +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinOA/Approval/CgibinOAGetApprovalDetailResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinOA/Approval/CgibinOAGetApprovalDetailResponse.cs index 4060111e..68a51761 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinOA/Approval/CgibinOAGetApprovalDetailResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinOA/Approval/CgibinOAGetApprovalDetailResponse.cs @@ -259,7 +259,7 @@ /// [Newtonsoft.Json.JsonProperty("s_timestamp")] [System.Text.Json.Serialization.JsonPropertyName("s_timestamp")] - [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.TextualNullableLongConverter))] + [System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.TextualNullableLongConverter))] public long? Timestamp { get; set; } } diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinUser/CgibinUserGetResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinUser/CgibinUserGetResponse.cs index a8e84b9b..f27cbb05 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinUser/CgibinUserGetResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/Models/CgibinUser/CgibinUserGetResponse.cs @@ -361,4 +361,4 @@ [System.Text.Json.Serialization.JsonPropertyName("external_profile")] public Types.ExternalProfile? ExternalProfile { get; set; } } -} \ No newline at end of file +} diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/README.md b/src/SKIT.FlurlHttpClient.Wechat.Work/README.md index 02b6d93b..347a97ef 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/README.md +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/README.md @@ -23,4 +23,4 @@ ### 【更新日志】 -[点此查看](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/blob/main/CHANGELOG.md)。 \ No newline at end of file +[点此查看](https://github.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat/blob/main/CHANGELOG.md)。 diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/SKIT.FlurlHttpClient.Wechat.Work.csproj b/src/SKIT.FlurlHttpClient.Wechat.Work/SKIT.FlurlHttpClient.Wechat.Work.csproj index c1aeb6c1..6c1e7543 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/SKIT.FlurlHttpClient.Wechat.Work.csproj +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/SKIT.FlurlHttpClient.Wechat.Work.csproj @@ -43,4 +43,4 @@ - \ No newline at end of file + diff --git a/src/SKIT.FlurlHttpClient.Wechat.Work/WechatWorkResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.Work/WechatWorkResponse.cs index a2b22ee3..1e457fd5 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.Work/WechatWorkResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.Work/WechatWorkResponse.cs @@ -8,17 +8,17 @@ namespace SKIT.FlurlHttpClient.Wechat.Work public abstract class WechatWorkResponse : ICommonResponse { /// - /// + /// /// int ICommonResponse.RawStatus { get; set; } /// - /// + /// /// IDictionary ICommonResponse.RawHeaders { get; set; } = default!; /// - /// + /// /// byte[] ICommonResponse.RawBytes { get; set; } = default!; diff --git a/test/NuGet.config b/test/NuGet.config index bc884927..485c4cda 100644 --- a/test/NuGet.config +++ b/test/NuGet.config @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/.gitignore b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/.gitignore index 63666fbf..47961c7e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/.gitignore +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/.gitignore @@ -1 +1 @@ -appsettings.local.json \ No newline at end of file +appsettings.local.json diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesAddRequest.json index 05d683d8..2a8192bc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesAddRequest.json @@ -4,10 +4,10 @@ "adcreative_template_id": 263, "adcreative_elements": { "title": "微信,是一个生活方式!", - "image_list": [ "" ], + "image_list": [""], "link_name_type": "GET_COUPONS" }, "destination_url": "https://weixin.qq.com", - "site_set": [ "SITE_SET_WECHAT" ], + "site_set": ["SITE_SET_WECHAT"], "product_type": "PRODUCT_TYPE_LINK_WECHAT" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesGetResponse.json index faf64490..23203730 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesGetResponse.json @@ -10,10 +10,10 @@ "adcreative_template_id": 263, "adcreative_elements": { "title": "微信,是一个生活方式!", - "image_list": [ "51959:7ef00101f6284a318ccf5" ] + "image_list": ["51959:7ef00101f6284a318ccf5"] }, "destination_url": "https://weixin.qq.com", - "site_set": [ "SITE_SET_WECHAT" ], + "site_set": ["SITE_SET_WECHAT"], "product_type": "PRODUCT_TYPE_LINK_WECHAT", "product_refs_id": "", "created_time": 1013554516, @@ -27,4 +27,4 @@ "page": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesUpdateRequest.json index 32256692..c0475cb9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesUpdateRequest.json @@ -1,4 +1,4 @@ { "adcreative_id": 12345, "adcreative_name": "朋友圈广告创意1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesUpdateResponse.json index 45dd9be3..417d4329 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdCreatives/AdCreativesUpdateResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "errmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsAddRequest.json index 58be94c9..7057a386 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsAddRequest.json @@ -1,7 +1,7 @@ { "campaign_id": 12345, "adgroup_name": "朋友圈广告组测试", - "site_set": [ "SITE_SET_WECHAT" ], + "site_set": ["SITE_SET_WECHAT"], "product_type": "PRODUCT_TYPE_LINK_WECHAT", "begin_date": "2017-06-25", "end_date": "2017-07-01", @@ -10,13 +10,13 @@ "billing_event": "BILLINGEVENT_IMPRESSION", "daily_budget": 1000000, "targeting": { - "gender": [ "MALE" ], - "age": [ "18~30" ], + "gender": ["MALE"], + "age": ["18~30"], "geo_location": { - "regions": [ 110000, 310000 ], - "location_types": [ "LIVE_IN" ] + "regions": [110000, 310000], + "location_types": ["LIVE_IN"] } }, "time_series": "010100100110100010101010010101010101010100101010101010010101010101001010101010100101010101010111110010101001010110110100110001011001010100101010101010110011001010101010100101100101101110101010101010100110100110010100110101110111101110110110110110110110101101101101110110011101011101101011101101101101001010110111010111011010110110111011", "configured_status": "AD_STATUS_NORMAL" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsAddResponse.json index 9a0514e9..468933b1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsAddResponse.json @@ -2,6 +2,6 @@ "errcode": 0, "errmsg": "", "data": { - "adgroup_id": 123456 + "adgroup_id": 123456 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsDeleteRequest.json index 71d376d5..46c9c757 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsDeleteRequest.json @@ -1,3 +1,3 @@ { - "adgroup_id": 12345 -} \ No newline at end of file + "adgroup_id": 12345 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsDeleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsDeleteResponse.json index 45dd9be3..417d4329 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsDeleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsDeleteResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "errmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsGetResponse.json index d92a8dc0..557e6a22 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsGetResponse.json @@ -7,7 +7,7 @@ "campaign_id": 23456, "adgroup_id": 123456, "adgroup_name": "朋友圈广告组测试1", - "site_set": [ "SITE_SET_WECHAT" ], + "site_set": ["SITE_SET_WECHAT"], "optimization_goal": "OPTIMIZATIONGOAL_IMPRESSION", "billing_event": "BILLINGEVENT_IMPRESSION", "bid_amount": 20000, @@ -16,11 +16,11 @@ "product_refs_id": "", "targeting": { "geo_location": { - "regions": [ 110000, 310000 ], - "location_types": [ "LIVE_IN" ] + "regions": [110000, 310000], + "location_types": ["LIVE_IN"] }, - "age": [ "20~30" ], - "gender": [ "FEMALE" ] + "age": ["20~30"], + "gender": ["FEMALE"] }, "begin_date": "2017-06-11", "end_date": "2017-06-13", @@ -39,4 +39,4 @@ "page": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsUpdateRequest.json index 3d31a00d..9fa1342d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsUpdateRequest.json @@ -1,4 +1,4 @@ { "adgroup_id": 12345, "adgroup_name": "朋友圈广告组测试1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsUpdateResponse.json index 45dd9be3..417d4329 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AdGroups/AdGroupsUpdateResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "errmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsAddRequest.json index c72b5558..d026f00c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsAddRequest.json @@ -2,4 +2,4 @@ "adgroup_id": 12345, "adcreative_id": 12345, "ad_name": "朋友圈广告测试" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsAddResponse.json index 5426789c..a1a3cf6d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsAddResponse.json @@ -2,6 +2,6 @@ "errcode": 0, "errmsg": "", "data": { - "ad_id": 456789 + "ad_id": 456789 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsDeleteRequest.json index b233c507..19b7d75c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsDeleteRequest.json @@ -1,3 +1,3 @@ { "ad_id": 12345 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsDeleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsDeleteResponse.json index 45dd9be3..417d4329 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsDeleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsDeleteResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "errmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsGetResponse.json index 135ecd79..29b259c9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsGetResponse.json @@ -15,10 +15,10 @@ "adcreative_template_id": 263, "adcreative_elements": { "title": "微信,是一个生活方式!", - "image_list": [ "51959:7ef00101f6284a318ccf5" ] + "image_list": ["51959:7ef00101f6284a318ccf5"] }, "destination_url": "https://weixin.qq.com", - "site_set": [ "SITE_SET_WECHAT" ], + "site_set": ["SITE_SET_WECHAT"], "product_type": "PRODUCT_TYPE_LINK_WECHAT", "product_refs_id": "", "created_time": 1013554516, @@ -38,4 +38,4 @@ "page": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsUpdateRequest.json index 6a122d62..4eb80d42 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsUpdateRequest.json @@ -1,4 +1,4 @@ { "ad_id": 12345, "ad_name": "朋友圈广告测试1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsUpdateResponse.json index 45dd9be3..417d4329 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Ads/AdsUpdateResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "errmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserAddRequest.json index 7dda1f2f..75c1a1d8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserAddRequest.json @@ -3,4 +3,4 @@ "contact_person": "test", "contact_person_telephone": "13900000000", "business_type": "OFFLINE" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserAddResponse.json index 96b77b51..7f8b36bd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserAddResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "errmsg": "succeed" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserGetResponse.json index 2a0e8c5d..37a6c966 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserGetResponse.json @@ -10,4 +10,4 @@ "business_type": "OFFLINE", "business_content": "" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserUpdateRequest.json index 7dda1f2f..75c1a1d8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserUpdateRequest.json @@ -3,4 +3,4 @@ "contact_person": "test", "contact_person_telephone": "13900000000", "business_type": "OFFLINE" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserUpdateResponse.json index 96b77b51..7f8b36bd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Advertiser/AdvertiserUpdateResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "errmsg": "succeed" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksAddRequest.json index 09091fb4..689698c3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksAddRequest.json @@ -6,4 +6,4 @@ "date": "2019-03-24" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksAddResponse.json index 12041d4c..6d534748 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksAddResponse.json @@ -4,4 +4,4 @@ "data": { "task_id": 12345 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksGetResponse.json index 7c527b00..48d20968 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/AsyncTasksGetResponse.json @@ -30,4 +30,4 @@ "total_page": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/Files/AsyncTaskFilesGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/Files/AsyncTaskFilesGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/Files/AsyncTaskFilesGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/Files/AsyncTaskFilesGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/Files/AsyncTaskFilesGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/Files/AsyncTaskFilesGetResponse.json index 45dd9be3..417d4329 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/Files/AsyncTaskFilesGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/AsyncTasks/Files/AsyncTaskFilesGetResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "errmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsAddRequest.json index 621e3213..488ad7bf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsAddRequest.json @@ -3,4 +3,4 @@ "campaign_type": "CAMPAIGN_TYPE_WECHAT_MOMENTS", "product_type": "PRODUCT_TYPE_LINK_WECHAT", "configured_status": "AD_STATUS_SUSPEND" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsAddResponse.json index d186fac8..800d5ea8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsAddResponse.json @@ -4,4 +4,4 @@ "data": { "campaign_id": 23456 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsUpdateRequest.json index 681d715b..9686a20c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsUpdateRequest.json @@ -2,4 +2,4 @@ "campaign_name": "朋友圈推广计划测试1", "configured_status": "AD_STATUS_SUSPEND", "daily_budget": 50000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsUpdateResponse.json index 45dd9be3..417d4329 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Campaigns/CampaignsUpdateResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "errmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CreditBills/CreditBillsGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CreditBills/CreditBillsGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CreditBills/CreditBillsGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CreditBills/CreditBillsGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CreditBills/CreditBillsGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CreditBills/CreditBillsGetResponse.json index 207040e1..41bc3004 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CreditBills/CreditBillsGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CreditBills/CreditBillsGetResponse.json @@ -19,4 +19,4 @@ "total_page": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesAddRequest.json index aae5a2cc..2ebd9a26 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesAddRequest.json @@ -2,4 +2,4 @@ "name": "客户人群", "type": "CUSTOMER_FILE", "description": "客户人群描述" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesAddResponse.json index 30ea99b3..1729631b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesAddResponse.json @@ -4,4 +4,4 @@ "data": { "audience_id": "23213219" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesGetResponse.json index c590868c..0b35211a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesGetResponse.json @@ -22,4 +22,4 @@ "total_page": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesUpdateRequest.json index ee806820..e3be8220 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesUpdateRequest.json @@ -2,4 +2,4 @@ "audience_id": 11232, "name": "客户人群", "description": "客户人群描述" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesUpdateResponse.json index 45dd9be3..417d4329 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/CustomAudiencesUpdateResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "errmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesAddRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesAddRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesAddResponse.json index 164a7c55..16ac94d7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesAddResponse.json @@ -4,4 +4,4 @@ "data": { "custom_audience_file_id": 12345 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesGetResponse.json index a2602bb1..f40b264d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/CustomAudiences/Files/CustomAudienceFilesGetResponse.json @@ -25,4 +25,4 @@ "total_page": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Estimation/EstimationGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Estimation/EstimationGetRequest.json index 12c68106..5491073f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Estimation/EstimationGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Estimation/EstimationGetRequest.json @@ -2,10 +2,10 @@ "campaign_type": "AMPAIGN_TYPE_WECHAT_MOMENTS", "targeting": { "geo_location": { - "regions": [ 310000 ], - "location_types": [ "LIVE_IN" ] + "regions": [310000], + "location_types": ["LIVE_IN"] }, - "age": [ "20~25" ], - "gender": [ "FEMALE" ] + "age": ["20~25"], + "gender": ["FEMALE"] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Estimation/EstimationGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Estimation/EstimationGetResponse.json index 2cc34fb9..0f79ed6b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Estimation/EstimationGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Estimation/EstimationGetResponse.json @@ -5,4 +5,4 @@ "approximate_count": 1023288, "impression": 102311 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundStatementsDetailedGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundStatementsDetailedGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundStatementsDetailedGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundStatementsDetailedGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundStatementsDetailedGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundStatementsDetailedGetResponse.json index 5138f85a..81ac212d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundStatementsDetailedGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundStatementsDetailedGetResponse.json @@ -25,4 +25,4 @@ "total_page": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundTransferAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundTransferAddRequest.json index 3761b5d4..791c5c90 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundTransferAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundTransferAddRequest.json @@ -3,4 +3,4 @@ "amount": 120000, "external_bill_no": "spa-123456", "memo": "从子客户账户转账" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundTransferAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundTransferAddResponse.json index 0ab4ceba..b676d8c4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundTransferAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundTransferAddResponse.json @@ -8,4 +8,4 @@ "time": 1459924690, "is_repeated": false } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundsGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundsGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundsGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundsGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundsGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundsGetResponse.json index 15d91e95..52945965 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundsGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Funds/FundsGetResponse.json @@ -22,4 +22,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesAddRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesAddRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesAddResponse.json index b5f9b19d..c686a82d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesAddResponse.json @@ -10,4 +10,4 @@ "signature": "4f71a5b6e71c6abf67a2b16c0b9017a8", "preview_url": "https://example.com/example.jpg" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesGetResponse.json index 790856b5..fc9ed1cd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Images/ImagesGetResponse.json @@ -20,4 +20,4 @@ "page": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsAddResponse.json index 2ebb5514..f7be9145 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsAddResponse.json @@ -4,4 +4,4 @@ "data": { "qualification_id": 12345 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsDeleteRequest.json index 9e8b66af..cc17ae80 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsDeleteRequest.json @@ -1,3 +1,3 @@ { - "qualification_id": 12345 -} \ No newline at end of file + "qualification_id": 12345 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsDeleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsDeleteResponse.json index 96b77b51..7f8b36bd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsDeleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsDeleteResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "errmsg": "succeed" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsGetResponse.json index 69988307..d0fab7b5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Qualifications/QualificationsGetResponse.json @@ -20,4 +20,4 @@ "page": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/DailyReportsGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/DailyReportsGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/DailyReportsGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/DailyReportsGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/DailyReportsGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/DailyReportsGetResponse.json index 7f632234..c125d0bc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/DailyReportsGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/DailyReportsGetResponse.json @@ -27,4 +27,4 @@ "page": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/RealtimeCostGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/RealtimeCostGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/RealtimeCostGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/RealtimeCostGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/RealtimeCostGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/RealtimeCostGetResponse.json index 0ace523f..3db6d9e2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/RealtimeCostGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/Reports/RealtimeCostGetResponse.json @@ -16,4 +16,4 @@ "page": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentAddRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentAddRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentAddResponse.json index 96b77b51..7f8b36bd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentAddResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "errmsg": "succeed" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentGetResponse.json index eb918fd5..a47fb2da 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/SpEntrustment/SpEntrustmentGetResponse.json @@ -4,4 +4,4 @@ "data": { "entrusted": false } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/TargetingTags/TargetingTagsGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/TargetingTags/TargetingTagsGetRequest.json index 22fdca1b..f1177889 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/TargetingTags/TargetingTagsGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/TargetingTags/TargetingTagsGetRequest.json @@ -1 +1 @@ -{} \ No newline at end of file +{} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/TargetingTags/TargetingTagsGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/TargetingTags/TargetingTagsGetResponse.json index 50dea12a..016177fd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/TargetingTags/TargetingTagsGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/ModelSamples/TargetingTags/TargetingTagsGetResponse.json @@ -12,4 +12,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/TestConfigs.cs b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/TestConfigs.cs index 38ce046e..28e81986 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/TestConfigs.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/TestConfigs.cs @@ -9,7 +9,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Ads.UnitTests static TestConfigs() { // NOTICE: 请在项目根目录下按照 appsettings.json 的格式新建 appsettings.local.json 填入测试参数。 - // WARNING: 请在 DEBUG 模式下运行测试用例。 + // WARNING: 请在 DEBUG 模式下运行测试用例。 // WARNING: 敏感信息请不要提交到 git! try diff --git a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/appsettings.json b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/appsettings.json index 9b53c147..3a91f919 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/appsettings.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Ads.UnitTests/appsettings.json @@ -7,4 +7,4 @@ }, "WorkDirectoryForSdk": "请输入当前 SDK 项目所在的目录完整路径,如 C:\\Project\\src\\SKIT.FlurlHttpClient.Wechat.Ads\\", "WorkDirectoryForTest": "请输入当前测试项目所在的目录完整路径,如 C:\\Project\\test\\SKIT.FlurlHttpClient.Wechat.Ads.UnitTests\\" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/.gitignore b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/.gitignore index 63666fbf..47961c7e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/.gitignore +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/.gitignore @@ -1 +1 @@ -appsettings.local.json \ No newline at end of file +appsettings.local.json diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardMerchantCheckResultEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardMerchantCheckResultEvent.xml index d6eb522f..0a42323a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardMerchantCheckResultEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardMerchantCheckResultEvent.xml @@ -7,4 +7,4 @@ 0 1 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardNotPassCheckEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardNotPassCheckEvent.xml index 810910a4..e8c7daf1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardNotPassCheckEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardNotPassCheckEvent.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardPassCheckEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardPassCheckEvent.xml index ce0abe21..06a9f59e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardPassCheckEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardPassCheckEvent.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardSKURemindEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardSKURemindEvent.xml index 269a18c2..b84b051d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardSKURemindEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CardSKURemindEvent.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CloudInvoiceResultEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CloudInvoiceResultEvent.xml index 2cb7b1b0..160db6cb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CloudInvoiceResultEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/CloudInvoiceResultEvent.xml @@ -8,4 +8,4 @@ 100 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/GiftCardPayDoneEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/GiftCardPayDoneEvent.xml index 17f19922..f2b3ba12 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/GiftCardPayDoneEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/GiftCardPayDoneEvent.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/GiftCardSendToFriendEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/GiftCardSendToFriendEvent.xml index 0eef386c..026ab0a8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/GiftCardSendToFriendEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/GiftCardSendToFriendEvent.xml @@ -8,4 +8,4 @@ true - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/GiftCardUserAcceptEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/GiftCardUserAcceptEvent.xml index 16273c18..aa1125ec 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/GiftCardUserAcceptEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/GiftCardUserAcceptEvent.xml @@ -7,4 +7,4 @@ true - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/OrderStatusFinanceSuccessEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/OrderStatusFinanceSuccessEvent.xml index 0189ecbd..8409a7c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/OrderStatusFinanceSuccessEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/OrderStatusFinanceSuccessEvent.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/SubmitMemberCardUserInfoEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/SubmitMemberCardUserInfoEvent.xml index 7827fd66..af68d88c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/SubmitMemberCardUserInfoEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/SubmitMemberCardUserInfoEvent.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UpdateMemberCardEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UpdateMemberCardEvent.xml index ead3f565..92675750 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UpdateMemberCardEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UpdateMemberCardEvent.xml @@ -8,4 +8,4 @@ 3 0 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserAuthorizeInvoiceEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserAuthorizeInvoiceEvent.xml index 6aecc63a..c08e6c22 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserAuthorizeInvoiceEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserAuthorizeInvoiceEvent.xml @@ -8,4 +8,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserConsumeCardEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserConsumeCardEvent.xml index ab8ed8ec..e6f344e7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserConsumeCardEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserConsumeCardEvent.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserDeleteCardEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserDeleteCardEvent.xml index f4e7b766..7e7c5bbf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserDeleteCardEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserDeleteCardEvent.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserEnterSessionFromCardEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserEnterSessionFromCardEvent.xml index da6d4e58..acbb3183 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserEnterSessionFromCardEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserEnterSessionFromCardEvent.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserGetCardEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserGetCardEvent.xml index b7522d5f..d2b71fe4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserGetCardEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserGetCardEvent.xml @@ -14,4 +14,4 @@ 0 0 o6_bmasdasdsad6_2sgVt7hMZOPfL - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserGiftingCardEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserGiftingCardEvent.xml index a4487263..b0846335 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserGiftingCardEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserGiftingCardEvent.xml @@ -9,4 +9,4 @@ 0 0 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserPayFromPayCellEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserPayFromPayCellEvent.xml index 6c71e414..258b7112 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserPayFromPayCellEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserPayFromPayCellEvent.xml @@ -28,4 +28,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserViewCardEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserViewCardEvent.xml index 73176857..ef0afd1c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserViewCardEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/Card/UserViewCardEvent.xml @@ -7,4 +7,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/CloudInvoiceResultEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/CloudInvoiceResultEvent.xml index 64632518..aeed0ff2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/CloudInvoiceResultEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/CloudInvoiceResultEvent.xml @@ -7,4 +7,4 @@ 100 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/SubmitInvoiceTitleEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/SubmitInvoiceTitleEvent.xml index 11b75ad2..e39881a1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/SubmitInvoiceTitleEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/SubmitInvoiceTitleEvent.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/UpdateInvoiceStatusEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/UpdateInvoiceStatusEvent.xml index 50f3ca2b..2ad9abc7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/UpdateInvoiceStatusEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/UpdateInvoiceStatusEvent.xml @@ -7,4 +7,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/UserAuthorizeInvoiceEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/UserAuthorizeInvoiceEvent.xml index 6aecc63a..c08e6c22 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/UserAuthorizeInvoiceEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/CardInvoice/UserAuthorizeInvoiceEvent.xml @@ -8,4 +8,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/AnnualRenewEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/AnnualRenewEvent.xml index 102d7b0f..576acfbd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/AnnualRenewEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/AnnualRenewEvent.xml @@ -5,4 +5,4 @@ 1442401004 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/NamingVerifyFailEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/NamingVerifyFailEvent.xml index 52e9b5fc..3d69f2e1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/NamingVerifyFailEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/NamingVerifyFailEvent.xml @@ -6,4 +6,4 @@ 1442401061 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/NamingVerifySuccessEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/NamingVerifySuccessEvent.xml index 8896629a..ac9586e3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/NamingVerifySuccessEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/NamingVerifySuccessEvent.xml @@ -5,4 +5,4 @@ 1442401093 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/QualificationVerifyFailEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/QualificationVerifyFailEvent.xml index 8699a2be..7bf1a047 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/QualificationVerifyFailEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/QualificationVerifyFailEvent.xml @@ -6,4 +6,4 @@ 1442401122 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/QualificationVerifySuccessEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/QualificationVerifySuccessEvent.xml index 9169a2db..c70ead4e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/QualificationVerifySuccessEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpAccreditation/QualificationVerifySuccessEvent.xml @@ -5,4 +5,4 @@ 1442401156 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpGuide/GuideQrcodeScanEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpGuide/GuideQrcodeScanEvent.xml index 7d873d1a..845cd386 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpGuide/GuideQrcodeScanEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpGuide/GuideQrcodeScanEvent.xml @@ -11,4 +11,4 @@ 11 ![CDATA[xxx]] - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpJob/FreePublishJobFinishEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpJob/FreePublishJobFinishEvent.xml index fec8690e..c825983d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpJob/FreePublishJobFinishEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpJob/FreePublishJobFinishEvent.xml @@ -20,4 +20,4 @@ 1 2 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpJob/MassSendJobFinishEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpJob/MassSendJobFinishEvent.xml index a1af58ff..c4ec3fb1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpJob/MassSendJobFinishEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpJob/MassSendJobFinishEvent.xml @@ -45,4 +45,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpJob/TemplateSendJobFinishEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpJob/TemplateSendJobFinishEvent.xml index f9f52589..69fcc423 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpJob/TemplateSendJobFinishEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpJob/TemplateSendJobFinishEvent.xml @@ -6,4 +6,4 @@ 200163836 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/ImageMessageEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/ImageMessageEvent.xml index 14ae2e0f..558ca87e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/ImageMessageEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/ImageMessageEvent.xml @@ -6,4 +6,4 @@ 1234567890123456 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/LocationMessageEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/LocationMessageEvent.xml index 04aa6cb8..54253169 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/LocationMessageEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/LocationMessageEvent.xml @@ -8,4 +8,4 @@ 20 1234567890123456 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/ShortVideoMessageEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/ShortVideoMessageEvent.xml index 07fac186..b59b022a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/ShortVideoMessageEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/ShortVideoMessageEvent.xml @@ -6,4 +6,4 @@ 1234567890123456 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/TextMessageEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/TextMessageEvent.xml index d3d4954a..6a1a2e8a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/TextMessageEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/TextMessageEvent.xml @@ -5,4 +5,4 @@ 1234567890123456 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/VideoMessageEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/VideoMessageEvent.xml index fb988034..6d9ec67a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/VideoMessageEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/VideoMessageEvent.xml @@ -6,4 +6,4 @@ 1234567890123456 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/VoiceMessageEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/VoiceMessageEvent.xml index 9e2734fc..68d3438b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/VoiceMessageEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpMessage/VoiceMessageEvent.xml @@ -6,4 +6,4 @@ 1234567890123456 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ClickPushEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ClickPushEvent.xml index 71482b45..16625d2d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ClickPushEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ClickPushEvent.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/LocationPushEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/LocationPushEvent.xml index c0e90e2d..0299ae20 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/LocationPushEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/LocationPushEvent.xml @@ -7,4 +7,4 @@ 23.137466 113.352425 119.385040 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ScanCodePushEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ScanCodePushEvent.xml index f26fad12..8afcc7f6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ScanCodePushEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ScanCodePushEvent.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/SubscribePushEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/SubscribePushEvent.xml index 44d493fb..976dabd6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/SubscribePushEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/SubscribePushEvent.xml @@ -4,4 +4,4 @@ 123456789 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/UnsubscribePushEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/UnsubscribePushEvent.xml index 2dea21fa..5362886b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/UnsubscribePushEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/UnsubscribePushEvent.xml @@ -4,4 +4,4 @@ 123456789 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ViewMiniProgramPushEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ViewMiniProgramPushEvent.xml index a5e655dc..7342b02e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ViewMiniProgramPushEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ViewMiniProgramPushEvent.xml @@ -6,4 +6,4 @@ MENUID - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ViewPushEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ViewPushEvent.xml index 7606f4d5..5c451129 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ViewPushEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpPush/ViewPushEvent.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/ImageMessageReply.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/ImageMessageReply.xml index 82c5213b..0c9c8620 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/ImageMessageReply.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/ImageMessageReply.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/MusicMessageReply.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/MusicMessageReply.xml index 89ba2306..d7fee834 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/MusicMessageReply.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/MusicMessageReply.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/NewsMessageReply.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/NewsMessageReply.xml index 57922ba0..b6253d76 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/NewsMessageReply.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/NewsMessageReply.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/TextMessageReply.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/TextMessageReply.xml index f421f780..7f5e746c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/TextMessageReply.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/TextMessageReply.xml @@ -4,4 +4,4 @@ 12345678 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/TransferCustomerServiceReply.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/TransferCustomerServiceReply.xml index 7e54afb7..1b081e60 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/TransferCustomerServiceReply.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/TransferCustomerServiceReply.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/VideoMessageReply.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/VideoMessageReply.xml index c5ece953..9785cc9d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/VideoMessageReply.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/VideoMessageReply.xml @@ -8,4 +8,4 @@ <![CDATA[title]]> - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/VoiceMessageReply.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/VoiceMessageReply.xml index 7e4e087f..ac6d0905 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/VoiceMessageReply.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpReply/VoiceMessageReply.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpSubscribeMessage/SubscribeMessageChangeEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpSubscribeMessage/SubscribeMessageChangeEvent.xml index de1e3ea8..96089def 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpSubscribeMessage/SubscribeMessageChangeEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpSubscribeMessage/SubscribeMessageChangeEvent.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpSubscribeMessage/SubscribeMessagePopupEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpSubscribeMessage/SubscribeMessagePopupEvent.xml index d0efe165..25ea6ac7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpSubscribeMessage/SubscribeMessagePopupEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpSubscribeMessage/SubscribeMessagePopupEvent.xml @@ -16,4 +16,4 @@ 2 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpSubscribeMessage/SubscribeMessageSentEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpSubscribeMessage/SubscribeMessageSentEvent.xml index 4de67a4d..72fbb113 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpSubscribeMessage/SubscribeMessageSentEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/MpSubscribeMessage/SubscribeMessageSentEvent.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppAuthorizationApplyEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppAuthorizationApplyEvent.xml index 486b7e80..d605a402 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppAuthorizationApplyEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppAuthorizationApplyEvent.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppReuseMerchantIdAppIdAdministratorAuthorizationApplyEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppReuseMerchantIdAppIdAdministratorAuthorizationApplyEvent.xml index f3b9669e..ad3ebb0d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppReuseMerchantIdAppIdAdministratorAuthorizationApplyEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppReuseMerchantIdAppIdAdministratorAuthorizationApplyEvent.xml @@ -10,4 +10,4 @@ 123456 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppReuseMerchantIdMerchantAdministratorAuthorizationApplyEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppReuseMerchantIdMerchantAdministratorAuthorizationApplyEvent.xml index f92fb827..a9937ba6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppReuseMerchantIdMerchantAdministratorAuthorizationApplyEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppReuseMerchantIdMerchantAdministratorAuthorizationApplyEvent.xml @@ -12,4 +12,4 @@ 1 123456 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppVerifyApplyEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppVerifyApplyEvent.xml index 87b6e44c..190a6ba8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppVerifyApplyEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppVerifyApplyEvent.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppVerifyEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppVerifyEvent.xml index 486b7e80..d605a402 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppVerifyEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/BetaAppVerifyEvent.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/ComponentVerifyTicketEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/ComponentVerifyTicketEvent.xml index 2895e209..3fc86906 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/ComponentVerifyTicketEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/ComponentVerifyTicketEvent.xml @@ -3,4 +3,4 @@ 1413192605 component_verify_ticket some_verify_ticket - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/NotifyThirdFastVerifyBetaAppEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/NotifyThirdFastVerifyBetaAppEvent.xml index 1293789f..ae02566a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/NotifyThirdFastVerifyBetaAppEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/NotifyThirdFastVerifyBetaAppEvent.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WeappAuditDelayEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WeappAuditDelayEvent.xml index cf0151bd..baae7f2f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WeappAuditDelayEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WeappAuditDelayEvent.xml @@ -6,4 +6,4 @@ 1488856591 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WeappAuditFailEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WeappAuditFailEvent.xml index cc3eca56..b4bd1c83 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WeappAuditFailEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WeappAuditFailEvent.xml @@ -7,4 +7,4 @@ (1):包含色情因素
2:服务类目"金融业-保险_"与你提交代码审核时设置的功能页面内容不一致:
(1):功能页面设置的部分标签不属于所选的服务类目范围。
(2):功能页面设置的部分标签与该页面内容不相关。
]]>
1488856591 xxx|yyy|zzz - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WeappAuditSuccessEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WeappAuditSuccessEvent.xml index 359fb29d..dfe64414 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WeappAuditSuccessEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WeappAuditSuccessEvent.xml @@ -5,4 +5,4 @@ 1488856741 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WxaAppealRecordEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WxaAppealRecordEvent.xml index defb934d..7ccafbae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WxaAppealRecordEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WxaAppealRecordEvent.xml @@ -32,4 +32,4 @@ zzzz - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WxaCategoryAuditEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WxaCategoryAuditEvent.xml index d85b0433..a11cacac 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WxaCategoryAuditEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WxaCategoryAuditEvent.xml @@ -8,4 +8,4 @@ 1 2 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WxaNicknameAuditEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WxaNicknameAuditEvent.xml index 6224726a..961e03e9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WxaNicknameAuditEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenComponent/WxaNicknameAuditEvent.xml @@ -7,4 +7,4 @@ 2 昵称 驳回原因 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleNewOrderEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleNewOrderEvent.xml index 146fc75b..b7eca4fc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleNewOrderEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleNewOrderEvent.xml @@ -9,4 +9,4 @@ 1234567 abc1234567 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleRefundSuccessEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleRefundSuccessEvent.xml index 14427609..a3381c41 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleRefundSuccessEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleRefundSuccessEvent.xml @@ -8,4 +8,4 @@ 123456 1234567 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleUserCancelEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleUserCancelEvent.xml index 505ba655..f376462c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleUserCancelEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleUserCancelEvent.xml @@ -8,4 +8,4 @@ 123456 1234567 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleWaitMerchantConfirmReceiptEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleWaitMerchantConfirmReceiptEvent.xml index fd769072..23b104ef 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleWaitMerchantConfirmReceiptEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleWaitMerchantConfirmReceiptEvent.xml @@ -8,4 +8,4 @@ 123456 1234567 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleWaitMerchantOfflineRefundEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleWaitMerchantOfflineRefundEvent.xml index f863b4e2..dd527abb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleWaitMerchantOfflineRefundEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/AftersaleWaitMerchantOfflineRefundEvent.xml @@ -8,4 +8,4 @@ 123456 1234567 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/ComplaintNotifyEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/ComplaintNotifyEvent.xml index 239b5c3b..8f8fe207 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/ComplaintNotifyEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/ComplaintNotifyEvent.xml @@ -9,4 +9,4 @@ 1 2 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/MiniProgramSharerBindStatusChangeEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/MiniProgramSharerBindStatusChangeEvent.xml index ab02ca66..2a289511 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/MiniProgramSharerBindStatusChangeEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/MiniProgramSharerBindStatusChangeEvent.xml @@ -6,4 +6,4 @@ miniprogram_sharer_bind_status_change asfafoi3254o3214_12332 1 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductAccountRegisterEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductAccountRegisterEvent.xml index b1b40c01..86a245e8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductAccountRegisterEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductAccountRegisterEvent.xml @@ -7,4 +7,4 @@ 10 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductBrandAuditEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductBrandAuditEvent.xml index fe390631..1e5006c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductBrandAuditEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductBrandAuditEvent.xml @@ -11,4 +11,4 @@ xxx原因 11 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductCategoryAuditEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductCategoryAuditEvent.xml index 879e108b..dff6f03f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductCategoryAuditEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductCategoryAuditEvent.xml @@ -10,4 +10,4 @@ 2 xxx原因 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductReceiveCouponEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductReceiveCouponEvent.xml index 8777e669..9b1e415a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductReceiveCouponEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductReceiveCouponEvent.xml @@ -6,4 +6,4 @@ open_product_receive_coupon real_out_coupon_id real_request_id - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductReceiveCouponReply.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductReceiveCouponReply.xml index 39a7a47a..998fc344 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductReceiveCouponReply.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductReceiveCouponReply.xml @@ -4,4 +4,4 @@ 0 ok real_out_coupon_id - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductSPUAuditEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductSPUAuditEvent.xml index 2193b449..f6a8705f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductSPUAuditEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductSPUAuditEvent.xml @@ -10,4 +10,4 @@ 3 xxx原因 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductSPUStatusUpdateEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductSPUStatusUpdateEvent.xml index 2f84f95e..aaf15ae6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductSPUStatusUpdateEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductSPUStatusUpdateEvent.xml @@ -10,4 +10,4 @@ 13 xxx原因 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductSceneGroupAuditEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductSceneGroupAuditEvent.xml index cfd86ddb..f1192bc2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductSceneGroupAuditEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenProduct/OpenProductSceneGroupAuditEvent.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenPush/UserInfoModifiedEvent.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenPush/UserInfoModifiedEvent.json index 0f44be04..f8e2cb0d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenPush/UserInfoModifiedEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/OpenPush/UserInfoModifiedEvent.json @@ -5,5 +5,5 @@ "MsgType": "event", "Event": "user_info_modified", "openid": "oaKk343WOktAaT2ygsX138BGblrg", - "appid" : "wx13974bf780d3dc89" + "appid": "wx13974bf780d3dc89" } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/POI/POICheckNotifyEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/POI/POICheckNotifyEvent.xml index 0b6f2a91..7cd4f4ea 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/POI/POICheckNotifyEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/POI/POICheckNotifyEvent.xml @@ -8,4 +8,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddExpressPathEvent.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddExpressPathEvent.json index e872f683..cefa5508 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddExpressPathEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddExpressPathEvent.json @@ -26,4 +26,4 @@ "ActionMsg": "运往目的地" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddExpressPathEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddExpressPathEvent.xml index ac34ecf1..a8f424a3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddExpressPathEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddExpressPathEvent.xml @@ -24,4 +24,4 @@ 200001 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddWaybillEvent.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddWaybillEvent.json index 8e07757a..268b9c6f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddWaybillEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddWaybillEvent.json @@ -60,4 +60,4 @@ "ServiceType": 0, "ServiceName": "标准快递" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddWaybillEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddWaybillEvent.xml index 1d146937..65d1ff05 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddWaybillEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/AddWaybillEvent.xml @@ -58,4 +58,4 @@ 0 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CancelWaybillEvent.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CancelWaybillEvent.json index 309f638e..264904d1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CancelWaybillEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CancelWaybillEvent.json @@ -9,4 +9,4 @@ "ShopAppID": "wxABCD", "OrderID": "012345678901234567890123456789", "WayBillID": "123456789" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CancelWaybillEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CancelWaybillEvent.xml index 32695107..375a5805 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CancelWaybillEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CancelWaybillEvent.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CheckBusinessEvent.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CheckBusinessEvent.json index aaa2f3a7..432422b4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CheckBusinessEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CheckBusinessEvent.json @@ -15,4 +15,4 @@ "SenderCity": "广州市", "SenderArea": "海珠区", "SenderAddress": "新港中路397号" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CheckBusinessEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CheckBusinessEvent.xml index 3e9baf2b..d9b1f2e3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CheckBusinessEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/CheckBusinessEvent.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/GetQuotaEvent.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/GetQuotaEvent.json index 8e03e87e..e65b9577 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/GetQuotaEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/GetQuotaEvent.json @@ -7,4 +7,4 @@ "BizID": "xyz", "BizPwd": "xyz123", "ShopAppID": "wxABCD" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/GetQuotaEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/GetQuotaEvent.xml index eb5c18ca..c2c28ad6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/GetQuotaEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/GetQuotaEvent.xml @@ -7,4 +7,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/UpdateBusinessBindResultEvent.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/UpdateBusinessBindResultEvent.json index 33a328f0..484970cc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/UpdateBusinessBindResultEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/UpdateBusinessBindResultEvent.json @@ -6,4 +6,4 @@ "Event": "update_business_bind_result", "delivery_id": "EMS", "biz_id": "1234567" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/UpdateBusinessBindResultEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/UpdateBusinessBindResultEvent.xml index 0995b177..60b42405 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/UpdateBusinessBindResultEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaExpress/UpdateBusinessBindResultEvent.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaImmediateDelivery/UpdateWaybillStatusEvent.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaImmediateDelivery/UpdateWaybillStatusEvent.json index 77037241..d08f3cd2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaImmediateDelivery/UpdateWaybillStatusEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaImmediateDelivery/UpdateWaybillStatusEvent.json @@ -15,4 +15,4 @@ "name": "xxx", "phone": "1234567" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaMiniShop/ComplaintCallbackEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaMiniShop/ComplaintCallbackEvent.xml index 1093cdfa..aa42968c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaMiniShop/ComplaintCallbackEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaMiniShop/ComplaintCallbackEvent.xml @@ -27,4 +27,4 @@ ​ 123123 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaSecurity/WxaMediaCheckEvent.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaSecurity/WxaMediaCheckEvent.json index cff0da9c..b1866655 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaSecurity/WxaMediaCheckEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/EventSamples/WxaSecurity/WxaMediaCheckEvent.json @@ -20,4 +20,4 @@ "suggest": "pass", "label": 100 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/Image/CVImageAICropResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/Image/CVImageAICropResponse.json index 471105fe..21e18db8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/Image/CVImageAICropResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/Image/CVImageAICropResponse.json @@ -19,4 +19,4 @@ "w": 966, "h": 728 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/Image/CVImageQrcodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/Image/CVImageQrcodeResponse.json index 9c15be39..d3adae86 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/Image/CVImageQrcodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/Image/CVImageQrcodeResponse.json @@ -59,4 +59,4 @@ "w": 1000, "h": 900 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/Image/CVImageSuperResolutionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/Image/CVImageSuperResolutionResponse.json index 932fb464..96aa1b3b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/Image/CVImageSuperResolutionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/Image/CVImageSuperResolutionResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "media_id": "6WXsIXkG7lXuDLspD9xfm5dsvHzb0EFl0li6ySxi92ap8Vl3zZoD9DpOyNudeJGB" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRBankCardResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRBankCardResponse.json index ac38253f..d3b7278c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRBankCardResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRBankCardResponse.json @@ -2,4 +2,4 @@ "errcode": "0", "errmsg": "ok", "number": "622213XXXXXXXXX" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRBusinessLicenseResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRBusinessLicenseResponse.json index 5d2b8682..bd63e661 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRBusinessLicenseResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRBusinessLicenseResponse.json @@ -37,4 +37,4 @@ "w": 966, "h": 728 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRCommonResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRCommonResponse.json index fdc43bf6..f1b16cff 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRCommonResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRCommonResponse.json @@ -49,4 +49,4 @@ "w": 1280, "h": 720 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRDrivingLicenseResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRDrivingLicenseResponse.json index 4ff418ae..2d37e936 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRDrivingLicenseResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRDrivingLicenseResponse.json @@ -12,4 +12,4 @@ "valid_from": "2018-07-06", "valid_to": "2020-07-01", "official_seal": "xx市公安局公安交通管理局" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRDrivingResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRDrivingResponse.json index 6f9fe711..9b090ed8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRDrivingResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRDrivingResponse.json @@ -61,4 +61,4 @@ "w": 3120, "h": 4208 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRIdCardResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRIdCardResponse.json index f182aea6..4ee9d126 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRIdCardResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRIdCardResponse.json @@ -8,4 +8,4 @@ "gender": "男", "nationality": "汉", "valid_date": "20171025-20271025" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRPlateNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRPlateNumberResponse.json index 4298418b..2e5a76cd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRPlateNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CV/OCR/CVOCRPlateNumberResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "number": "粤A123456" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardBatchGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardBatchGetRequest.json index 5e0c0ee3..44cc49a4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardBatchGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardBatchGetRequest.json @@ -1,5 +1,5 @@ { "offset": 0, "count": 10, - "status_list": [ "CARD_STATUS_VERIFY_OK", "CARD_STATUS_DISPATCH" ] -} \ No newline at end of file + "status_list": ["CARD_STATUS_VERIFY_OK", "CARD_STATUS_DISPATCH"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardBatchGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardBatchGetResponse.json index 19fbd965..7682a446 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardBatchGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardBatchGetResponse.json @@ -1,6 +1,6 @@ { "errcode": 0, "errmsg": "ok", - "card_id_list": [ "ph_gmt7cUVrlRk8swPwx7aDyF-pg" ], + "card_id_list": ["ph_gmt7cUVrlRk8swPwx7aDyF-pg"], "total_num": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardCreateRequest.json index 1eb3b7f7..f86ca71a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardCreateRequest.json @@ -28,11 +28,7 @@ "bind_openid": false, "can_share": true, "can_give_friend": true, - "location_id_list": [ - 123, - 12321, - 345345 - ], + "location_id_list": [123, 12321, 345345], "center_title": "顶部居中按钮", "center_sub_title": "按钮下方的wording", "center_url": "www.qq.com", @@ -86,32 +82,24 @@ "deal_detail": "以下锅底2选1(有菌王锅、麻辣锅、大骨锅、番茄锅、清补 凉锅、酸菜鱼锅可选):\n大锅1份 12元\n小锅2份 16元 " }, "cash": { - "base_info": { - }, - "advanced_info": { - }, + "base_info": {}, + "advanced_info": {}, "least_cost": 1000, "reduce_cost": 100 }, "discount": { - "base_info": { - }, - "advanced_info": { - }, + "base_info": {}, + "advanced_info": {}, "discount": 30 }, "gift": { - "base_info": { - }, - "advanced_info": { - }, + "base_info": {}, + "advanced_info": {}, "gift": "可兑换音乐木盒一个" }, "general_coupon": { - "base_info": { - }, - "advanced_info": { - }, + "base_info": {}, + "advanced_info": {}, "default_detail": "优惠券专用,填写优惠详情" }, "general_card": { @@ -141,9 +129,7 @@ "get_limit": 0, "use_custom_code": false, "can_give_friend": true, - "location_id_list": [ - 213059884 - ], + "location_id_list": [213059884], "center_title": "顶部居中按钮", "center_sub_title": "按钮下方的wording", "center_url": "www.qq.com", @@ -200,10 +186,7 @@ "get_limit": 3, "use_custom_code": false, "can_give_friend": true, - "location_id_list": [ - 123, - 12321 - ], + "location_id_list": [123, 12321], "custom_url_name": "立即使用", "custom_url": "http://weixin.qq.com", "custom_url_sub_title": "6个汉字tips", @@ -306,7 +289,7 @@ "bind_openid": false, "can_share": true, "can_give_friend": true, - "location_id_list": [ 123, 12321, 345345 ], + "location_id_list": [123, 12321, 345345], "custom_url_name": "查看更多", "custom_url": "http://www.qq.com", "custom_url_sub_title": "6个汉字tips" @@ -314,18 +297,15 @@ "meeting_detail": "会议时间:xxx;地点:xxx " }, "scenic_ticket": { - "base_info": { - }, + "base_info": {}, "ticket_class": "全日票" }, "movie_ticket": { - "base_info": { - }, + "base_info": {}, "detail": "电影名:xxx,电影简介:xxx" }, "boarding_pass": { - "base_info": { - }, + "base_info": {}, "from": "成都", "to": "广州", "flight": "CE123", @@ -334,4 +314,4 @@ "air_model": "空客A320" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardCreateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardCreateResponse.json index 39d048f3..ae4264f4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardCreateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardCreateResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "card_id": "p1Pj9jr90_SQRaVqYI239Ka1erkI" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardDeleteRequest.json index 150f18dc..db777934 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardDeleteRequest.json @@ -1,3 +1,3 @@ { "card_id": "pFS7Fjg8kV1IdDz01r4SQwMkuCKc" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardGetRequest.json index 150f18dc..db777934 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardGetRequest.json @@ -1,3 +1,3 @@ { "card_id": "pFS7Fjg8kV1IdDz01r4SQwMkuCKc" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardGetResponse.json index 8a54d37c..260cc48c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardGetResponse.json @@ -18,11 +18,7 @@ "color": "#10AD61", "notice": "到店使用", "description": "", - "location_id_list": [ - 218384742, - 402521653, - 402521608 - ], + "location_id_list": [218384742, 402521653, 402521608], "get_limit": 3, "can_share": true, "can_give_friend": true, @@ -55,4 +51,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardLandingPageCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardLandingPageCreateRequest.json index ff491a2c..9b7ea4bb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardLandingPageCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardLandingPageCreateRequest.json @@ -13,4 +13,4 @@ "thumb_url": "www.qq.com/b.jpg" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardLandingPageCreateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardLandingPageCreateResponse.json index dd85426e..276be315 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardLandingPageCreateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardLandingPageCreateResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "url": "www.test.url", "page_id": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardModifyStockRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardModifyStockRequest.json index 8a1e520c..7b017114 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardModifyStockRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardModifyStockRequest.json @@ -2,4 +2,4 @@ "card_id": "pFS7Fjg8kV1IdDz01r4SQwMkuCKc", "increase_stock_value": 1231231, "reduce_stock_value": 1231231 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardMpnewsGetHtmlRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardMpnewsGetHtmlRequest.json index 8c9d3452..0a5a249f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardMpnewsGetHtmlRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardMpnewsGetHtmlRequest.json @@ -1,3 +1,3 @@ { - "card_id": "p1Pj9jr90_SQRaVqYI239Ka1erkI" -} \ No newline at end of file + "card_id": "p1Pj9jr90_SQRaVqYI239Ka1erkI" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardMpnewsGetHtmlResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardMpnewsGetHtmlResponse.json index 8539fb8c..f103396a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardMpnewsGetHtmlResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardMpnewsGetHtmlResponse.json @@ -1,5 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "content": "" -} \ No newline at end of file + "content": "" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardPayCellSetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardPayCellSetRequest.json index 0f852d27..95dfdad1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardPayCellSetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardPayCellSetRequest.json @@ -1,4 +1,4 @@ { "card_id": "ph_gmt7cUVrlRk8swPwx7aDyF-pg", "is_open": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardQrcodeCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardQrcodeCreateRequest.json index d7c9f2af..9c413e82 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardQrcodeCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardQrcodeCreateRequest.json @@ -24,4 +24,4 @@ ] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardQrcodeCreateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardQrcodeCreateResponse.json index 7ed4ac69..3204f69b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardQrcodeCreateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardQrcodeCreateResponse.json @@ -5,4 +5,4 @@ "expire_seconds": 1800, "url": "http://weixin.qq.com/q/BHWya_zlfioH6fXeL16o ", "show_qrcode_url": " https://mp.weixin.qq.com/cgi-bin/showqrcode? ticket=gQH98DoAAAAAAAAAASxodHRwOi8vd2VpeGluLnFxLmNvbS9xL0czVzRlSWpsamlyM2plWTNKVktvAAIE6SfgVQMEgDPhAQ%3D%3D" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardSelfConsumeCellSetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardSelfConsumeCellSetRequest.json index 9645fc80..cc9b3317 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardSelfConsumeCellSetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardSelfConsumeCellSetRequest.json @@ -3,4 +3,4 @@ "is_open": true, "need_verify_cod": false, "need_remark_amount": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardTestWhiteListSetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardTestWhiteListSetRequest.json index 78ea7a18..ef4011a9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardTestWhiteListSetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardTestWhiteListSetRequest.json @@ -1,10 +1,4 @@ { - "openid": [ - "o1Pj9jmZvwSyyyyyyBa4aULW2mA", - "o1Pj9jmZvxxxxxxxxxULW2mA" - ], - "username": [ - "afdvvf", - "abcd" - ] -} \ No newline at end of file + "openid": ["o1Pj9jmZvwSyyyyyyBa4aULW2mA", "o1Pj9jmZvxxxxxxxxxULW2mA"], + "username": ["afdvvf", "abcd"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardUpdateRequest.json index e374cc09..3e90c9c7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardUpdateRequest.json @@ -2,12 +2,12 @@ "card_id": "ph_gmt7cUVrlRk8swPwx7aDyF-pg", "member_card": { "base_info": { - "logo_url": "http:\/\/www.supadmin.cn\/uploads\/allimg\/120216\/1_120216214725_1.jpg", + "logo_url": "http://www.supadmin.cn/uploads/allimg/120216/1_120216214725_1.jpg", "color": "Color010", "notice": "使用时向服务员出示此券", "service_phone": "020-88888888", "description": "不可与其他优惠同享。如需团购券发票,请在消费时向商户提出店内均可使用,仅限堂食餐前不可打包,餐后未吃完,可打包本团购券不限人数,建议2人使用,超过建议人数须另收酱料费5元 / 位。本单谢绝自带酒水饮料", - "location_id_list": [ 123, 12321, 345345 ], + "location_id_list": [123, 12321, 345345], "pay_info": { "swipe_card": { "is_swipe_card": true @@ -19,13 +19,11 @@ "prerogative": "", "activate_msg_operation": { "url_cell": { - "card_id_list": [ - "pbLatjhcI6XUxJWA0Au3Gaq5eFPs" - ], + "card_id_list": ["pbLatjhcI6XUxJWA0Au3Gaq5eFPs"], "end_time": 1492724561, "text": "恭喜你获得一张50元代金券", "url": "www.qq.com" } } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardUpdateResponse.json index 547fb358..80fc3151 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/CardUpdateResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "send_check": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeCheckCodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeCheckCodeRequest.json index ca268bc3..ecb99128 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeCheckCodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeCheckCodeRequest.json @@ -1,10 +1,4 @@ { "card_id": "pDF3iY0_dVjb_Pua96MMewA96qvA", - "code": [ - "11111", - "22222", - "33333", - "44444", - "55555" - ] -} \ No newline at end of file + "code": ["11111", "22222", "33333", "44444", "55555"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeCheckCodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeCheckCodeResponse.json index b17ac394..18318cc3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeCheckCodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeCheckCodeResponse.json @@ -1,6 +1,6 @@ { "errcode": 0, "errmsg": "ok", - "exist_code": [ "11111", "22222", "33333" ], - "not_exist_code": [ "44444", "55555" ] -} \ No newline at end of file + "exist_code": ["11111", "22222", "33333"], + "not_exist_code": ["44444", "55555"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeConsumeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeConsumeRequest.json index be3319d9..ccbebd80 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeConsumeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeConsumeRequest.json @@ -1,4 +1,4 @@ { "code": "12312313", "card_id": "pFS7Fjg8kV1IdDz01r4SQwMkuCKc" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeConsumeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeConsumeResponse.json index ed4467dd..b15abc79 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeConsumeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeConsumeResponse.json @@ -5,4 +5,4 @@ "card_id": "pFS7Fjg8kV1IdDz01r4SQwMkuCKc" }, "openid": "oFS7Fjl0WsZ9AMZqrI80nbIq8xrA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeDecryptRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeDecryptRequest.json index 388a8f12..34b3859a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeDecryptRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeDecryptRequest.json @@ -1,3 +1,3 @@ { - "encrypt_code": "XXIzTtMqCxwOaawoE91+VJdsFmv7b8g0VZIZkqf4GWA60Fzpc8ksZ/5ZZ0DVkXdE" -} \ No newline at end of file + "encrypt_code": "XXIzTtMqCxwOaawoE91+VJdsFmv7b8g0VZIZkqf4GWA60Fzpc8ksZ/5ZZ0DVkXdE" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeDecryptResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeDecryptResponse.json index 1f60aff4..c63d67c1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeDecryptResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeDecryptResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "code": "751234212312" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeDepositRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeDepositRequest.json index ca268bc3..ecb99128 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeDepositRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeDepositRequest.json @@ -1,10 +1,4 @@ { "card_id": "pDF3iY0_dVjb_Pua96MMewA96qvA", - "code": [ - "11111", - "22222", - "33333", - "44444", - "55555" - ] -} \ No newline at end of file + "code": ["11111", "22222", "33333", "44444", "55555"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetDepositCountRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetDepositCountRequest.json index 8bca720b..7fa578b5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetDepositCountRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetDepositCountRequest.json @@ -1,3 +1,3 @@ { "card_id": " pDF3iY0_dVjb_Pua96MMewA96qvA " -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetDepositCountResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetDepositCountResponse.json index e32b6417..bb2a12f7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetDepositCountResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetDepositCountResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "count": 123 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetRequest.json index 2816cc6a..ada85a98 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetRequest.json @@ -2,4 +2,4 @@ "card_id": "card_id_123+", "code": "123456789", "check_consume": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetResponse.json index 5a172676..b79d7ffe 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeGetResponse.json @@ -25,4 +25,4 @@ "custom_field_list": [] }, "user_card_status": "NORMAL" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeUnavailableRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeUnavailableRequest.json index 05a7ae61..7f7ae77f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeUnavailableRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeUnavailableRequest.json @@ -2,4 +2,4 @@ "code": "12312313", "card_id": "pFS7Fjg8kV1IdDz01r4SQwMkuCKc", "reason": "退款" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeUpdateRequest.json index 44cbc1cf..10804a8e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/Code/CardCodeUpdateRequest.json @@ -2,4 +2,4 @@ "code": "12345678", "card_id": "pFS7Fjg8kV1IdDz01r4SQwMkuCKc", "new_code": "3495739475" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGeneralCardUpdateUserRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGeneralCardUpdateUserRequest.json index f8089585..77796bfb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGeneralCardUpdateUserRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGeneralCardUpdateUserRequest.json @@ -6,4 +6,4 @@ "bonus": 3000, "custom_field_value1": "xxxxx", "can_give_friend": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGeneralCardUpdateUserResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGeneralCardUpdateUserResponse.json index 93f476e8..2aa81c78 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGeneralCardUpdateUserResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGeneralCardUpdateUserResponse.json @@ -4,4 +4,4 @@ "result_bonus": 100, "result_balance": 200, "openid": "oFS7Fjl0WsZ9AMZqrI80nbIq8xrA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardMaintainSetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardMaintainSetRequest.json index 2f5f31d0..5d9823f1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardMaintainSetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardMaintainSetRequest.json @@ -2,4 +2,4 @@ "page_id": "abcedfghifk=+Uasdaseq14fadkf8123h4jk", "all": true, "maintain": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardMaintainSetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardMaintainSetResponse.json index 7f8d294e..e4642122 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardMaintainSetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardMaintainSetResponse.json @@ -12,4 +12,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageAddRequest.json index eb8e9231..6e63e0d9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageAddRequest.json @@ -120,4 +120,4 @@ "url": "https://mp.weixin.qq.com" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageAddResponse.json index 67000757..0005e92f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageAddResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "page_id": "abcedfghifk=+Uasdaseq14fadkf8123h4jk" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageBatchGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageBatchGetResponse.json index 4a1ad657..7cd82ac9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageBatchGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageBatchGetResponse.json @@ -7,4 +7,4 @@ "abcedfghifk=+Uasdaseq14fadkf8123h4jm", "abcedfghifk=+Uasdaseq14fadkf8123h4jn" ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageGetRequest.json index e2027696..0902b311 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageGetRequest.json @@ -1,3 +1,3 @@ { "page_id": "abcedfghifk=+Uasdaseq14fadkf8123h4jk" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageGetResponse.json index 9de011f3..3c063501 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageGetResponse.json @@ -30,4 +30,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageUpdateRequest.json index bc4616b2..03735701 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPageUpdateRequest.json @@ -29,4 +29,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPaySubMerchantBindRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPaySubMerchantBindRequest.json index 8740d87d..a024e372 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPaySubMerchantBindRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPaySubMerchantBindRequest.json @@ -1,4 +1,4 @@ { "sub_mch_id": "1900015421", "wxa_appid": "wx8638fbedaf138a87" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPayWhiteListAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPayWhiteListAddRequest.json index 6d26221b..a72d7f10 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPayWhiteListAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPayWhiteListAddRequest.json @@ -1,3 +1,3 @@ { "sub_mch_id": "1900015421" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPayWhiteListAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPayWhiteListAddResponse.json index 69645a2a..b7662099 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPayWhiteListAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardPayWhiteListAddResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "url": "https://pay.weixin.qq.com/index.php/public/product/detail?pid=61&productType=0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardWxaSetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardWxaSetRequest.json index ef25e973..62c4fe52 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardWxaSetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/CardGiftCardWxaSetRequest.json @@ -1,4 +1,4 @@ { "wxa_appid": "wx123456789", "page_id": "asdasdjkafkjaslfjasl+fjas=" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderBatchGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderBatchGetRequest.json index aed2e928..02ef414a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderBatchGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderBatchGetRequest.json @@ -4,4 +4,4 @@ "sort_type": "ASC", "offset": 0, "count": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderBatchGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderBatchGetResponse.json index 9c7a67f5..53bca800 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderBatchGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderBatchGetResponse.json @@ -46,4 +46,4 @@ "outer_str": "web" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderGetRequest.json index f94d6581..4e0edb7c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderGetRequest.json @@ -1,3 +1,3 @@ { "order_id": "Z2y2rY74ksZX1ceuGA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderGetResponse.json index f33bcaf0..14a76ece 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderGetResponse.json @@ -23,4 +23,4 @@ "outer_str": "web", "IsChatRoom": true } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderRefundRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderRefundRequest.json index 6a7aa470..3fc81dfd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderRefundRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/GiftCard/Order/CardGiftCardOrderRefundRequest.json @@ -1,3 +1,3 @@ { - "order_id": "xxx" -} \ No newline at end of file + "order_id": "xxx" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateGetUrlRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateGetUrlRequest.json index 39795051..bc30f69f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateGetUrlRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateGetUrlRequest.json @@ -1,4 +1,4 @@ { "card_id": "pbLatji6o5g7hJh8Otuvux4y1ty0", "outer_str": "123" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateGetUrlResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateGetUrlResponse.json index a38ad231..f4b7e69a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateGetUrlResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateGetUrlResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "url": "https://mp.weixin.qq.com/bizmall/activatemembercard?action=preshow&&enxxxxxxx=MjM5Mzc0OTEwMA%3D%3D#wechat_redirect" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateRequest.json index e3ab586d..0cc35f5b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateRequest.json @@ -7,4 +7,4 @@ "card_id": "xxxx_card_id", "background_pic_url": "https://mmbiz.qlogo.cn/mmbiz/0?wx_fmt=jpeg", "init_custom_field_value1": "xxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateTempInfoGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateTempInfoGetRequest.json index 07932799..0a111ca9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateTempInfoGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateTempInfoGetRequest.json @@ -1,3 +1,3 @@ { - "activate_ticket": "abcdefg" -} \ No newline at end of file + "activate_ticket": "abcdefg" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateTempInfoGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateTempInfoGetResponse.json index 13c37962..19578dd0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateTempInfoGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateTempInfoGetResponse.json @@ -18,4 +18,4 @@ ], "custom_field_list": [] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateUserFormSetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateUserFormSetRequest.json index cc8a16c0..de89ca12 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateUserFormSetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardActivateUserFormSetRequest.json @@ -14,33 +14,20 @@ { "type": "FORM_FIELD_RADIO", "name": "兴趣", - "values": [ - "钢琴", - "舞蹈", - "足球" - ] + "values": ["钢琴", "舞蹈", "足球"] }, { "type": "FORM_FIELD_SELECT", "name": "喜好", - "values": [ - "郭敬明", - "韩寒", - "南派三叔" - ] + "values": ["郭敬明", "韩寒", "南派三叔"] }, { "type": "FORM_FIELD_CHECK_BOX", "name": "职业", - "values": [ - "赛车手", - "旅行家" - ] + "values": ["赛车手", "旅行家"] } ], - "common_field_id_list": [ - "USER_FORM_INFO_FLAG_MOBILE" - ] + "common_field_id_list": ["USER_FORM_INFO_FLAG_MOBILE"] }, "optional_form": { "can_modify": false, @@ -48,8 +35,6 @@ "USER_FORM_INFO_FLAG_LOCATION", "USER_FORM_INFO_FLAG_BIRTHDAY" ], - "custom_field_list": [ - "喜欢的电影" - ] + "custom_field_list": ["喜欢的电影"] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUpdateUserRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUpdateUserRequest.json index 7193a0c3..09553cdb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUpdateUserRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUpdateUserRequest.json @@ -15,4 +15,4 @@ "is_notify_balance": true, "is_notify_custom_field1": true } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUpdateUserResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUpdateUserResponse.json index 93f476e8..2aa81c78 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUpdateUserResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUpdateUserResponse.json @@ -4,4 +4,4 @@ "result_bonus": 100, "result_balance": 200, "openid": "oFS7Fjl0WsZ9AMZqrI80nbIq8xrA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUserInfoGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUserInfoGetRequest.json index ce29eff5..3495d495 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUserInfoGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUserInfoGetRequest.json @@ -1,4 +1,4 @@ { "card_id": "pbLatjtZ7v1BG_ZnTjbW85GYc_E8", "code": "916679873278" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUserInfoGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUserInfoGetResponse.json index ecea31b0..643806b7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUserInfoGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/MemberCard/CardMemberCardUserInfoGetResponse.json @@ -19,4 +19,4 @@ "custom_field_list": [] }, "user_card_status": "NORMAL" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardAddRequest.json index f1fd7bc1..3276b14f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardAddRequest.json @@ -2,10 +2,7 @@ "rule_info": { "type": "RULE_TYPE_PAY_MEMBER_CARD", "base_info": { - "mchid_list": [ - "123", - "456" - ], + "mchid_list": ["123", "456"], "begin_time": 1480317217, "end_time": 1580317217 }, @@ -16,4 +13,4 @@ "jump_url": "www.qq.com" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardAddResponse.json index 6d8dcb68..fc729c47 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardAddResponse.json @@ -11,8 +11,5 @@ "occupy_appid": "appid" } ], - "succ_mchid_list": [ - "123", - "456" - ] -} \ No newline at end of file + "succ_mchid_list": ["123", "456"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardBatchGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardBatchGetRequest.json index 2bbee283..8ef02f42 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardBatchGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardBatchGetRequest.json @@ -3,4 +3,4 @@ "effective": true, "offset": 0, "count": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardBatchGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardBatchGetResponse.json index ae9d67e3..9e42afbf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardBatchGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardBatchGetResponse.json @@ -6,10 +6,7 @@ { "type": "RULE_TYPE_PAY_MEMBER_CARD", "base_info": { - "mchid_list": [ - "123", - "456" - ], + "mchid_list": ["123", "456"], "begin_time": 1480317217, "end_time": 1580317217, "status": "RULE_STATUS_OK", @@ -24,4 +21,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardDeleteRequest.json index 73b14c99..0d14118a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardDeleteRequest.json @@ -1,3 +1,3 @@ { "rule_id": 1233 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardGetByIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardGetByIdRequest.json index 73b14c99..0d14118a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardGetByIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardGetByIdRequest.json @@ -1,3 +1,3 @@ { "rule_id": 1233 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardGetByIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardGetByIdResponse.json index 2463c850..40415487 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardGetByIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/PayGiftCard/CardPayGiftCardGetByIdResponse.json @@ -4,10 +4,7 @@ "rule_info": { "type": "RULE_TYPE_PAY_MEMBER_CARD", "base_info": { - "mchid_list": [ - "123", - "456" - ], + "mchid_list": ["123", "456"], "begin_time": 1480317217, "end_time": 1580317217, "status": "RULE_STATUS_OK", diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SpecialTicket/CardBoardingPassCheckinRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SpecialTicket/CardBoardingPassCheckinRequest.json index 24af1219..f2cb9762 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SpecialTicket/CardBoardingPassCheckinRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SpecialTicket/CardBoardingPassCheckinRequest.json @@ -7,4 +7,4 @@ "etkt_bnr": "电子客票号", "qrcode_data": "二维码数据", "is_cancel": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SpecialTicket/CardMeetingTicketUpdateUserRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SpecialTicket/CardMeetingTicketUpdateUserRequest.json index 33d2aed9..74c6c070 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SpecialTicket/CardMeetingTicketUpdateUserRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SpecialTicket/CardMeetingTicketUpdateUserRequest.json @@ -4,4 +4,4 @@ "zone": "C区", "entrance": "东北门", "seat_number": "2排15号" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SpecialTicket/CardMovieTicketUpdateUserRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SpecialTicket/CardMovieTicketUpdateUserRequest.json index a2866872..1a62e61a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SpecialTicket/CardMovieTicketUpdateUserRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SpecialTicket/CardMovieTicketUpdateUserRequest.json @@ -5,5 +5,5 @@ "show_time": 1408493192, "duration": 120, "screening_room": "5号影厅", - "seat_number": [ "5排14号", "5排15号" ] -} \ No newline at end of file + "seat_number": ["5排14号", "5排15号"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardGetApplyProtocolResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardGetApplyProtocolResponse.json index 0f30a8fc..2072e481 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardGetApplyProtocolResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardGetApplyProtocolResponse.json @@ -17,4 +17,4 @@ ], "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantBatchGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantBatchGetRequest.json index bc9453c9..22e086b3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantBatchGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantBatchGetRequest.json @@ -2,4 +2,4 @@ "begin_id": "", "limit": 50, "status": "CHECKING" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantBatchGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantBatchGetResponse.json index 772f406f..95416787 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantBatchGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantBatchGetResponse.json @@ -26,4 +26,4 @@ } ], "next_begin_id": 13 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantGetRequest.json index da41ccfa..9b11d646 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantGetRequest.json @@ -1,3 +1,3 @@ { "merchant_id": "12" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantGetResponse.json index 632a629c..f9fd8390 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantGetResponse.json @@ -11,4 +11,4 @@ "primary_category_id": 1, "secondary_category_id": 101 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantSubmitRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantSubmitRequest.json index bc8df80f..ad16b92a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantSubmitRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantSubmitRequest.json @@ -10,4 +10,4 @@ "primary_category_id": 1, "secondary_category_id": 101 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantSubmitResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantSubmitResponse.json index 9fdd09ef..97437492 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantSubmitResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantSubmitResponse.json @@ -12,4 +12,4 @@ "primary_category_id": 1, "secondary_category_id": 101 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantUpdateRequest.json index 20ee87ea..74f917b7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantUpdateRequest.json @@ -11,4 +11,4 @@ "primary_category_id": 1, "secondary_category_id": 101 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantUpdateResponse.json index 23f56a64..be037788 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/SubMerchant/CardSubMerchantUpdateResponse.json @@ -11,4 +11,4 @@ "primary_category_id": 1, "secondary_category_id": 101 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/User/CardUserGetCardListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/User/CardUserGetCardListRequest.json index a2781f4f..90911652 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/User/CardUserGetCardListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/User/CardUserGetCardListRequest.json @@ -1,4 +1,4 @@ { "openid": "12312313", "card_id": "xxxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/User/CardUserGetCardListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/User/CardUserGetCardListResponse.json index 76037bcb..026565dc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/User/CardUserGetCardListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/User/CardUserGetCardListResponse.json @@ -12,4 +12,4 @@ } ], "has_share_card": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/WxaStore/CardStoreWxaGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/WxaStore/CardStoreWxaGetRequest.json index 8e784b05..d11eb17f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/WxaStore/CardStoreWxaGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/WxaStore/CardStoreWxaGetRequest.json @@ -1,3 +1,3 @@ { "poi_id": "1234567" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/WxaStore/CardStoreWxaGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/WxaStore/CardStoreWxaGetResponse.json index 4d82ec85..8a181ac7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/WxaStore/CardStoreWxaGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/WxaStore/CardStoreWxaGetResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "card_id": "pabcedfg1234567hijklmn" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/WxaStore/CardStoreWxaSetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/WxaStore/CardStoreWxaSetRequest.json index 106e21e5..fc0707ad 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/WxaStore/CardStoreWxaSetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Card/WxaStore/CardStoreWxaSetRequest.json @@ -1,4 +1,4 @@ { "poi_id": "1234567", "card_id": "pabcedfg1234567hijklmn" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceClearOutInvoiceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceClearOutInvoiceRequest.json index a1850baa..3da0e0ec 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceClearOutInvoiceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceClearOutInvoiceRequest.json @@ -7,4 +7,4 @@ "yfpdm": "050003521100", "yfphm": "30329969" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceGetAuthDataRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceGetAuthDataRequest.json index 028ca294..f1c3d895 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceGetAuthDataRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceGetAuthDataRequest.json @@ -1,4 +1,4 @@ { "s_pappid": "{s_pappid}", "order_id": "{order_id}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceGetAuthDataResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceGetAuthDataResponse.json index 9c5693c9..1d5d75f0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceGetAuthDataResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceGetAuthDataResponse.json @@ -30,4 +30,4 @@ ] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceGetAuthUrlRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceGetAuthUrlRequest.json index 03952ab5..820be855 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceGetAuthUrlRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceGetAuthUrlRequest.json @@ -7,4 +7,4 @@ "redirect_url": "https://mp.weixin.qq.com", "ticket": "tttt", "type": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceInsertRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceInsertRequest.json index dceaa370..93446167 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceInsertRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceInsertRequest.json @@ -26,4 +26,4 @@ }, "card_id": "pjZ8Yt9WoOePThU0NfUKz5-tBEWU", "appid": "wxc0b84a53ed8e8d29" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceInsertResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceInsertResponse.json index 7d93b4c0..5e5b858a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceInsertResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceInsertResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "code": "682xxxx661927", "openid": "ojZ8Ytz4lESxxxx_R1TvB2Kds" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceMakeOutInvoiceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceMakeOutInvoiceRequest.json index b12c8856..f4351bea 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceMakeOutInvoiceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceMakeOutInvoiceRequest.json @@ -38,4 +38,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceQueryInvoiceInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceQueryInvoiceInfoRequest.json index 02d49cbf..0ee07a92 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceQueryInvoiceInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceQueryInvoiceInfoRequest.json @@ -1,4 +1,4 @@ { "fpqqlsh": "test20160511000440", "nsrsbh": "110109500321654" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceQueryInvoiceInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceQueryInvoiceInfoResponse.json index 646a43b0..ed685766 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceQueryInvoiceInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceQueryInvoiceInfoResponse.json @@ -9,4 +9,4 @@ "kprq": "20171204172159", "pdfurl": "http://weixin.com" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetAuthFieldRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetAuthFieldRequest.json index f29ba0db..ac6ab8d6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetAuthFieldRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetAuthFieldRequest.json @@ -24,4 +24,4 @@ ] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetContactRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetContactRequest.json index f03609ad..c89a9de3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetContactRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetContactRequest.json @@ -3,4 +3,4 @@ "phone": "88888888", "time_out": 12345 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetPayMerchantRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetPayMerchantRequest.json index a6110274..5c402b3b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetPayMerchantRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetPayMerchantRequest.json @@ -3,4 +3,4 @@ "mchid": "1234", "s_pappid": "wxabcd" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetUrlResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetUrlResponse.json index c9bc9dc2..b8ca8949 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetUrlResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/CardInvoiceSetUrlResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "invoice_url": "https://mp.weixin.qq.com/bizmall/authinvoice?action=list&s_pappid=d3xxxxxxxxxxxxxGLSS0wrL14No8c1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformCreateCardRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformCreateCardRequest.json index 84403b29..987b4984 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformCreateCardRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformCreateCardRequest.json @@ -13,4 +13,4 @@ "type": " 广东省增值税普通发票 ", "payee": " 测试 - 收款方 " } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformCreateCardResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformCreateCardResponse.json index 091e7d56..43effee5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformCreateCardResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformCreateCardResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "card_id": "pjZ8Yt9WoOePThU0NfUKz5-tBEWU" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformGetPdfRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformGetPdfRequest.json index 8475cb8a..fe6822fc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformGetPdfRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformGetPdfRequest.json @@ -1,4 +1,4 @@ { "action": "get_url", "s_media_id": "75195574948725301" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformGetPdfResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformGetPdfResponse.json index 14a133b7..2090be76 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformGetPdfResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformGetPdfResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "pdf_url": "https://mp.weixin.qq.com/intp/invoice/getpdf?action=media_pdf&media_key=dFRnTkV6WCswNjB1V1czZ0tVU3MhaX4yb2pxeEVSY0teSCtuflY6UXAifD5rL09kTjFpOFVWKyJGNCgxTCtkJER6VjFlRCtVU2JKcS5FZw", "pdf_url_expire_time": 7200 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformSetPdfResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformSetPdfResponse.json index 8747a85b..39a8e556 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformSetPdfResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformSetPdfResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "s_media_id": "3015806758683707" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformUpdateStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformUpdateStatusRequest.json index a390aa4e..fddcd304 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformUpdateStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Platform/CardInvoicePlatformUpdateStatusRequest.json @@ -2,4 +2,4 @@ "card_id": "pjZ8Yt7Um2jYxzneP8GomnxoVFWo", "code": "186921658591", "reimburse_status": "INVOICE_REIMBURSE_INIT" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetSelectTitleUrlRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetSelectTitleUrlRequest.json index a9c1db01..65bd30c6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetSelectTitleUrlRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetSelectTitleUrlRequest.json @@ -1,3 +1,3 @@ { "attach": "abcdefg" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetSelectTitleUrlResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetSelectTitleUrlResponse.json index ba615485..9f2763b0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetSelectTitleUrlResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetSelectTitleUrlResponse.json @@ -2,4 +2,4 @@ "url": "https://mp.weixin.qq.com/intp/invoice/usertitle?action=select_title&select_title_key=iY1bpfvAuwKgkfQECzlhog#wechat_redirect", "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetUserTitleUrlRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetUserTitleUrlRequest.json index 937292f8..57d50028 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetUserTitleUrlRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetUserTitleUrlRequest.json @@ -5,4 +5,4 @@ "bank_type": "bank_type", "phone": "12345", "bank_no": "bank_no" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetUserTitleUrlResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetUserTitleUrlResponse.json index 33e11af5..4e51a3ee 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetUserTitleUrlResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessGetUserTitleUrlResponse.json @@ -2,4 +2,4 @@ "url": "https://mp.weixin.qq.com/intp/invoice/usertitle?action=list_auth&biz_title_key=hMjjwk#wechat_redirect", "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessScanTitleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessScanTitleRequest.json index 3ea00c9b..da6a822f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessScanTitleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessScanTitleRequest.json @@ -1,3 +1,3 @@ { - "scan_text": "https//mp.weixingg.com/intp/invoice/usertitlewxa?action=list_auth&invoice_key=abcd" -} \ No newline at end of file + "scan_text": "https//mp.weixingg.com/intp/invoice/usertitlewxa?action=list_auth&invoice_key=abcd" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessScanTitleResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessScanTitleResponse.json index 1b97e55e..ce14115b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessScanTitleResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Quick/CardInvoiceBusinessScanTitleResponse.json @@ -8,4 +8,4 @@ "phone": "12345", "title_type": 0, "bank_no": "1235456465341234" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceBatchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceBatchRequest.json index a41bb2ab..cd42e1d4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceBatchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceBatchRequest.json @@ -9,4 +9,4 @@ "encrypt_code": "O/mPnGTpBu22a1szmK2ogz " } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceBatchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceBatchResponse.json index c1a8e3ac..0af569c8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceBatchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceBatchResponse.json @@ -61,4 +61,4 @@ "detail": "detail" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceInfoRequest.json index 91bbbe81..8f903e53 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceInfoRequest.json @@ -1,4 +1,4 @@ { "card_id": "pjZ8Yt5crPbAouhFqFf6JFgZv4Lc", "encrypt_code": "fbdt/fWy1VitQwhbKtSjNeR3BJyfpeJXfZjjGsdCXiM=" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceInfoResponse.json index e8f05dc5..e6f42676 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseGetInvoiceInfoResponse.json @@ -28,4 +28,4 @@ "pdf_url": "pdf_url", "reimburse_status": "INVOICE_REIMBURSE_INIT" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseUpdateInvoiceStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseUpdateInvoiceStatusRequest.json index efe82a9f..b7b9c8db 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseUpdateInvoiceStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseUpdateInvoiceStatusRequest.json @@ -2,4 +2,4 @@ "card_id": "pjZ8Yt5crPbAouhFqFf6JFgZv4Lc", "encrypt_code": "fbdt/fWy1VitQwhbKtSjNeR3BJyfpeJXfZjjGsdCXiM=", "reimburse_status": "INVOICE_REIMBURSE_INIT" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseUpdateStatusBatchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseUpdateStatusBatchRequest.json index e8f67c3b..91e75eb3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseUpdateStatusBatchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/Reimburse/CardInvoiceReimburseUpdateStatusBatchRequest.json @@ -11,4 +11,4 @@ "encrypt_code": "encrypt_code_2" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/SetBusinessAttribute/CardInvoiceGetAuthFieldResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/SetBusinessAttribute/CardInvoiceGetAuthFieldResponse.json index d465688d..4a92e3bc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/SetBusinessAttribute/CardInvoiceGetAuthFieldResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/SetBusinessAttribute/CardInvoiceGetAuthFieldResponse.json @@ -26,4 +26,4 @@ ] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/SetBusinessAttribute/CardInvoiceGetContactResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/SetBusinessAttribute/CardInvoiceGetContactResponse.json index c244683c..13d729fe 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/SetBusinessAttribute/CardInvoiceGetContactResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/SetBusinessAttribute/CardInvoiceGetContactResponse.json @@ -5,4 +5,4 @@ }, "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/SetBusinessAttribute/CardInvoiceGetPayMerchantResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/SetBusinessAttribute/CardInvoiceGetPayMerchantResponse.json index ca13ac7d..ece7b5b4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/SetBusinessAttribute/CardInvoiceGetPayMerchantResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CardInvoice/SetBusinessAttribute/CardInvoiceGetPayMerchantResponse.json @@ -5,4 +5,4 @@ "mchid": "1234", "s_pappid": "wxabcd" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinCallbackCheckRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinCallbackCheckRequest.json index 4a545b4e..424bd69f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinCallbackCheckRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinCallbackCheckRequest.json @@ -1,4 +1,4 @@ { "action": "all", "check_operator": "DEFAULT" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinCallbackCheckResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinCallbackCheckResponse.json index 6044cb74..b6fc1677 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinCallbackCheckResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinCallbackCheckResponse.json @@ -23,4 +23,4 @@ "time": "21.434ms" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinChangeOpenIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinChangeOpenIdRequest.json index b1605f45..4f181fff 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinChangeOpenIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinChangeOpenIdRequest.json @@ -4,4 +4,4 @@ "oEmYbwN-n24jxvk4Sox81qedINkQ", "oEmYbwH9uVd4RKJk7ZZg6SzL6tTo" ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinChangeOpenIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinChangeOpenIdResponse.json index d709f721..fbb5410e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinChangeOpenIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinChangeOpenIdResponse.json @@ -12,4 +12,4 @@ "err_msg": "ori_openid error" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinGetApiDomainIpResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinGetApiDomainIpResponse.json index 12963516..52839e1b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinGetApiDomainIpResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinGetApiDomainIpResponse.json @@ -1,3 +1,3 @@ { - "ip_list": [ "127.0.0.1", "127.0.0.2", "101.226.103.0/25" ] -} \ No newline at end of file + "ip_list": ["127.0.0.1", "127.0.0.2", "101.226.103.0/25"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinGetCallbackIpResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinGetCallbackIpResponse.json index 12963516..52839e1b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinGetCallbackIpResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinGetCallbackIpResponse.json @@ -1,3 +1,3 @@ { - "ip_list": [ "127.0.0.1", "127.0.0.2", "101.226.103.0/25" ] -} \ No newline at end of file + "ip_list": ["127.0.0.1", "127.0.0.2", "101.226.103.0/25"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinTicketGetTicketResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinTicketGetTicketResponse.json index e78bed24..8e09aa7d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinTicketGetTicketResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinTicketGetTicketResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "ticket": "bxLdikRXVbTPdHSM05e5u5sUoXNKdvsdshFKA", "expires_in": 7200 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinTokenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinTokenResponse.json index 8421c2d9..7bd96028 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinTokenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Cgibin/CgibinTokenResponse.json @@ -1,4 +1,4 @@ { "access_token": "ACCESS_TOKEN", "expires_in": 7200 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountComponentRebindAdminRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountComponentRebindAdminRequest.json index a9a0d8a9..62d7aab6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountComponentRebindAdminRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountComponentRebindAdminRequest.json @@ -1,3 +1,3 @@ { "taskid": "b25519093b1e97239eff9d2bfc07e08e" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountFastRegisterRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountFastRegisterRequest.json index ed33d0a3..85d822c1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountFastRegisterRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountFastRegisterRequest.json @@ -1,3 +1,3 @@ { "ticket": "b25519093b1e97239eff9d2bfc07e08e" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountFastRegisterResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountFastRegisterResponse.json index ff80df4c..33d9f67a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountFastRegisterResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountFastRegisterResponse.json @@ -5,4 +5,4 @@ "authorization_code": "****", "is_wx_verify_succ": "true", "is_link_succ": "true" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountGetAccountBasicInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountGetAccountBasicInfoResponse.json index 66ebdef5..d787a9d6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountGetAccountBasicInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountGetAccountBasicInfoResponse.json @@ -29,4 +29,4 @@ "modify_used_count": 2, "modify_quota": 2 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountModifyHeadImageRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountModifyHeadImageRequest.json index ec3de39c..5a59bf12 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountModifyHeadImageRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountModifyHeadImageRequest.json @@ -4,4 +4,4 @@ "y1": 0, "x2": 0.7596899224806202, "y2": 0.49 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountModifySignatureRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountModifySignatureRequest.json index 181d9965..0c755968 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountModifySignatureRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinAccount/CgibinAccountModifySignatureRequest.json @@ -1,3 +1,3 @@ { "signature": "提供好玩的服务。" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentCloseRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentCloseRequest.json index fa807dd7..e37b56a8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentCloseRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentCloseRequest.json @@ -1,4 +1,4 @@ { - "msg_data_id": 1, - "index": 0 -} \ No newline at end of file + "msg_data_id": 1, + "index": 0 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentDeleteRequest.json index 9c644cac..9c38e4ae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentDeleteRequest.json @@ -1,5 +1,5 @@ { - "msg_data_id": 1, - "index": 0, - "user_comment_id": 0 -} \ No newline at end of file + "msg_data_id": 1, + "index": 0, + "user_comment_id": 0 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentListRequest.json index ee93e2c3..71e0c409 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentListRequest.json @@ -4,4 +4,4 @@ "begin": 0, "count": 0, "type": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentListResponse.json index ee877008..c243c3b5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentListResponse.json @@ -17,4 +17,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentMarkElectRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentMarkElectRequest.json index 9c644cac..9c38e4ae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentMarkElectRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentMarkElectRequest.json @@ -1,5 +1,5 @@ { - "msg_data_id": 1, - "index": 0, - "user_comment_id": 0 -} \ No newline at end of file + "msg_data_id": 1, + "index": 0, + "user_comment_id": 0 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentOpenRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentOpenRequest.json index fa807dd7..e37b56a8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentOpenRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentOpenRequest.json @@ -1,4 +1,4 @@ { - "msg_data_id": 1, - "index": 0 -} \ No newline at end of file + "msg_data_id": 1, + "index": 0 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentUnmarkElectRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentUnmarkElectRequest.json index 9c644cac..9c38e4ae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentUnmarkElectRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/CgibinCommentUnmarkElectRequest.json @@ -1,5 +1,5 @@ { - "msg_data_id": 1, - "index": 0, - "user_comment_id": 0 -} \ No newline at end of file + "msg_data_id": 1, + "index": 0, + "user_comment_id": 0 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/Reply/CgibinCommentReplyAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/Reply/CgibinCommentReplyAddRequest.json index 1e3e69c6..ebd8dc5d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/Reply/CgibinCommentReplyAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/Reply/CgibinCommentReplyAddRequest.json @@ -1,6 +1,6 @@ { - "msg_data_id": 1, - "index": 0, - "user_comment_id": 0, - "content": "CONTENT" -} \ No newline at end of file + "msg_data_id": 1, + "index": 0, + "user_comment_id": 0, + "content": "CONTENT" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/Reply/CgibinCommentReplyDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/Reply/CgibinCommentReplyDeleteRequest.json index 9c644cac..9c38e4ae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/Reply/CgibinCommentReplyDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComment/Reply/CgibinCommentReplyDeleteRequest.json @@ -1,5 +1,5 @@ { - "msg_data_id": 1, - "index": 0, - "user_comment_id": 0 -} \ No newline at end of file + "msg_data_id": 1, + "index": 0, + "user_comment_id": 0 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiAuthorizerTokenRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiAuthorizerTokenRequest.json index c78d4e7e..883f77e0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiAuthorizerTokenRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiAuthorizerTokenRequest.json @@ -2,4 +2,4 @@ "component_appid": "appid_value", "authorizer_appid": "auth_appid_value", "authorizer_refresh_token": "refresh_token_value" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiAuthorizerTokenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiAuthorizerTokenResponse.json index a8aa9994..00743ee8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiAuthorizerTokenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiAuthorizerTokenResponse.json @@ -2,4 +2,4 @@ "authorizer_access_token": "some-access-token", "expires_in": 7200, "authorizer_refresh_token": "refresh_token_value" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiComponentTokenRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiComponentTokenRequest.json index c5868de8..d99c7ac3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiComponentTokenRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiComponentTokenRequest.json @@ -2,4 +2,4 @@ "component_appid": "appid_value", "component_appsecret": "appsecret_value", "component_verify_ticket": "ticket_value" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiComponentTokenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiComponentTokenResponse.json index 8cd0452b..e4c602e7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiComponentTokenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiComponentTokenResponse.json @@ -1,4 +1,4 @@ { "component_access_token": "61W3mEpU66027wgNZ_MhGHNQDHnFATkDa9-2llqrMBjUwxRSNPbVsMmyD-yq8wZETSoE5NQgecigDrSHkPtIYA", "expires_in": 7200 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiCreatePreAuthCodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiCreatePreAuthCodeRequest.json index 5888b501..ffb3572f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiCreatePreAuthCodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiCreatePreAuthCodeRequest.json @@ -1,3 +1,3 @@ { "component_appid": "appid_value" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiCreatePreAuthCodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiCreatePreAuthCodeResponse.json index af119171..3620bcd2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiCreatePreAuthCodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiCreatePreAuthCodeResponse.json @@ -1,4 +1,4 @@ { "pre_auth_code": "Cx_Dk6qiBE0Dmx4EmlT3oRfArPvwSQ-oa3NL_fwHM7VI08r52wazoZX2Rhpz1dEw", "expires_in": 600 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerInfoRequest.json index 745a677f..979443c8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerInfoRequest.json @@ -1,4 +1,4 @@ { "component_appid": "appid_value", "authorizer_appid": "auth_appid_value" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerInfoResponse.json index 3a8b814c..9a654e6a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerInfoResponse.json @@ -22,7 +22,7 @@ "signature": "欢迎小伙伴一起参与盲盒游戏,集齐9款鞋卡,可以兑换大奖!", "MiniProgramInfo": { "network": { - "RequestDomain": [ "https:xxx", "https:xxxx", "https:xxx" ], + "RequestDomain": ["https:xxx", "https:xxxx", "https:xxx"], "WsRequestDomain": [], "UploadDomain": [], "DownloadDomain": [], @@ -53,4 +53,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerListRequest.json index deea0e51..99559f6e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerListRequest.json @@ -2,4 +2,4 @@ "component_appid": "appid_value", "offset": 0, "count": 100 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerListResponse.json index 3ea2450a..dcec64d0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerListResponse.json @@ -12,4 +12,4 @@ "auth_time": 1558000607 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerOptionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerOptionRequest.json index b9be3bbc..396a3afa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerOptionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerOptionRequest.json @@ -2,4 +2,4 @@ "component_appid": "appid_value", "authorizer_appid": "auth_appid_value ", "option_name": "option_name_value" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerOptionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerOptionResponse.json index 7d7cdd34..abbd5462 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerOptionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiGetAuthorizerOptionResponse.json @@ -2,4 +2,4 @@ "authorizer_appid": "wx7bc5ba58cabd00f4", "option_name": "voice_recognize", "option_value": "1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiQueryAuthRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiQueryAuthRequest.json index b24156a0..c4c0db25 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiQueryAuthRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiQueryAuthRequest.json @@ -1,4 +1,4 @@ { "component_appid": "appid_value", "authorization_code": "auth_code_value" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiQueryAuthResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiQueryAuthResponse.json index 12da2dba..1f53eb8a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiQueryAuthResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiQueryAuthResponse.json @@ -22,4 +22,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiSetAuthorizerOptionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiSetAuthorizerOptionRequest.json index c3941e4b..381c2609 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiSetAuthorizerOptionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiSetAuthorizerOptionRequest.json @@ -3,4 +3,4 @@ "authorizer_appid": "auth_appid_value ", "option_name": "option_name_value", "option_value": "option_value_value" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiStartPushTicketRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiStartPushTicketRequest.json index e726c90e..bae50885 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiStartPushTicketRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentApiStartPushTicketRequest.json @@ -1,4 +1,4 @@ { "component_appid": "wxd0bfc95064b5bfc1", "component_secret": "28c223a63f7de0d5xxxxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentFastRegisterWeappCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentFastRegisterWeappCreateRequest.json index d83b235a..3303f966 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentFastRegisterWeappCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentFastRegisterWeappCreateRequest.json @@ -5,4 +5,4 @@ "legal_persona_wechat": "123", "legal_persona_name": "candy", "component_phone": "1234567" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentFastRegisterWeappSearchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentFastRegisterWeappSearchRequest.json index be899e9b..3f46bc89 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentFastRegisterWeappSearchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentFastRegisterWeappSearchRequest.json @@ -2,4 +2,4 @@ "name": "tencent", "legal_persona_wechat": "123", "legal_persona_name": "pony" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentGetDomainConfirmFileResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentGetDomainConfirmFileResponse.json index b2b49344..70753fdb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentGetDomainConfirmFileResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentGetDomainConfirmFileResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "file_name": "xxx", "file_content": "xxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentGetPrivacySettingRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentGetPrivacySettingRequest.json index b5109337..1f0701b3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentGetPrivacySettingRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentGetPrivacySettingRequest.json @@ -1,3 +1,3 @@ { "privacy_ver": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentGetPrivacySettingResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentGetPrivacySettingResponse.json index 88d62bfa..caa06c3d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentGetPrivacySettingResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentGetPrivacySettingResponse.json @@ -191,4 +191,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaJumpDomainRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaJumpDomainRequest.json index 5554c9f5..2d210ab5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaJumpDomainRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaJumpDomainRequest.json @@ -2,4 +2,4 @@ "action": "delete", "is_modify_published_together": false, "wxa_jump_h5_domain": "www.qq.com;wx.qq.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaJumpDomainResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaJumpDomainResponse.json index c224da84..512554aa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaJumpDomainResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaJumpDomainResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "published_wxa_jump_h5_domain": "www.qq.com;wx.qq.com", "testing_wxa_jump_h5_domain": "www.qq.com;wx.qq.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaServerDomainRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaServerDomainRequest.json index 99802911..817c591e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaServerDomainRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaServerDomainRequest.json @@ -2,4 +2,4 @@ "action": "add", "is_modify_published_together": true, "wxa_server_domain": "www.qq.com;wx.qq.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaServerDomainResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaServerDomainResponse.json index 692b2ca2..c8bdb9ef 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaServerDomainResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentModifyWxaServerDomainResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "published_wxa_server_domain": "www.qq.com;wx.qq.com", "testing_wxa_server_domain": "www.qq.com;wx.qq.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentSetPrivacySettingRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentSetPrivacySettingRequest.json index e1f3c3b4..1c251aa7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentSetPrivacySettingRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinComponent/CgibinComponentSetPrivacySettingRequest.json @@ -19,4 +19,4 @@ } ], "privacy_ver": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinCustomService/CgibinCustomServiceGetKfListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinCustomService/CgibinCustomServiceGetKfListResponse.json index 149bfb70..6da0d415 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinCustomService/CgibinCustomServiceGetKfListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinCustomService/CgibinCustomServiceGetKfListResponse.json @@ -24,4 +24,4 @@ "invite_status": "waiting" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinCustomService/CgibinCustomServiceGetOnlineKfListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinCustomService/CgibinCustomServiceGetOnlineKfListResponse.json index 4dc15c53..a5caff20 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinCustomService/CgibinCustomServiceGetOnlineKfListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinCustomService/CgibinCustomServiceGetOnlineKfListResponse.json @@ -13,4 +13,4 @@ "accepted_case": 2 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftAddRequest.json index 1ece9e5e..3869451e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftAddRequest.json @@ -12,4 +12,4 @@ "only_fans_can_comment": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftAddResponse.json index eac4910f..52c7fbde 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftAddResponse.json @@ -1,3 +1,3 @@ { "media_id": "MEDIA_ID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftBatchGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftBatchGetRequest.json index 31c031bb..848f6bfc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftBatchGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftBatchGetRequest.json @@ -2,4 +2,4 @@ "offset": 0, "count": 0, "no_content": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftBatchGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftBatchGetResponse.json index 8885f79f..558c4f7c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftBatchGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftBatchGetResponse.json @@ -23,4 +23,4 @@ "update_time": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftCountResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftCountResponse.json index 4754bdf0..05eb56be 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftCountResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftCountResponse.json @@ -1,3 +1,3 @@ { "total_count": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftDeleteRequest.json index eac4910f..52c7fbde 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftDeleteRequest.json @@ -1,3 +1,3 @@ { "media_id": "MEDIA_ID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftGetRequest.json index eac4910f..52c7fbde 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftGetRequest.json @@ -1,3 +1,3 @@ { "media_id": "MEDIA_ID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftGetResponse.json index c562ddfe..5efbef1b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftGetResponse.json @@ -13,4 +13,4 @@ "url": "URL" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftSwitchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftSwitchResponse.json index f518a80f..c7087002 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftSwitchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftSwitchResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ERRMSG", "is_open": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftUpdateRequest.json index 147c9724..fe33dd7d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinDraft/CgibinDraftUpdateRequest.json @@ -12,4 +12,4 @@ "need_open_comment": 0, "only_fans_can_comment": 0 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessAccountBindRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessAccountBindRequest.json index 0c648370..0aea58ce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessAccountBindRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessAccountBindRequest.json @@ -3,4 +3,4 @@ "biz_id": "123456", "delivery_id": "YUNDA", "password": "123456789123456789" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessAccountGetAllResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessAccountGetAllResponse.json index 40e77ba5..9b79a2ce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessAccountGetAllResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessAccountGetAllResponse.json @@ -14,4 +14,4 @@ "quota_update_time": 1556594799 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessDeliveryGetAllResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessDeliveryGetAllResponse.json index 73c53d90..6ffc34f0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessDeliveryGetAllResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessDeliveryGetAllResponse.json @@ -30,4 +30,4 @@ "delivery_name": "中通快递" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderAddRequest.json index 01e4d542..faab2fb3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderAddRequest.json @@ -73,4 +73,4 @@ "service_name": "标准快递" }, "take_mode": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderAddResponse.json index 4763c01f..fa77b1e7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderAddResponse.json @@ -13,4 +13,4 @@ "value": "101- 07-03 509" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderBatchGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderBatchGetRequest.json index ab59d7d8..3df42fca 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderBatchGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderBatchGetRequest.json @@ -11,4 +11,4 @@ "waybill_id": "123456789" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderBatchGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderBatchGetResponse.json index 7886c668..6f818b04 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderBatchGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderBatchGetResponse.json @@ -39,4 +39,4 @@ "order_status": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderCancelRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderCancelRequest.json index 18fa41ed..855d5a3a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderCancelRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderCancelRequest.json @@ -3,4 +3,4 @@ "openid": "oABC123456", "delivery_id": "SF", "waybill_id": "123456789" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderCancelResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderCancelResponse.json index c86a7d3a..5ac44ff9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderCancelResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderCancelResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "delivery_resultcode": 0, "delivery_resultmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderGetRequest.json index 56d38c2b..f443f220 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderGetRequest.json @@ -4,4 +4,4 @@ "delivery_id": "SF", "waybill_id": "123456789", "print_type": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderGetResponse.json index b158a256..a0be6457 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessOrderGetResponse.json @@ -14,4 +14,4 @@ "waybill_id": "123456", "order_id": "123456", "order_status": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPathGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPathGetRequest.json index 18fa41ed..855d5a3a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPathGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPathGetRequest.json @@ -3,4 +3,4 @@ "openid": "oABC123456", "delivery_id": "SF", "waybill_id": "123456789" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPathGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPathGetResponse.json index 776d3659..126e7473 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPathGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPathGetResponse.json @@ -20,4 +20,4 @@ "action_msg": "快递员已出发,联系电话xxxxxx" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPrinterGetAllResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPrinterGetAllResponse.json index 8afb527e..ccc5c1f0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPrinterGetAllResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPrinterGetAllResponse.json @@ -1,11 +1,5 @@ { "count": 2, - "openid": [ - "oABC", - "oXYZ" - ], - "tagid_list": [ - "123", - "456" - ] -} \ No newline at end of file + "openid": ["oABC", "oXYZ"], + "tagid_list": ["123", "456"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPrinterUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPrinterUpdateRequest.json index 4d54e7f4..2c707acc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPrinterUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessPrinterUpdateRequest.json @@ -2,4 +2,4 @@ "openid": "oJ4v0wRAfiXcnIbM3SgGEUkTw3Qw", "update_type": "bind", "tagid_list": "123,456" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessQuotaGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessQuotaGetRequest.json index 6ae749f1..ff5f7602 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessQuotaGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessQuotaGetRequest.json @@ -1,4 +1,4 @@ { "delivery_id": "YTO", "biz_id": "xyz" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessQuotaGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessQuotaGetResponse.json index 9c3726c8..7924b0e0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessQuotaGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessQuotaGetResponse.json @@ -1,3 +1,3 @@ { "quota_num": 210 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessTestUpdateOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessTestUpdateOrderRequest.json index 1ff6d9d0..e0a0fa5b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessTestUpdateOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Business/CgibinExpressBusinessTestUpdateOrderRequest.json @@ -6,4 +6,4 @@ "action_time": 123456789, "action_type": 100001, "action_msg": "揽件阶段" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryContactGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryContactGetRequest.json index ec6addcb..73eec777 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryContactGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryContactGetRequest.json @@ -1,4 +1,4 @@ { "token": "TOKEN", "waybill_id": "12345678901234567890" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryContactGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryContactGetResponse.json index f4566c16..c1e3cb2a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryContactGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryContactGetResponse.json @@ -12,4 +12,4 @@ "tel": "029-77777777", "mobile": "18610000000" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryPathUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryPathUpdateRequest.json index a74ad9af..61465c1d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryPathUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryPathUpdateRequest.json @@ -4,4 +4,4 @@ "action_time": 1533052800, "action_type": 300002, "action_msg": "丽影邓丽君【18666666666】正在派件" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryServiceBusinessUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryServiceBusinessUpdateRequest.json index c60e0104..58f8b37b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryServiceBusinessUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryServiceBusinessUpdateRequest.json @@ -3,4 +3,4 @@ "biz_id": "xyz", "result_code": 0, "result_msg": "审核通过" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryTemplatePreviewRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryTemplatePreviewRequest.json index dda7336c..338e69e2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryTemplatePreviewRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryTemplatePreviewRequest.json @@ -64,4 +64,4 @@ "service_name": "标准快递" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryTemplatePreviewResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryTemplatePreviewResponse.json index 6c38f848..232775d9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryTemplatePreviewResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/CgibinExpressDeliveryTemplatePreviewResponse.json @@ -1,4 +1,4 @@ { "waybill_id": "1234567890123", "rendered_waybill_template": "PGh0bWw+dGVzdDwvaHRtbD4=" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageFollowWaybillRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageFollowWaybillRequest.json index 097a2292..b3376123 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageFollowWaybillRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageFollowWaybillRequest.json @@ -15,4 +15,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageFollowWaybillResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageFollowWaybillResponse.json index eb22e2ae..68c27f84 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageFollowWaybillResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageFollowWaybillResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "waybill_token": "o_ARWHaxIxzWHmdui-AIw9KBr8qNnbmc08V0KhDyXE-IMLo6AcOqJkPsNLcLzfTb" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageQueryFollowTraceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageQueryFollowTraceRequest.json index 1d2e161f..23d6abe8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageQueryFollowTraceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageQueryFollowTraceRequest.json @@ -1,4 +1,4 @@ { "waybill_token": "o_ARWHaxIxzWHmdui-AIw8SuE1QtaUZK8aUnZguAn1nsZ72ZjWlq8btV8j-wAc94", "openid": "ovtZW4yB7DIj3CxOb6ii-nk4HhFo" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageQueryFollowTraceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageQueryFollowTraceResponse.json index 524cb018..1960df91 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageQueryFollowTraceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageQueryFollowTraceResponse.json @@ -19,4 +19,4 @@ ] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageUpdateFollowWaybillGoodsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageUpdateFollowWaybillGoodsRequest.json index 0407589a..4f67721f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageUpdateFollowWaybillGoodsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/Delivery/OpenMessage/CgibinExpressDeliveryOpenMessageUpdateFollowWaybillGoodsRequest.json @@ -9,4 +9,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessDeliveryGetAllResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessDeliveryGetAllResponse.json index 6a8c45c4..ccfe32cc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessDeliveryGetAllResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessDeliveryGetAllResponse.json @@ -11,4 +11,4 @@ "delivery_name": "美团配送" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOpenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOpenResponse.json index 36b8efea..2b7d9794 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOpenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOpenResponse.json @@ -1,4 +1,4 @@ { "resultcode": 0, "resultmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderAddRequest.json index fa2c71b5..21aba601 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderAddRequest.json @@ -45,8 +45,8 @@ "address_detail": "2号楼202", "city": "北京市", "coordinate_type": 0, - "lat": 40.1529600000, - "lng": 116.5060300000, + "lat": 40.15296, + "lng": 116.50603, "name": "老王", "phone": "18512345678" }, @@ -55,8 +55,8 @@ "address_detail": "1号楼101", "city": "北京市", "coordinate_type": 0, - "lat": 40.4486120000, - "lng": 116.3830750000, + "lat": 40.448612, + "lng": 116.383075, "name": "刘一", "phone": "13712345678" }, @@ -71,4 +71,4 @@ "shop_order_id": "SFTC_001", "shopid": "122222222", "delivery_token": "xxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderAddTipsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderAddTipsRequest.json index dcfe734e..bc63ac19 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderAddTipsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderAddTipsRequest.json @@ -6,4 +6,4 @@ "remark": "gogogo", "delivery_sign": "123456", "shop_no": "shop_no_111" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderAddTipsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderAddTipsResponse.json index 36b8efea..2b7d9794 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderAddTipsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderAddTipsResponse.json @@ -1,4 +1,4 @@ { "resultcode": 0, "resultmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderCancelRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderCancelRequest.json index c14274ca..bfeb1045 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderCancelRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderCancelRequest.json @@ -7,4 +7,4 @@ "cancel_reason": "", "delivery_sign": "123456", "shop_no": "shop_no_111" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderCancelResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderCancelResponse.json index 640bd8ed..cfc58e6d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderCancelResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderCancelResponse.json @@ -3,4 +3,4 @@ "resultmsg": "ok", "deduct_fee": 5, "desc": "blabla" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderConfirmReturnRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderConfirmReturnRequest.json index ae2c592b..78c7aa49 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderConfirmReturnRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderConfirmReturnRequest.json @@ -5,4 +5,4 @@ "waybill_id": "123456", "remark": "remark", "delivery_sign": "123456" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderConfirmReturnResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderConfirmReturnResponse.json index 36b8efea..2b7d9794 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderConfirmReturnResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderConfirmReturnResponse.json @@ -1,4 +1,4 @@ { "resultcode": 0, "resultmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreAddRequest.json index 37dab2cd..47641d01 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreAddRequest.json @@ -45,8 +45,8 @@ "address_detail": "2号楼202", "city": "北京市", "coordinate_type": 0, - "lat": 40.1529600000, - "lng": 116.5060300000, + "lat": 40.15296, + "lng": 116.50603, "name": "老王", "phone": "18512345678" }, @@ -55,8 +55,8 @@ "address_detail": "1号楼101", "city": "北京市", "coordinate_type": 0, - "lat": 40.4486120000, - "lng": 116.3830750000, + "lat": 40.448612, + "lng": 116.383075, "name": "刘一", "phone": "13712345678" }, @@ -70,4 +70,4 @@ "sub_biz_id": "sub_biz_id_1", "shop_order_id": "SFTC_001", "shopid": "122222222" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreAddResponse.json index 5a52b0af..28d37f6d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreAddResponse.json @@ -9,4 +9,4 @@ "distance": 1000, "dispatch_duration": 300, "delivery_token": "1111111" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreCancelRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreCancelRequest.json index c14274ca..bfeb1045 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreCancelRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreCancelRequest.json @@ -7,4 +7,4 @@ "cancel_reason": "", "delivery_sign": "123456", "shop_no": "shop_no_111" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreCancelResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreCancelResponse.json index 640bd8ed..cfc58e6d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreCancelResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderPreCancelResponse.json @@ -3,4 +3,4 @@ "resultmsg": "ok", "deduct_fee": 5, "desc": "blabla" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderReAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderReAddRequest.json index cb61cbcc..21aba601 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderReAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderReAddRequest.json @@ -45,8 +45,8 @@ "address_detail": "2号楼202", "city": "北京市", "coordinate_type": 0, - "lat": 40.1529600000, - "lng": 116.5060300000, + "lat": 40.15296, + "lng": 116.50603, "name": "老王", "phone": "18512345678" }, @@ -55,8 +55,8 @@ "address_detail": "1号楼101", "city": "北京市", "coordinate_type": 0, - "lat": 40.4486120000, - "lng": 116.3830750000, + "lat": 40.448612, + "lng": 116.383075, "name": "刘一", "phone": "13712345678" }, @@ -71,4 +71,4 @@ "shop_order_id": "SFTC_001", "shopid": "122222222", "delivery_token": "xxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderReAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderReAddResponse.json index 23929c4d..83c5578c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderReAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessOrderReAddResponse.json @@ -12,4 +12,4 @@ "finish_code": 1024, "pickup_code": 2048, "dispatch_duration": 300 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessRealMockUpdateOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessRealMockUpdateOrderRequest.json index 2a14d757..408c4a1b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessRealMockUpdateOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessRealMockUpdateOrderRequest.json @@ -5,4 +5,4 @@ "order_status": 101, "action_msg": "", "delivery_sign": "xxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessRealMockUpdateOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessRealMockUpdateOrderResponse.json index 36b8efea..2b7d9794 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessRealMockUpdateOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessRealMockUpdateOrderResponse.json @@ -1,4 +1,4 @@ { "resultcode": 0, "resultmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessShopAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessShopAddRequest.json index f3b5010b..410785d5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessShopAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessShopAddRequest.json @@ -1,3 +1,3 @@ { "delivery_id": "SFTC" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessShopAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessShopAddResponse.json index 36b8efea..2b7d9794 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessShopAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessShopAddResponse.json @@ -1,4 +1,4 @@ { "resultcode": 0, "resultmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessShopGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessShopGetResponse.json index 01456963..17ea45bf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessShopGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessShopGetResponse.json @@ -13,4 +13,4 @@ "audit_result": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessTestUpdateOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessTestUpdateOrderRequest.json index 7f3d07f9..a9516f36 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessTestUpdateOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessTestUpdateOrderRequest.json @@ -4,4 +4,4 @@ "action_time": 12345678, "order_status": 101, "action_msg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessTestUpdateOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessTestUpdateOrderResponse.json index 36b8efea..2b7d9794 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessTestUpdateOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinExpress/LocalBusiness/CgibinExpressLocalBusinessTestUpdateOrderResponse.json @@ -1,4 +1,4 @@ { "resultcode": 0, "resultmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishBatchGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishBatchGetRequest.json index 31c031bb..848f6bfc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishBatchGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishBatchGetRequest.json @@ -2,4 +2,4 @@ "offset": 0, "count": 0, "no_content": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishBatchGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishBatchGetResponse.json index 2bdd821a..a82c5678 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishBatchGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishBatchGetResponse.json @@ -24,4 +24,4 @@ "update_time": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishDeleteRequest.json index 2b3a2a36..15e990c3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishDeleteRequest.json @@ -1,4 +1,4 @@ { "article_id": "ARTICLE_ID", "index": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetArticleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetArticleRequest.json index c983d0de..e7faab1c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetArticleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetArticleRequest.json @@ -1,3 +1,3 @@ { "article_id": "ARTICLE_ID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetArticleResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetArticleResponse.json index 5fbe0b2f..7ad701e2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetArticleResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetArticleResponse.json @@ -14,4 +14,4 @@ "is_deleted": false } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetRequest.json index f7602de7..97c4be52 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetRequest.json @@ -1,3 +1,3 @@ { "publish_id": "100000001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetResponse.json index 7c4b70cc..a4774b87 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishGetResponse.json @@ -12,4 +12,4 @@ ] }, "fail_idx": [] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishSubmitRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishSubmitRequest.json index eac4910f..52c7fbde 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishSubmitRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishSubmitRequest.json @@ -1,3 +1,3 @@ { "media_id": "MEDIA_ID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishSubmitResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishSubmitResponse.json index e7aa2b87..e800f6bc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishSubmitResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinFreePublish/CgibinFreePublishSubmitResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "publish_id": "100000001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideAddGuideAccountRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideAddGuideAccountRequest.json index e69ca186..6760678a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideAddGuideAccountRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideAddGuideAccountRequest.json @@ -2,4 +2,4 @@ "guide_account": "wx_account", "guide_headimgurl": "xxxxxxx", "guide_nickname": "张三" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideDeleteGuideAccountRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideDeleteGuideAccountRequest.json index 54baa827..e71ced03 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideDeleteGuideAccountRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideDeleteGuideAccountRequest.json @@ -1,3 +1,3 @@ { "guide_account": "wx_account" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideGetGuideAccountResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideGetGuideAccountResponse.json index 5076b6b3..291c9fff 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideGetGuideAccountResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideGetGuideAccountResponse.json @@ -5,4 +5,4 @@ "guide_openid": "0", "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideUpdateGuideAccountRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideUpdateGuideAccountRequest.json index 5cd717fb..0891ea19 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideUpdateGuideAccountRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Account/CgibinGuideUpdateGuideAccountRequest.json @@ -1,4 +1,4 @@ { "guide_account": "wx_account", "guide_nickname": "张三" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerChatRecord/CgibinGuideGetGuideBuyerChatRecordRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerChatRecord/CgibinGuideGetGuideBuyerChatRecordRequest.json index 3cad5a59..b57ee4fa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerChatRecord/CgibinGuideGetGuideBuyerChatRecordRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerChatRecord/CgibinGuideGetGuideBuyerChatRecordRequest.json @@ -5,4 +5,4 @@ "end_time": 232323, "page": 0, "num": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerChatRecord/CgibinGuideGetGuideBuyerChatRecordResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerChatRecord/CgibinGuideGetGuideBuyerChatRecordResponse.json index a95bcf7d..3b2faccb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerChatRecord/CgibinGuideGetGuideBuyerChatRecordResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerChatRecord/CgibinGuideGetGuideBuyerChatRecordResponse.json @@ -12,4 +12,4 @@ ], "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideAddGuideBuyerRelationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideAddGuideBuyerRelationRequest.json index 541f179a..4d30a02d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideAddGuideBuyerRelationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideAddGuideBuyerRelationRequest.json @@ -12,4 +12,4 @@ "buyer_nickname": "李四" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideAddGuideBuyerRelationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideAddGuideBuyerRelationResponse.json index 2080ee1e..29519960 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideAddGuideBuyerRelationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideAddGuideBuyerRelationResponse.json @@ -13,4 +13,4 @@ "openid": "yyyyyyyy" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideDeleteGuideBuyerRelationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideDeleteGuideBuyerRelationRequest.json index 139d0b50..743cffa3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideDeleteGuideBuyerRelationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideDeleteGuideBuyerRelationRequest.json @@ -1,8 +1,5 @@ { "guide_account": "wx_account", "openid": "xxxxxxx", - "openid_list": [ - "xxxxxxx", - "yyyyyyyy" - ] -} \ No newline at end of file + "openid_list": ["xxxxxxx", "yyyyyyyy"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideDeleteGuideBuyerRelationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideDeleteGuideBuyerRelationResponse.json index 2080ee1e..29519960 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideDeleteGuideBuyerRelationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideDeleteGuideBuyerRelationResponse.json @@ -13,4 +13,4 @@ "openid": "yyyyyyyy" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationByBuyerRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationByBuyerRequest.json index 65d91202..c2b8194e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationByBuyerRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationByBuyerRequest.json @@ -1,3 +1,3 @@ { "openid": "xxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationByBuyerResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationByBuyerResponse.json index 5692dafc..8ae2e1e7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationByBuyerResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationByBuyerResponse.json @@ -6,4 +6,4 @@ "create_time": 11223344, "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationListRequest.json index 46078ff6..5c6757da 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationListRequest.json @@ -2,4 +2,4 @@ "guide_account": "wx_account", "page": 0, "num": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationListResponse.json index 120bf402..5b664ae1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationListResponse.json @@ -9,4 +9,4 @@ ], "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationRequest.json index 85296ddf..4ff29345 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationRequest.json @@ -1,4 +1,4 @@ { "guide_account": "wx_account", "openid": "xxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationResponse.json index e3a0739e..c903a984 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideGetGuideBuyerRelationResponse.json @@ -4,4 +4,4 @@ "create_time": 11223344, "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideRebindGuideAccountForBuyerRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideRebindGuideAccountForBuyerRequest.json index 8e54cebd..0f55bcb3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideRebindGuideAccountForBuyerRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideRebindGuideAccountForBuyerRequest.json @@ -2,8 +2,5 @@ "old_guide_account": "wx_account", "new_guide_account": "wx_account", "openid": "xxxxxxx", - "openid_list": [ - "xxxxxxx", - "yyyyyyyy" - ] -} \ No newline at end of file + "openid_list": ["xxxxxxx", "yyyyyyyy"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideRebindGuideAccountForBuyerResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideRebindGuideAccountForBuyerResponse.json index 2080ee1e..29519960 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideRebindGuideAccountForBuyerResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideRebindGuideAccountForBuyerResponse.json @@ -13,4 +13,4 @@ "openid": "yyyyyyyy" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideUpdateGuideBuyerRelationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideUpdateGuideBuyerRelationRequest.json index f55ad43d..5d652503 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideUpdateGuideBuyerRelationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/BuyerRelation/CgibinGuideUpdateGuideBuyerRelationRequest.json @@ -2,4 +2,4 @@ "guide_account": "wx_account", "openid": "xxxxxx", "buyer_nickname": "张三" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideGetGuideAccountConfigResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideGetGuideAccountConfigResponse.json index 4bb61fd2..6240fc95 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideGetGuideAccountConfigResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideGetGuideAccountConfigResponse.json @@ -2,10 +2,10 @@ "errcode": 0, "errmsg": "ok", "black_keyword": { - "values": [ "敏感词1", "敏感词2" ], + "values": ["敏感词1", "敏感词2"], "updatetime": 11111 }, "guide_auto_reply": { "content": "自动回复" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideGetGuideConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideGetGuideConfigRequest.json index 2ae6b408..85e49674 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideGetGuideConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideGetGuideConfigRequest.json @@ -1,3 +1,3 @@ { "guide_account": "张三" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideGetGuideConfigResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideGetGuideConfigResponse.json index d9383722..e6fdbd84 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideGetGuideConfigResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideGetGuideConfigResponse.json @@ -17,4 +17,4 @@ "content": "abc", "updatetime": 1589270333 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideSetGuideAccountConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideSetGuideAccountConfigRequest.json index 63f22e3e..0dfb96b9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideSetGuideAccountConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideSetGuideAccountConfigRequest.json @@ -1,9 +1,9 @@ { "is_delete": false, "black_keyword": { - "values": [ "敏感词1", "敏感词2" ] + "values": ["敏感词1", "敏感词2"] }, "guide_auto_reply": { "content": "自动回复" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideSetGuideConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideSetGuideConfigRequest.json index fd4c547d..7d574337 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideSetGuideConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Config/CgibinGuideSetGuideConfigRequest.json @@ -14,4 +14,4 @@ "content": "{\"media_id\":\"abc\", \"title\":\"abc\", \"path\":\"abc\", \"appid\":\"abc\"}", "msgtype": "3" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideAddGuide2GuideGroupRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideAddGuide2GuideGroupRequest.json index 0435b294..5152a74b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideAddGuide2GuideGroupRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideAddGuide2GuideGroupRequest.json @@ -1,4 +1,4 @@ { "group_id": "121", "guide_account": "xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideDeleteGuide2GuideGroupRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideDeleteGuide2GuideGroupRequest.json index 0435b294..5152a74b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideDeleteGuide2GuideGroupRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideDeleteGuide2GuideGroupRequest.json @@ -1,4 +1,4 @@ { "group_id": "121", "guide_account": "xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideDeleteGuideGroupRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideDeleteGuideGroupRequest.json index e0c1a3b9..ca3a2cf6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideDeleteGuideGroupRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideDeleteGuideGroupRequest.json @@ -1,3 +1,3 @@ { "group_id": "11212" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupByGuideRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupByGuideRequest.json index bda97560..6aa064bf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupByGuideRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupByGuideRequest.json @@ -1,3 +1,3 @@ { "guide_account": "xxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupByGuideResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupByGuideResponse.json index 50cc8c3f..5b3fd30e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupByGuideResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupByGuideResponse.json @@ -1,5 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "group_id_list": [ 12736, 12238 ] -} \ No newline at end of file + "group_id_list": [12736, 12238] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupInfoRequest.json index 2e19b705..7727d78c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupInfoRequest.json @@ -2,4 +2,4 @@ "group_id": "1212", "page": 0, "num": 100 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupInfoResponse.json index 8f473c3b..876fe868 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGroupInfoResponse.json @@ -11,4 +11,4 @@ } ], "total_num": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGuideGroupListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGuideGroupListResponse.json index 26e77398..1e28fc2f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGuideGroupListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideGetGuideGroupListResponse.json @@ -21,4 +21,4 @@ "update_time": 3434 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideNewGuideGroupRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideNewGuideGroupRequest.json index 6dcb4c69..bc2b4469 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideNewGuideGroupRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideNewGuideGroupRequest.json @@ -1,3 +1,3 @@ { "group_name": "test" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideNewGuideGroupResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideNewGuideGroupResponse.json index fd2c8d02..c68e2bbe 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideNewGuideGroupResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Group/CgibinGuideNewGuideGroupResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "group_id": "0000000001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideAddGuideMassSendJobRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideAddGuideMassSendJobRequest.json index a79e57ca..43e306bf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideAddGuideMassSendJobRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideAddGuideMassSendJobRequest.json @@ -3,9 +3,7 @@ "task_name": "testtask_name111", "task_remark": "testtask_remark111", "push_time": 1589010582, - "openid": [ - "yyyyyyyy" - ], + "openid": ["yyyyyyyy"], "material": [ { "type": 1, @@ -23,4 +21,4 @@ "appid": "wxzzzzzzzzzzzz" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideAddGuideMassSendJobResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideAddGuideMassSendJobResponse.json index f70b96c9..2cda1092 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideAddGuideMassSendJobResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideAddGuideMassSendJobResponse.json @@ -1,11 +1,10 @@ { - "errcode": 0, - "errmsg": "ok", - "task_result": [{ - "task_id": 1332519773019865088, - "openid": [ - "xxxxxx", - "yyyyyy" - ] - }] -} \ No newline at end of file + "errcode": 0, + "errmsg": "ok", + "task_result": [ + { + "task_id": 1332519773019865088, + "openid": ["xxxxxx", "yyyyyy"] + } + ] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideCancelGuideMassSendJobRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideCancelGuideMassSendJobRequest.json index 9e46f666..73f3a463 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideCancelGuideMassSendJobRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideCancelGuideMassSendJobRequest.json @@ -1,3 +1,3 @@ { "task_id": 1332414111522783232 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobListRequest.json index 5e07a06f..88a0f631 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobListRequest.json @@ -2,4 +2,4 @@ "guide_account": "xxxxxxxx", "offset": 0, "limit": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobListResponse.json index 356ff2d4..8493ea07 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobListResponse.json @@ -37,4 +37,4 @@ } ], "total_count": 4 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobRequest.json index 9e46f666..73f3a463 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobRequest.json @@ -1,3 +1,3 @@ { "task_id": 1332414111522783232 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobResponse.json index f39e0c83..a6332438 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideGetGuideMassSendJobResponse.json @@ -34,4 +34,4 @@ ], "task_status": 1 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideUpdateGuideMassSendJobRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideUpdateGuideMassSendJobRequest.json index fc645b33..0c9bf6f6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideUpdateGuideMassSendJobRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/MassSendJob/CgibinGuideUpdateGuideMassSendJobRequest.json @@ -3,9 +3,7 @@ "task_name": "testtask_name111", "task_remark": "testtask_remark111", "push_time": 1589010582, - "openid": [ - "yyyyyyyy" - ], + "openid": ["yyyyyyyy"], "material": [ { "type": 1, @@ -23,4 +21,4 @@ "appid": "wxzzzzzzzzzzzz" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideDeleteGuideCardMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideDeleteGuideCardMaterialRequest.json index db9e4009..12cbf75c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideDeleteGuideCardMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideDeleteGuideCardMaterialRequest.json @@ -3,4 +3,4 @@ "title": "xxxxx", "path": "xxxxxxxx", "appid": "xxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideDeleteGuideImageMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideDeleteGuideImageMaterialRequest.json index 14bceda8..d1e34e20 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideDeleteGuideImageMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideDeleteGuideImageMaterialRequest.json @@ -1,4 +1,4 @@ { "type": 0, "picurl": "xxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideDeleteGuideWordMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideDeleteGuideWordMaterialRequest.json index a1447fdc..1a4be93f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideDeleteGuideWordMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideDeleteGuideWordMaterialRequest.json @@ -1,4 +1,4 @@ { "type": 0, "word": "hello world" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideCardMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideCardMaterialRequest.json index 686a2427..030cb8eb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideCardMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideCardMaterialRequest.json @@ -1,3 +1,3 @@ { "type": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideCardMaterialResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideCardMaterialResponse.json index 23aa71ba..3eda55e8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideCardMaterialResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideCardMaterialResponse.json @@ -11,4 +11,4 @@ "slave_id": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideImageMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideImageMaterialRequest.json index d956788b..97b0eac8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideImageMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideImageMaterialRequest.json @@ -2,4 +2,4 @@ "type": 0, "start": 0, "num": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideImageMaterialResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideImageMaterialResponse.json index 7983464c..2971b25b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideImageMaterialResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideImageMaterialResponse.json @@ -7,4 +7,4 @@ } ], "total_num": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideWordMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideWordMaterialRequest.json index d956788b..97b0eac8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideWordMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideWordMaterialRequest.json @@ -2,4 +2,4 @@ "type": 0, "start": 0, "num": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideWordMaterialResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideWordMaterialResponse.json index 2e737f6b..99141a19 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideWordMaterialResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideGetGuideWordMaterialResponse.json @@ -8,4 +8,4 @@ } ], "total_num": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideSetGuideCardMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideSetGuideCardMaterialRequest.json index 6252f7dd..94ce0207 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideSetGuideCardMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideSetGuideCardMaterialRequest.json @@ -4,4 +4,4 @@ "title": "xxxxx", "path": "xxxxxxxx", "appid": "xxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideSetGuideImageMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideSetGuideImageMaterialRequest.json index 192400a0..e7087977 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideSetGuideImageMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideSetGuideImageMaterialRequest.json @@ -1,4 +1,4 @@ { "type": 0, "media_id": "xxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideSetGuideWordMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideSetGuideWordMaterialRequest.json index a1447fdc..1a4be93f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideSetGuideWordMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Material/CgibinGuideSetGuideWordMaterialRequest.json @@ -1,4 +1,4 @@ { "type": 0, "word": "hello world" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Qrcode/CgibinGuideCreateQrcodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Qrcode/CgibinGuideCreateQrcodeRequest.json index 54baa827..e71ced03 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Qrcode/CgibinGuideCreateQrcodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Qrcode/CgibinGuideCreateQrcodeRequest.json @@ -1,3 +1,3 @@ { "guide_account": "wx_account" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Qrcode/CgibinGuideCreateQrcodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Qrcode/CgibinGuideCreateQrcodeResponse.json index a648bdb3..e46b4aae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Qrcode/CgibinGuideCreateQrcodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Qrcode/CgibinGuideCreateQrcodeResponse.json @@ -2,4 +2,4 @@ "qrcode_url": "xxxxxxx", "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideBuyerDisplayTagRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideBuyerDisplayTagRequest.json index c8a6cfdc..80668166 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideBuyerDisplayTagRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideBuyerDisplayTagRequest.json @@ -1,5 +1,5 @@ { "guide_account": "wx_account", "openid": "xxxxxxx", - "display_tag_list": [ "test1", "test2" ] -} \ No newline at end of file + "display_tag_list": ["test1", "test2"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideBuyerTagRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideBuyerTagRequest.json index c1b5a7c7..d25dd141 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideBuyerTagRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideBuyerTagRequest.json @@ -1,9 +1,6 @@ { "guide_account": "wx_account", "openid": "xxxxxxx", - "openid_list": [ - "xxxxxxx", - "yyyyyyyy" - ], + "openid_list": ["xxxxxxx", "yyyyyyyy"], "tag_value": "tag1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideBuyerTagResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideBuyerTagResponse.json index 2080ee1e..29519960 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideBuyerTagResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideBuyerTagResponse.json @@ -13,4 +13,4 @@ "openid": "yyyyyyyy" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideTagOptionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideTagOptionRequest.json index c0c2f989..39e53923 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideTagOptionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideAddGuideTagOptionRequest.json @@ -1,4 +1,4 @@ { "tag_name": "xxxxxxx", - "tag_values": [ "标签1", "标签2" ] -} \ No newline at end of file + "tag_values": ["标签1", "标签2"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideDeleteGuideBuyerTagRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideDeleteGuideBuyerTagRequest.json index c1b5a7c7..d25dd141 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideDeleteGuideBuyerTagRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideDeleteGuideBuyerTagRequest.json @@ -1,9 +1,6 @@ { "guide_account": "wx_account", "openid": "xxxxxxx", - "openid_list": [ - "xxxxxxx", - "yyyyyyyy" - ], + "openid_list": ["xxxxxxx", "yyyyyyyy"], "tag_value": "tag1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideDeleteGuideBuyerTagResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideDeleteGuideBuyerTagResponse.json index 2080ee1e..29519960 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideDeleteGuideBuyerTagResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideDeleteGuideBuyerTagResponse.json @@ -13,4 +13,4 @@ "openid": "yyyyyyyy" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideDeleteGuideTagOptionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideDeleteGuideTagOptionRequest.json index 3a492909..297873ee 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideDeleteGuideTagOptionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideDeleteGuideTagOptionRequest.json @@ -1,3 +1,3 @@ { "tag_name": "xxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerDisplayTagRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerDisplayTagRequest.json index 97bc8cb5..d2b8701f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerDisplayTagRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerDisplayTagRequest.json @@ -1,4 +1,4 @@ { "guide_account": "张三", "openid": "xxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerDisplayTagResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerDisplayTagResponse.json index 9140f4ca..814fa86d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerDisplayTagResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerDisplayTagResponse.json @@ -1,5 +1,5 @@ { - "display_tag_list": [ "test1", "test2" ], + "display_tag_list": ["test1", "test2"], "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerTagRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerTagRequest.json index 85296ddf..4ff29345 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerTagRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerTagRequest.json @@ -1,4 +1,4 @@ { "guide_account": "wx_account", "openid": "xxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerTagResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerTagResponse.json index a8a3a91d..830c772f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerTagResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideBuyerTagResponse.json @@ -1,5 +1,5 @@ { - "tag_values": [ "tag1_1", "tag2_1" ], + "tag_values": ["tag1_1", "tag2_1"], "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideTagOptionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideTagOptionResponse.json index 5723b86e..0210115d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideTagOptionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideGetGuideTagOptionResponse.json @@ -2,21 +2,21 @@ "options": [ { "tag_name": "tag4", - "tag_values": [ "标签4" ] + "tag_values": ["标签4"] }, { "tag_name": "tag3", - "tag_values": [ "标签33", "标签22" ] + "tag_values": ["标签33", "标签22"] }, { "tag_name": "tag2", - "tag_values": [ "标签1", "标签2" ] + "tag_values": ["标签1", "标签2"] }, { "tag_name": "tag1", - "tag_values": [ "标签66" ] + "tag_values": ["标签66"] } ], "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideNewGuideTagOptionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideNewGuideTagOptionRequest.json index c0c2f989..39e53923 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideNewGuideTagOptionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideNewGuideTagOptionRequest.json @@ -1,4 +1,4 @@ { "tag_name": "xxxxxxx", - "tag_values": [ "标签1", "标签2" ] -} \ No newline at end of file + "tag_values": ["标签1", "标签2"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideQueryGuideBuyerByTagRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideQueryGuideBuyerByTagRequest.json index 424842cd..a96f2f23 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideQueryGuideBuyerByTagRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideQueryGuideBuyerByTagRequest.json @@ -1,5 +1,5 @@ { "guide_account": "xxxxxxx", "push_count": 0, - "tag_values": [ "tag1_1", "tag2_1" ] -} \ No newline at end of file + "tag_values": ["tag1_1", "tag2_1"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideQueryGuideBuyerByTagResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideQueryGuideBuyerByTagResponse.json index 04e71b54..18adf2dd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideQueryGuideBuyerByTagResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinGuide/Tag/CgibinGuideQueryGuideBuyerByTagResponse.json @@ -1,5 +1,5 @@ { - "openid_list": [ "xxx1", "xxx2" ], + "openid_list": ["xxx1", "xxx2"], "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddMaterialRequest.json index 374a30e5..b5ecaca7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddMaterialRequest.json @@ -1,4 +1,4 @@ { "title": "VIDEO_TITLE", "introduction": "INTRODUCTION" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddMaterialResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddMaterialResponse.json index fb96980e..93420f43 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddMaterialResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddMaterialResponse.json @@ -1,4 +1,4 @@ { "media_id": "MEDIA_ID", "url": "URL" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddNewsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddNewsRequest.json index 16ad0537..a31d18e6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddNewsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddNewsRequest.json @@ -12,4 +12,4 @@ "only_fans_can_comment": 1 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddNewsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddNewsResponse.json index eac4910f..52c7fbde 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddNewsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialAddNewsResponse.json @@ -1,3 +1,3 @@ { "media_id": "MEDIA_ID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialBatchGetMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialBatchGetMaterialRequest.json index 787f3e1d..1f794bfe 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialBatchGetMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialBatchGetMaterialRequest.json @@ -2,4 +2,4 @@ "type": "TYPE", "offset": 0, "count": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialBatchGetMaterialResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialBatchGetMaterialResponse.json index c286943b..eac2301d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialBatchGetMaterialResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialBatchGetMaterialResponse.json @@ -29,4 +29,4 @@ "update_time": 123456 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsNewsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsNewsRequest.json index eac4910f..52c7fbde 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsNewsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsNewsRequest.json @@ -1,3 +1,3 @@ { "media_id": "MEDIA_ID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsNewsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsNewsResponse.json index c21ad1e0..61049b89 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsNewsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsNewsResponse.json @@ -11,4 +11,4 @@ "content_source_url": "CONTENT_SOURCE_URL" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsVideoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsVideoRequest.json index eac4910f..52c7fbde 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsVideoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsVideoRequest.json @@ -1,3 +1,3 @@ { "media_id": "MEDIA_ID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsVideoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsVideoResponse.json index bcb7fb0c..46f68be3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsVideoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialAsVideoResponse.json @@ -2,4 +2,4 @@ "title": "TITLE", "description": "DESCRIPTION", "down_url": "DOWN_URL" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialCountResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialCountResponse.json index a25f7380..6e2878ba 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialCountResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialCountResponse.json @@ -3,4 +3,4 @@ "video_count": 0, "image_count": 0, "news_count": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialRequest.json index eac4910f..52c7fbde 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialGetMaterialRequest.json @@ -1,3 +1,3 @@ { "media_id": "MEDIA_ID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialUpdateNewsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialUpdateNewsRequest.json index 28d71cfc..b98e76a9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialUpdateNewsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMaterial/CgibinMaterialUpdateNewsRequest.json @@ -10,4 +10,4 @@ "content": "CONTENT", "content_source_url": "CONTENT_SOURCE_URL" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadImageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadImageResponse.json index d345dd57..c273f022 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadImageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadImageResponse.json @@ -1,3 +1,3 @@ { "url": "http://mmbiz.qpic.cn/mmbiz/gLO17UPS6FS2xsypf378iaNhWacZ1G1UplZYWEYfwvuU6Ont96b1roYs CNFwaRrSaKTPCUdBK9DgEHicsKwWCBRQ/0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadNewsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadNewsRequest.json index 247f4f86..5011a36b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadNewsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadNewsRequest.json @@ -23,4 +23,4 @@ "only_fans_can_comment": 1 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadNewsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadNewsResponse.json index 850449d4..9b9262d7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadNewsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadNewsResponse.json @@ -2,4 +2,4 @@ "type": "news", "media_id": "CsEf3ldqkAYJAU6EJeIkStVDSvffUJ54vqbThMgplD-VJXXof6ctX5fI6-aYyUiQ", "created_at": 1391857799 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadResponse.json index 3a4ab9ea..c8040133 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadResponse.json @@ -2,4 +2,4 @@ "type": "TYPE", "media_id": "MEDIA_ID", "created_at": 123456789 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadVideoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadVideoRequest.json index dda520c9..a2be613b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadVideoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadVideoRequest.json @@ -2,4 +2,4 @@ "media_id": "rF4UdIMfYK3efUfyoddYRMU50zMiRmmt_l0kszupYh_SzrcW5Gaheq05p_lHuOTQ", "title": "TITLE", "description": "Description" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadVideoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadVideoResponse.json index 720a64d0..d1318046 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadVideoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadVideoResponse.json @@ -2,4 +2,4 @@ "type": "video", "media_id": "IhdaAQXuvJtGzwwc0abfXnzeezfO0NgPK6AQYShD8RQYMTtfzbLdBIQkQziv2XJc", "created_at": 1398848981 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/Voice/CgibinMediaVoiceQueryRecognitionResultForTextResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/Voice/CgibinMediaVoiceQueryRecognitionResultForTextResponse.json index 752b3d5e..201a8d0a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/Voice/CgibinMediaVoiceQueryRecognitionResultForTextResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/Voice/CgibinMediaVoiceQueryRecognitionResultForTextResponse.json @@ -1,3 +1,3 @@ { "result": "xxxxxxxxxxxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/Voice/CgibinMediaVoiceTranslateContentResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/Voice/CgibinMediaVoiceTranslateContentResponse.json index 47762a1b..2c6d932b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/Voice/CgibinMediaVoiceTranslateContentResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMedia/Voice/CgibinMediaVoiceTranslateContentResponse.json @@ -1,4 +1,4 @@ { "from_content": "xxxxxxxx", "to_content": "xxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/CgibinGetCurrentSelfMenuInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/CgibinGetCurrentSelfMenuInfoResponse.json index 4bb8001f..86dc0f1b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/CgibinGetCurrentSelfMenuInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/CgibinGetCurrentSelfMenuInfoResponse.json @@ -90,4 +90,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/CgibinMenuCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/CgibinMenuCreateRequest.json index 6f078523..114ebe21 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/CgibinMenuCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/CgibinMenuCreateRequest.json @@ -88,4 +88,4 @@ "article_id": "ARTICLE_ID2" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/CgibinMenuGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/CgibinMenuGetResponse.json index 5b16bed4..a95f34c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/CgibinMenuGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/CgibinMenuGetResponse.json @@ -54,4 +54,4 @@ "menuid": 208396993 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuAddConditionalRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuAddConditionalRequest.json index 1597ee43..9dce427b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuAddConditionalRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuAddConditionalRequest.json @@ -33,4 +33,4 @@ "client_platform_type": "2", "language": "zh_CN" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuAddConditionalResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuAddConditionalResponse.json index f59ece06..15b5c264 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuAddConditionalResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuAddConditionalResponse.json @@ -1,3 +1,3 @@ { "menuid": "208379533" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuDeleteConditionalRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuDeleteConditionalRequest.json index f59ece06..15b5c264 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuDeleteConditionalRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuDeleteConditionalRequest.json @@ -1,3 +1,3 @@ { "menuid": "208379533" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuTryMatchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuTryMatchRequest.json index 54cb1671..b02bc66b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuTryMatchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuTryMatchRequest.json @@ -1,3 +1,3 @@ { "user_id": "weixin" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuTryMatchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuTryMatchResponse.json index 532d4554..b2834f09 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuTryMatchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMenu/Conditional/CgibinMenuTryMatchResponse.json @@ -19,4 +19,4 @@ "sub_button": [] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageCustom/CgibinMessageCustomSendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageCustom/CgibinMessageCustomSendRequest.json index 63e7b6ff..189aea70 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageCustom/CgibinMessageCustomSendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageCustom/CgibinMessageCustomSendRequest.json @@ -62,4 +62,4 @@ "customservice": { "kf_account": "test1@kftest" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageCustom/CgibinMessageCustomTypingRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageCustom/CgibinMessageCustomTypingRequest.json index 1c923bb4..8e21c90c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageCustom/CgibinMessageCustomTypingRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageCustom/CgibinMessageCustomTypingRequest.json @@ -1,4 +1,4 @@ { "touser": "OPENID", "command": "Typing" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageDeviceSubscribe/CgibinMessageDeviceSubscribeSendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageDeviceSubscribe/CgibinMessageDeviceSubscribeSendRequest.json index 73239096..d2a96abd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageDeviceSubscribe/CgibinMessageDeviceSubscribeSendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageDeviceSubscribe/CgibinMessageDeviceSubscribeSendRequest.json @@ -1,5 +1,5 @@ { - "to_openid_list": [ "OPENID_1", "OPENID_2" ], + "to_openid_list": ["OPENID_1", "OPENID_2"], "sn": "XXXXXXX", "template_id": "TEMPLATE_ID", "page": "index", @@ -10,4 +10,4 @@ "value": "2021-09-10 19:00:00" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassDeleteRequest.json index 6d6d2b2c..2864aae0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassDeleteRequest.json @@ -1,4 +1,4 @@ { "msg_id": "201053012", "article_idx": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassGetRequest.json index a63d8c6c..b04298cb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassGetRequest.json @@ -1,3 +1,3 @@ { "msg_id": "201053012" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassGetResponse.json index e22863e7..0de0b239 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassGetResponse.json @@ -1,4 +1,4 @@ { "msg_id": 201053012, "msg_status": "SEND_SUCCESS" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassPreviewRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassPreviewRequest.json index 7c2bbb91..8e7853e5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassPreviewRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassPreviewRequest.json @@ -21,4 +21,4 @@ "card_id": "123dsdajkasd231jhksad", "card_ext": "{\"code\":\"\",\"openid\":\"\",\"timestamp\":\"1402057159\",\"signature\":\"017bb17407c8e0058a66d72dcc61632b70f511ad\"}" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendAllRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendAllRequest.json index eb455eb3..cff0dfaa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendAllRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendAllRequest.json @@ -8,11 +8,7 @@ "content": "CONTENT" }, "images": { - "media_ids": [ - "aaa", - "bbb", - "ccc" - ], + "media_ids": ["aaa", "bbb", "ccc"], "recommend": "xxx", "need_open_comment": 1, "only_fans_can_comment": 0 @@ -32,4 +28,4 @@ "card_id": "123dsdajkasd231jhksad", "card_ext": "{\"code\":\"\",\"openid\":\"\",\"timestamp\":\"1402057159\",\"signature\":\"017bb17407c8e0058a66d72dcc61632b70f511ad\"}" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendAllResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendAllResponse.json index 30879476..73a89427 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendAllResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendAllResponse.json @@ -3,4 +3,4 @@ "errmsg": "preview success", "msg_id": 34182, "msg_data_id": 206227730 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendRequest.json index 5104da86..5b4422b2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendRequest.json @@ -1,18 +1,11 @@ { - "touser": [ - "OPENID1", - "OPENID2" - ], + "touser": ["OPENID1", "OPENID2"], "msgtype": "mpnews", "text": { "content": "CONTENT" }, "images": { - "media_ids": [ - "aaa", - "bbb", - "ccc" - ], + "media_ids": ["aaa", "bbb", "ccc"], "recommend": "xxx", "need_open_comment": 1, "only_fans_can_comment": 0 @@ -32,4 +25,4 @@ "card_id": "123dsdajkasd231jhksad", "card_ext": "{\"code\":\"\",\"openid\":\"\",\"timestamp\":\"1402057159\",\"signature\":\"017bb17407c8e0058a66d72dcc61632b70f511ad\"}" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendResponse.json index 30879476..73a89427 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/CgibinMessageMassSendResponse.json @@ -3,4 +3,4 @@ "errmsg": "preview success", "msg_id": 34182, "msg_data_id": 206227730 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/Speed/CgibinMessageMassSpeedGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/Speed/CgibinMessageMassSpeedGetResponse.json index b668569a..1a77258f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/Speed/CgibinMessageMassSpeedGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/Speed/CgibinMessageMassSpeedGetResponse.json @@ -1,4 +1,4 @@ { "speed": 3, "realspeed": 15 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/Speed/CgibinMessageMassSpeedSetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/Speed/CgibinMessageMassSpeedSetRequest.json index d49a1756..0d1bc58e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/Speed/CgibinMessageMassSpeedSetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageMass/Speed/CgibinMessageMassSpeedSetRequest.json @@ -1,3 +1,3 @@ { "speed": 3 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageSubscribe/CgibinMessageSubscribeBusinessSendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageSubscribe/CgibinMessageSubscribeBusinessSendRequest.json index 556edd08..a7c2c81e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageSubscribe/CgibinMessageSubscribeBusinessSendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageSubscribe/CgibinMessageSubscribeBusinessSendRequest.json @@ -17,4 +17,4 @@ "value": "2019年8月8日" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageSubscribe/CgibinMessageSubscribeSendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageSubscribe/CgibinMessageSubscribeSendRequest.json index 463a6d6b..358949a4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageSubscribe/CgibinMessageSubscribeSendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageSubscribe/CgibinMessageSubscribeSendRequest.json @@ -18,4 +18,4 @@ "value": "广州市新港中路397号" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageTemplate/CgibinMessageTemplateSendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageTemplate/CgibinMessageTemplateSendRequest.json index 60bef19d..28f20015 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageTemplate/CgibinMessageTemplateSendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageTemplate/CgibinMessageTemplateSendRequest.json @@ -28,4 +28,4 @@ "color": "#173177" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageTemplate/CgibinMessageTemplateSendResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageTemplate/CgibinMessageTemplateSendResponse.json index e518afab..02da1ce7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageTemplate/CgibinMessageTemplateSendResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageTemplate/CgibinMessageTemplateSendResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "msgid": 200228332 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageTemplateSubscribe/CgibinMessageTemplateSubscribeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageTemplateSubscribe/CgibinMessageTemplateSubscribeRequest.json index 61daecac..2e09f2f1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageTemplateSubscribe/CgibinMessageTemplateSubscribeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageTemplateSubscribe/CgibinMessageTemplateSubscribeRequest.json @@ -10,4 +10,4 @@ "color": "COLOR" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageWxopen/CgibinMessageWxopenActivityIdCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageWxopen/CgibinMessageWxopenActivityIdCreateRequest.json index 26522ec5..4eb96d51 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageWxopen/CgibinMessageWxopenActivityIdCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageWxopen/CgibinMessageWxopenActivityIdCreateRequest.json @@ -1,4 +1,4 @@ { "openid": "OPENID", "unionid": "UNIONID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageWxopen/CgibinMessageWxopenActivityIdCreateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageWxopen/CgibinMessageWxopenActivityIdCreateResponse.json index ff2bff3a..8bb2f637 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageWxopen/CgibinMessageWxopenActivityIdCreateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageWxopen/CgibinMessageWxopenActivityIdCreateResponse.json @@ -1,4 +1,4 @@ { "activity_id": "ACTIVITYID", "expiration_time": 12345 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageWxopen/CgibinMessageWxopenUpdatableMessageSendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageWxopen/CgibinMessageWxopenUpdatableMessageSendRequest.json index 7b120ed7..83c23736 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageWxopen/CgibinMessageWxopenUpdatableMessageSendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMessageWxopen/CgibinMessageWxopenUpdatableMessageSendRequest.json @@ -13,4 +13,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasCancelPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasCancelPayRequest.json index b4facdfd..889713c6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasCancelPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasCancelPayRequest.json @@ -7,4 +7,4 @@ "pf": "android", "bill_no": "BillNo_123", "sig": "8bd582a6b06e38a1346fc335ebcb11c8990241bbe23118eb3d22f0ef42870a6a" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasCancelPayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasCancelPayResponse.json index 3f789f36..ce9287ed 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasCancelPayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasCancelPayResponse.json @@ -1,3 +1,3 @@ { "bill_no": "BillNo_123" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasGetBalanceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasGetBalanceRequest.json index 8a6f1d95..7d4a5a9c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasGetBalanceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasGetBalanceRequest.json @@ -6,4 +6,4 @@ "zone_id": "1", "pf": "android", "sig": "d1f0a41272f9b85618361323e1b19cd8cb0213f21b935aeaa39c160892031e97" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasGetBalanceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasGetBalanceResponse.json index cf1ab949..4202ed01 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasGetBalanceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasGetBalanceResponse.json @@ -6,4 +6,4 @@ "save_sum": 0, "cost_sum": 0, "present_sum": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPayRequest.json index af75eb32..aa30702c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPayRequest.json @@ -8,4 +8,4 @@ "amt": 123, "bill_no": "BillNo_123", "sig": "f705c7351830125282ffc6d3c22c81db19b50a748f60f7c8f267e59152941d83" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPayResponse.json index 78a97b31..da75e403 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPayResponse.json @@ -2,4 +2,4 @@ "bill_no": "1578020538", "balance": 0, "used_gen_amt": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPresentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPresentRequest.json index 6214ba03..1b40711b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPresentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPresentRequest.json @@ -8,4 +8,4 @@ "present_counts": 233, "bill_no": "BillNo_123", "sig": "e53e5241bbb014b3a9fcc221d66fecab8734b53fe94d7a8c65180e175e29f443" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPresentResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPresentResponse.json index 2efc12fd..c95c7dae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPresentResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/CgibinMidasPresentResponse.json @@ -1,4 +1,4 @@ { "bill_no": "BillNo_123", "balance": 200 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxCancelPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxCancelPayRequest.json index b4facdfd..889713c6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxCancelPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxCancelPayRequest.json @@ -7,4 +7,4 @@ "pf": "android", "bill_no": "BillNo_123", "sig": "8bd582a6b06e38a1346fc335ebcb11c8990241bbe23118eb3d22f0ef42870a6a" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxCancelPayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxCancelPayResponse.json index 3f789f36..ce9287ed 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxCancelPayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxCancelPayResponse.json @@ -1,3 +1,3 @@ { "bill_no": "BillNo_123" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxGetBalanceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxGetBalanceRequest.json index 8a6f1d95..7d4a5a9c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxGetBalanceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxGetBalanceRequest.json @@ -6,4 +6,4 @@ "zone_id": "1", "pf": "android", "sig": "d1f0a41272f9b85618361323e1b19cd8cb0213f21b935aeaa39c160892031e97" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxGetBalanceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxGetBalanceResponse.json index cf1ab949..4202ed01 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxGetBalanceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxGetBalanceResponse.json @@ -6,4 +6,4 @@ "save_sum": 0, "cost_sum": 0, "present_sum": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPayRequest.json index af75eb32..aa30702c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPayRequest.json @@ -8,4 +8,4 @@ "amt": 123, "bill_no": "BillNo_123", "sig": "f705c7351830125282ffc6d3c22c81db19b50a748f60f7c8f267e59152941d83" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPayResponse.json index 78a97b31..da75e403 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPayResponse.json @@ -2,4 +2,4 @@ "bill_no": "1578020538", "balance": 0, "used_gen_amt": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPresentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPresentRequest.json index 6214ba03..1b40711b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPresentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPresentRequest.json @@ -8,4 +8,4 @@ "present_counts": 233, "bill_no": "BillNo_123", "sig": "e53e5241bbb014b3a9fcc221d66fecab8734b53fe94d7a8c65180e175e29f443" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPresentResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPresentResponse.json index 2efc12fd..c95c7dae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPresentResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinMidas/Sandbox/CgibinMidasSandboxPresentResponse.json @@ -1,4 +1,4 @@ { "bill_no": "BillNo_123", "balance": 200 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenBindRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenBindRequest.json index f6a6832f..00eaceaf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenBindRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenBindRequest.json @@ -1,4 +1,4 @@ { "appid": "auth_appid_value", "open_appid": "open_appid_value" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenCreateRequest.json index 3c6e1dc7..3c544d59 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenCreateRequest.json @@ -1,3 +1,3 @@ { "appid": "auth_appid_value" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenCreateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenCreateResponse.json index 83de9b92..2671413c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenCreateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenCreateResponse.json @@ -2,4 +2,4 @@ "open_appid": "appid_value", "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenGetRequest.json index 3c6e1dc7..3c544d59 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenGetRequest.json @@ -1,3 +1,3 @@ { "appid": "auth_appid_value" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenGetResponse.json index 83de9b92..2671413c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenGetResponse.json @@ -2,4 +2,4 @@ "open_appid": "appid_value", "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenHaveResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenHaveResponse.json index f5ca7831..96dc9159 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenHaveResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenHaveResponse.json @@ -2,4 +2,4 @@ "have_open": true, "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenUnbindRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenUnbindRequest.json index f6a6832f..00eaceaf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenUnbindRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpen/CgibinOpenUnbindRequest.json @@ -1,4 +1,4 @@ { "appid": "auth_appid_value", "open_appid": "open_appid_value" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinClearQuotaRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinClearQuotaRequest.json index bc6f424b..47c6a5ed 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinClearQuotaRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinClearQuotaRequest.json @@ -1,3 +1,3 @@ { "appid": "APPID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiQuotaGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiQuotaGetRequest.json index e86ae3e1..32a97205 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiQuotaGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiQuotaGetRequest.json @@ -1,3 +1,3 @@ { "cgi_path": "/wxa/gettemplatedraftlist" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiQuotaGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiQuotaGetResponse.json index 6ab6303a..3138896b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiQuotaGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiQuotaGetResponse.json @@ -6,4 +6,4 @@ "used": 0, "remain": 0 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiRequestIdGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiRequestIdGetRequest.json index 0c0265d8..a977675d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiRequestIdGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiRequestIdGetRequest.json @@ -1,3 +1,3 @@ { "rid": "61725984-6126f6f9-040f19c4" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiRequestIdGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiRequestIdGetResponse.json index a9886ac8..4b6cf636 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiRequestIdGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinOpenApi/CgibinOpenApiRequestIdGetResponse.json @@ -8,5 +8,4 @@ "request_body": "", "response_body": "{\"errcode\":45009,\"errmsg\":\"reach max api daily quota limit rid: 617682e0-09059ac5-34a8e2ea\"}" } - } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIAddPOIRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIAddPOIRequest.json index 5e50ffc8..5c9f501f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIAddPOIRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIAddPOIRequest.json @@ -9,7 +9,7 @@ "district": "不超过10个字", "address": "门店所在的详细街道地址(不要填写省市信息):不超过80个字", "telephone": "不超53个字符(不可以出现文字)", - "categories": [ "美食,小吃快餐" ], + "categories": ["美食,小吃快餐"], "offset_type": 1, "longitude": 115.32375, "latitude": 25.097486, @@ -28,4 +28,4 @@ "avg_price": 35 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIDeletePOIRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIDeletePOIRequest.json index 837b3ac9..875e1adc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIDeletePOIRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIDeletePOIRequest.json @@ -1,3 +1,3 @@ { "poi_id": "271262077" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIListRequest.json index 74cab01c..12b8fb68 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIListRequest.json @@ -1,4 +1,4 @@ { "begin": 0, "limit": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIListResponse.json index e5c6992c..9aecf192 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIListResponse.json @@ -9,7 +9,7 @@ "branch_name": "艺苑路店", "address": "艺苑路11号", "telephone": "020-12345678", - "categories": [ "美食,快餐小吃" ], + "categories": ["美食,快餐小吃"], "city": "广州市", "province": "广东省", "offset_type": 1, @@ -33,4 +33,4 @@ } ], "total_count": "3" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIRequest.json index 837b3ac9..875e1adc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIRequest.json @@ -1,3 +1,3 @@ { "poi_id": "271262077" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIResponse.json index 17bb0e0b..92bd6689 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIGetPOIResponse.json @@ -10,7 +10,7 @@ "city": "广州市", "address": "海珠区艺苑路11 号", "telephone": "020-12345678", - "categories": [ "美食,小吃快餐" ], + "categories": ["美食,小吃快餐"], "offset_type": 1, "longitude": 115.32375, "latitude": 25.097486, @@ -31,4 +31,4 @@ "update_status": 0 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIUpdatePOIRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIUpdatePOIRequest.json index 6605ee44..78d85c44 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIUpdatePOIRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinPOI/CgibinPOIUpdatePOIRequest.json @@ -19,4 +19,4 @@ "avg_price": 35 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinQrcode/CgibinQrcodeCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinQrcode/CgibinQrcodeCreateRequest.json index e42b1901..f68bb51b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinQrcode/CgibinQrcodeCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinQrcode/CgibinQrcodeCreateRequest.json @@ -7,4 +7,4 @@ "scene_str": "test" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinQrcode/CgibinQrcodeCreateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinQrcode/CgibinQrcodeCreateResponse.json index aa60a616..e7593063 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinQrcode/CgibinQrcodeCreateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinQrcode/CgibinQrcodeCreateResponse.json @@ -2,4 +2,4 @@ "ticket": "gQH47joAAAAAAAAAASxodHRwOi8vd2VpeGluLnFxLmNvbS9xL2taZ2Z3TVRtNzJXV1Brb3ZhYmJJAAIEZ23sUwMEmm3sUw==", "expire_seconds": 60, "url": "http: //weixin.qq.com/q/kZgfwMTm72WWPkovabbI" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortUrlRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortUrlRequest.json index 7472d5e1..c550184f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortUrlRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortUrlRequest.json @@ -1,4 +1,4 @@ { "action": "long2short", "long_url": "http://wap.koudaitong.com/v2/showcase/goods?alias=128wi9shh&spm=h56083&redirect_count=1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortUrlResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortUrlResponse.json index 7093ed81..22bc092a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortUrlResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortUrlResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "short_url": "http://w.url.cn/s/AvCo6Ih" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenFetchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenFetchRequest.json index 5f8a5ad8..df91c553 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenFetchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenFetchRequest.json @@ -1,3 +1,3 @@ { "short_key": "iTqRJFSEqk9RvPk" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenFetchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenFetchResponse.json index ec125d2c..9427c3ad 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenFetchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenFetchResponse.json @@ -4,4 +4,4 @@ "long_data": "loooooong data", "create_time": 1611047541, "expire_seconds": 86300 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenGenerateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenGenerateRequest.json index bc3eee94..e33097a7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenGenerateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenGenerateRequest.json @@ -1,4 +1,4 @@ { "long_data": "loooooong data", "expire_seconds": 86400 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenGenerateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenGenerateResponse.json index ad2c1eb7..3283de8e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenGenerateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinShorten/CgibinShortenGenerateResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "short_key": "iTqRJFSEqk9RvPk" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinSoter/GgibinSoterVerifySignatureRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinSoter/GgibinSoterVerifySignatureRequest.json index 23b2c898..293d9202 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinSoter/GgibinSoterVerifySignatureRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinSoter/GgibinSoterVerifySignatureRequest.json @@ -2,4 +2,4 @@ "openid": "$openid", "json_string": "$resultJSON", "json_signature": "$resultJSONSignature" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinSoter/GgibinSoterVerifySignatureResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinSoter/GgibinSoterVerifySignatureResponse.json index 884cfe90..c1ba201b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinSoter/GgibinSoterVerifySignatureResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinSoter/GgibinSoterVerifySignatureResponse.json @@ -1,3 +1,3 @@ { "is_ok": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsCreateRequest.json index 2efb144d..e42ff14d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsCreateRequest.json @@ -2,4 +2,4 @@ "tag": { "name": "广东" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsCreateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsCreateResponse.json index a0c5d30e..c5827bea 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsCreateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsCreateResponse.json @@ -3,4 +3,4 @@ "id": 134, "name": "广东" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsDeleteRequest.json index 9c005e6c..9aa0c012 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsDeleteRequest.json @@ -2,4 +2,4 @@ "tag": { "id": 134 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsGetResponse.json index f74f6837..fe9f13e9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsGetResponse.json @@ -16,4 +16,4 @@ "count": 5 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsUpdateRequest.json index b79c3f65..30d64ed5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinTagsUpdateRequest.json @@ -3,4 +3,4 @@ "id": 134, "name": "广东人" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinUserTagGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinUserTagGetRequest.json index 06a049e4..33e67554 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinUserTagGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinUserTagGetRequest.json @@ -1,4 +1,4 @@ { "tagid": 134, "next_openid": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinUserTagGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinUserTagGetResponse.json index 2b51c948..0e2aa3a3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinUserTagGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/CgibinUserTagGetResponse.json @@ -7,4 +7,4 @@ ] }, "next_openid": "ocYxcuBt0mRugKZ7tGAHPnUaOW7Y" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsGetIdListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsGetIdListRequest.json index ccc72eff..1637b050 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsGetIdListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsGetIdListRequest.json @@ -1,3 +1,3 @@ { "openid": "ocYxcuBt0mRugKZ7tGAHPnUaOW7Y" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsGetIdListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsGetIdListResponse.json index 96a47f0d..c5a2f156 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsGetIdListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsGetIdListResponse.json @@ -1,3 +1,3 @@ { - "tagid_list": [ 134, 2 ] -} \ No newline at end of file + "tagid_list": [134, 2] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsMembersBatchTaggingRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsMembersBatchTaggingRequest.json index 47cd47db..a1913cfc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsMembersBatchTaggingRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsMembersBatchTaggingRequest.json @@ -4,4 +4,4 @@ "ocYxcuBt0mRugKZ7tGAHPnUaOW7Y" ], "tagid": 134 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsMembersBatchUntaggingRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsMembersBatchUntaggingRequest.json index 47cd47db..a1913cfc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsMembersBatchUntaggingRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/Members/CgibinTagsMembersBatchUntaggingRequest.json @@ -4,4 +4,4 @@ "ocYxcuBt0mRugKZ7tGAHPnUaOW7Y" ], "tagid": 134 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersBatchBlackListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersBatchBlackListRequest.json index aa362b79..556e0b21 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersBatchBlackListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersBatchBlackListRequest.json @@ -1,3 +1,3 @@ { - "openid_list": [ "OPENID1", "OPENID2" ] -} \ No newline at end of file + "openid_list": ["OPENID1", "OPENID2"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersBatchUnblackListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersBatchUnblackListRequest.json index aa362b79..556e0b21 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersBatchUnblackListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersBatchUnblackListRequest.json @@ -1,3 +1,3 @@ { - "openid_list": [ "OPENID1", "OPENID2" ] -} \ No newline at end of file + "openid_list": ["OPENID1", "OPENID2"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersGetBlackListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersGetBlackListRequest.json index ad0993ec..1de4460b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersGetBlackListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersGetBlackListRequest.json @@ -1,3 +1,3 @@ { "begin_openid": "OPENID1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersGetBlackListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersGetBlackListResponse.json index 93b306ea..c752b724 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersGetBlackListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTags/MembersBlackList/CgibinTagsMembersGetBlackListResponse.json @@ -2,11 +2,7 @@ "total": 23000, "count": 10000, "data": { - "openid": [ - "OPENID1", - "OPENID2", - "OPENID10000" - ] + "openid": ["OPENID1", "OPENID2", "OPENID10000"] }, "next_openid": "OPENID10000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateAddTemplateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateAddTemplateRequest.json index cdc0af0f..a02bf7e7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateAddTemplateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateAddTemplateRequest.json @@ -1,3 +1,3 @@ { "template_id_short": "TM00015" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateAddTemplateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateAddTemplateResponse.json index 445cbd41..2b2394eb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateAddTemplateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateAddTemplateResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "template_id": "Doclyl5uP7Aciu-qZ7mJNPtWkbkYnWBWVja26EGbNyk" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateGetAllPrivateTemplateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateGetAllPrivateTemplateResponse.json index fdab4cd3..fb184c51 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateGetAllPrivateTemplateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateGetAllPrivateTemplateResponse.json @@ -9,4 +9,4 @@ "example": "您已提交领奖申请\n\n领奖金额:xxxx元\n领奖时间:2013-10-10 12:22:22\n银行信息:xx银行(尾号xxxx)\n到账时间:预计xxxxxxx\n\n预计将于xxxx到达您的银行卡" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateGetIndustryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateGetIndustryResponse.json index 600bbbe2..ef0ccc8c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateGetIndustryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateGetIndustryResponse.json @@ -7,4 +7,4 @@ "first_class": "IT科技", "second_class": "互联网|电子商务" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateSetIndustryRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateSetIndustryRequest.json index 3ca05ced..a22c0ae2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateSetIndustryRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinTemplate/CgibinTemplateSetIndustryRequest.json @@ -1,4 +1,4 @@ { "industry_id1": "1", "industry_id2": "4" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserGetResponse.json index 5e799223..30c831bf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserGetResponse.json @@ -2,7 +2,7 @@ "total": 2, "count": 2, "data": { - "openid": [ "OPENID1", "OPENID2" ] + "openid": ["OPENID1", "OPENID2"] }, "next_openid": "NEXT_OPENID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoBatchGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoBatchGetRequest.json index 79b2e4e9..5305e94b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoBatchGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoBatchGetRequest.json @@ -9,4 +9,4 @@ "lang": "zh_CN" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoBatchGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoBatchGetResponse.json index 04b339c7..ed9823da 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoBatchGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoBatchGetResponse.json @@ -17,15 +17,14 @@ "remark": "", "groupid": 0, - "tagid_list": [ 128, 2 ], + "tagid_list": [128, 2], "subscribe_scene": "ADD_SCENE_QR_CODE", "qr_scene": 98765, "qr_scene_str": "" - }, { "subscribe": 0, "openid": "otvxTs_JZ6SEiP0imdhpi50fuSZg" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoResponse.json index 66c4ba88..17680fc1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoResponse.json @@ -12,8 +12,8 @@ "unionid": " o6_bmasdasdsad6_2sgVt7hMZOPfL", "remark": "", "groupid": 0, - "tagid_list": [ 128, 2 ], + "tagid_list": [128, 2], "subscribe_scene": "ADD_SCENE_QR_CODE", "qr_scene": 98765, "qr_scene_str": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoUpdateRemarkRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoUpdateRemarkRequest.json index f39ab3b7..f1d1f99c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoUpdateRemarkRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinUser/CgibinUserInfoUpdateRemarkRequest.json @@ -1,4 +1,4 @@ { "openid": "oDF3iY9ffA-hqb2vVvbr7qxf6A0Q", "remark": "pangzi" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxaapp/CgibinWxaappCreateWxaQrcodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxaapp/CgibinWxaappCreateWxaQrcodeRequest.json index 9da90428..447a085b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxaapp/CgibinWxaappCreateWxaQrcodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxaapp/CgibinWxaappCreateWxaQrcodeRequest.json @@ -1,4 +1,4 @@ { "path": "page/index/index", "width": 430 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenAddCategoryRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenAddCategoryRequest.json index 2b48f32c..b25b756e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenAddCategoryRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenAddCategoryRequest.json @@ -11,4 +11,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenDeleteCategoryRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenDeleteCategoryRequest.json index 7c015f59..460ae4f7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenDeleteCategoryRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenDeleteCategoryRequest.json @@ -1,4 +1,4 @@ { "first": 1, "second": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetAllCategoriesResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetAllCategoriesResponse.json index 4e5aa853..29f8c0b1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetAllCategoriesResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetAllCategoriesResponse.json @@ -5,7 +5,7 @@ "categories": [ { "id": 0, - "children": [ 1, 402 ], + "children": [1, 402], "qualify": { "exter_list": [], "remark": "" @@ -16,7 +16,7 @@ "name": "快递业与邮政", "level": 1, "father": 0, - "children": [ 2, 5, 556, 558, 1033 ], + "children": [2, 5, 556, 558, 1033], "sensitive_type": 0, "qualify": { "exter_list": [], @@ -45,4 +45,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetCategoriesByTypeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetCategoriesByTypeRequest.json index bace7425..43b502de 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetCategoriesByTypeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetCategoriesByTypeRequest.json @@ -1,3 +1,3 @@ { "verify_type": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetCategoriesByTypeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetCategoriesByTypeResponse.json index 4e5aa853..29f8c0b1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetCategoriesByTypeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetCategoriesByTypeResponse.json @@ -5,7 +5,7 @@ "categories": [ { "id": 0, - "children": [ 1, 402 ], + "children": [1, 402], "qualify": { "exter_list": [], "remark": "" @@ -16,7 +16,7 @@ "name": "快递业与邮政", "level": 1, "father": 0, - "children": [ 2, 5, 556, 558, 1033 ], + "children": [2, 5, 556, 558, 1033], "sensitive_type": 0, "qualify": { "exter_list": [], @@ -45,4 +45,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetCategoryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetCategoryResponse.json index c2fd15b1..4a872955 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetCategoryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenGetCategoryResponse.json @@ -14,4 +14,4 @@ "limit": 5, "quota": 4, "category_limit": 20 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenModifyCategoryRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenModifyCategoryRequest.json index 1a24acda..3cb9f7b3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenModifyCategoryRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/Category/CgibinWxopenModifyCategoryRequest.json @@ -7,4 +7,4 @@ "value": "" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpAddRequest.json index cd454c9c..013af3de 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpAddRequest.json @@ -8,4 +8,4 @@ "https://weixin.qq.com/qrcodejump?a=2" ], "is_edit": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpDeleteRequest.json index e70b6ef4..62308b5f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpDeleteRequest.json @@ -1,3 +1,3 @@ { "prefix": "https://weixin.qq.com/qrcodejump" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpDownloadResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpDownloadResponse.json index b2b49344..70753fdb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpDownloadResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpDownloadResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "file_name": "xxx", "file_content": "xxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpGetResponse.json index 409bc323..03547b42 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpGetResponse.json @@ -34,4 +34,4 @@ "qrcodejump_open": 0, "list_size": 2, "qrcodejump_pub_quota": 20 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpPublishRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpPublishRequest.json index e70b6ef4..62308b5f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpPublishRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/QrcodeJump/CgibinWxopenQrcodeJumpPublishRequest.json @@ -1,3 +1,3 @@ { "prefix": "https://weixin.qq.com/qrcodejump" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WeappSupportVersion/CgibinWxopenGetWeappSupportVersionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WeappSupportVersion/CgibinWxopenGetWeappSupportVersionResponse.json index 621257cf..e29d29f3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WeappSupportVersion/CgibinWxopenGetWeappSupportVersionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WeappSupportVersion/CgibinWxopenGetWeappSupportVersionResponse.json @@ -18,4 +18,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WeappSupportVersion/CgibinWxopenSetWeappSupportVersionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WeappSupportVersion/CgibinWxopenSetWeappSupportVersionRequest.json index 122c413b..ac9b9ff8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WeappSupportVersion/CgibinWxopenSetWeappSupportVersionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WeappSupportVersion/CgibinWxopenSetWeappSupportVersionRequest.json @@ -1,3 +1,3 @@ { "version": "1.0.0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WxaMpLink/CgibinWxopenWxaMpLinkGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WxaMpLink/CgibinWxopenWxaMpLinkGetResponse.json index 59c717cd..5756f588 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WxaMpLink/CgibinWxopenWxaMpLinkGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WxaMpLink/CgibinWxopenWxaMpLinkGetResponse.json @@ -37,4 +37,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WxaMpLink/CgibinWxopenWxaMpLinkRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WxaMpLink/CgibinWxopenWxaMpLinkRequest.json index bbb0b88b..e39a1522 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WxaMpLink/CgibinWxopenWxaMpLinkRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WxaMpLink/CgibinWxopenWxaMpLinkRequest.json @@ -2,4 +2,4 @@ "appid": "xxxxxx", "notify_users": 1, "show_profile": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WxaMpLink/CgibinWxopenWxaMpUnlinkRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WxaMpLink/CgibinWxopenWxaMpUnlinkRequest.json index f71a3b04..33670981 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WxaMpLink/CgibinWxopenWxaMpUnlinkRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxopen/WxaMpLink/CgibinWxopenWxaMpUnlinkRequest.json @@ -1,3 +1,3 @@ { "appid": "xxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxverify/CgibinWxverifyCheckWxverifyNicknameRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxverify/CgibinWxverifyCheckWxverifyNicknameRequest.json index 04c1d129..d3eee911 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxverify/CgibinWxverifyCheckWxverifyNicknameRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxverify/CgibinWxverifyCheckWxverifyNicknameRequest.json @@ -1,3 +1,3 @@ { "nick_name": "腾讯" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxverify/CgibinWxverifyCheckWxverifyNicknameResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxverify/CgibinWxverifyCheckWxverifyNicknameResponse.json index be2a58ef..90df0e9f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxverify/CgibinWxverifyCheckWxverifyNicknameResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CgibinWxverify/CgibinWxverifyCheckWxverifyNicknameResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "hit_condition": true, "wording": "你申请的名称可能涉及特定主体姓名或名称,请提供可确认主体材料与名称对应的材料,或提供《商标注册证》等其他材料,以证明你有权合理且善意使用该名称,否则可能审核不通过" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceGetServicePathRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceGetServicePathRequest.json index 96ce7400..f97c0a4c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceGetServicePathRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceGetServicePathRequest.json @@ -10,5 +10,5 @@ } ], "content_name": "购房落户", - "params": "[{\"key\":\"type\",\"value\":\"11\"},{\"key\":\"dd\",\"value\":\"23\"}]" -} \ No newline at end of file + "params": "[{\"key\":\"type\",\"value\":\"11\"},{\"key\":\"dd\",\"value\":\"23\"}]" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceGetServicePathResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceGetServicePathResponse.json index bd5ce120..71702836 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceGetServicePathResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceGetServicePathResponse.json @@ -6,4 +6,4 @@ "path": "XXX", "query_string": "xxx", "business_type": "xxd" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceSendMessageDataRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceSendMessageDataRequest.json index b7ce59c4..bec4de52 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceSendMessageDataRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceSendMessageDataRequest.json @@ -28,4 +28,4 @@ "color": "#173177" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceSendMessageDataResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceSendMessageDataResponse.json index 7e913969..97d02f31 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceSendMessageDataResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CityService/CityServiceSendMessageDataResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "result_page_url": "https://city.weixin.qq.com/static/resultpagenew.html?openid=ont-9vjAcIdSU-LgB7ubALAVJO9U&biz_template_id=ngqIpbwh8bUfcSsECmogfXcV14J0tQlEpBO27izEYtY #wechat_redirect" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDeleteFileRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDeleteFileRequest.json index 312bff7f..ada14766 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDeleteFileRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDeleteFileRequest.json @@ -1,6 +1,4 @@ { "env": "test2-4a89da", - "fileid_list": [ - "cloud://test2-4a89da.7465-test2-4a89da/A.png" - ] -} \ No newline at end of file + "fileid_list": ["cloud://test2-4a89da.7465-test2-4a89da/A.png"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDeleteFileResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDeleteFileResponse.json index 98178bc9..22c5d0f8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDeleteFileResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDeleteFileResponse.json @@ -8,4 +8,4 @@ "errmsg": "ok" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDownloadFileRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDownloadFileRequest.json index 0449b8d2..7821f31c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDownloadFileRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDownloadFileRequest.json @@ -6,4 +6,4 @@ "max_age": 7200 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDownloadFileResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDownloadFileResponse.json index 90a12451..5b694bb6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDownloadFileResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbBatchDownloadFileResponse.json @@ -9,4 +9,4 @@ "errmsg": "ok" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbGetBucketRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbGetBucketRequest.json index ba2552f8..00b61da0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbGetBucketRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbGetBucketRequest.json @@ -1,3 +1,3 @@ { "env": "test-env1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbGetBucketResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbGetBucketResponse.json index cb3e686a..f87d8de3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbGetBucketResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbGetBucketResponse.json @@ -16,4 +16,4 @@ } ], "is_truncated": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbUploadFileRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbUploadFileRequest.json index 13c03f75..dc8ee7a6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbUploadFileRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbUploadFileRequest.json @@ -1,4 +1,4 @@ { "env": "test2-4a89da", "path": "this/is/a/example/file.path" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbUploadFileResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbUploadFileResponse.json index 38605fb0..5d6d24d1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbUploadFileResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/COS/ComponentTcbUploadFileResponse.json @@ -6,4 +6,4 @@ "authorization": "q-sign-algorithm=sha1&q-ak=AKID98EDB528Sfqerp0Z_7l23we-u4Avrx04te9VvlzGihMTseysMgu7iSdh_hxEnoAy&q-sign-time=1557307130;1557308030&q-key-time=1557307130;1557308030&q-header-list=&q-url-param-list=&q-signature=ac95227b67a04157bb5e49b435c6ac3ce88e03f2", "file_id": "cloud://test2-4a89da.7465-test2-4a89da-1258717764/testupload", "cos_file_id": "HDze32/qZENCwWi5N5akgoXSv3U8DsccKaqCxTMGs0zFgvlD28j484/VYFPJ1l2QDh0Qy8wNbQCpxs5zEsLJln1lIY9RGYn1LzRQQQYFQm+Xwvw6S4YEZN1AIwY906mwIBgiI3gKGkU2K1+1ZEnEYEM4Uh/C1JxB4Q==" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbCreateContainerServiceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbCreateContainerServiceRequest.json index d9ba787e..794ead68 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbCreateContainerServiceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbCreateContainerServiceRequest.json @@ -4,7 +4,7 @@ "remark": "test", "vpc": { "vpcid": "123", - "subnetids": [ "123" ], + "subnetids": ["123"], "create_type": 3 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbGetContainerServiceListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbGetContainerServiceListResponse.json index 0b7a6206..a263128e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbGetContainerServiceListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbGetContainerServiceListResponse.json @@ -12,4 +12,4 @@ } ], "total": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbOpenContainerServiceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbOpenContainerServiceRequest.json index ba2552f8..00b61da0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbOpenContainerServiceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbOpenContainerServiceRequest.json @@ -1,3 +1,3 @@ { "env": "test-env1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbUseCloudAccessTokenRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbUseCloudAccessTokenRequest.json index 646fbd49..5d0d8fcb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbUseCloudAccessTokenRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbUseCloudAccessTokenRequest.json @@ -2,6 +2,6 @@ "action": "set", "open": true, "env": "myttest-8gu57so0bd9f9e8a", - "api_whitelist": [ "/*" ], + "api_whitelist": ["/*"], "version": 6 } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbUseCloudAccessTokenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbUseCloudAccessTokenResponse.json index 02e022b8..a9e5c4d4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbUseCloudAccessTokenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/ComponentTcbUseCloudAccessTokenResponse.json @@ -2,8 +2,6 @@ "errcode": 0, "errmsg": "ok", "open": true, - "api_whitelist": [ - "/*" - ], + "api_whitelist": ["/*"], "version": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Propotion/ComponentTcbBatchSetContainerServicePropotionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Propotion/ComponentTcbBatchSetContainerServicePropotionRequest.json index dd4381f7..2cd5814f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Propotion/ComponentTcbBatchSetContainerServicePropotionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Propotion/ComponentTcbBatchSetContainerServicePropotionRequest.json @@ -15,4 +15,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Propotion/ComponentTcbBatchSetContainerServicePropotionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Propotion/ComponentTcbBatchSetContainerServicePropotionResponse.json index 5d2bb15e..5723b460 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Propotion/ComponentTcbBatchSetContainerServicePropotionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Propotion/ComponentTcbBatchSetContainerServicePropotionResponse.json @@ -8,4 +8,4 @@ "service_name": "echo" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Propotion/ComponentTcbSetContainerServicePropotionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Propotion/ComponentTcbSetContainerServicePropotionRequest.json index c7c15673..faef41f6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Propotion/ComponentTcbSetContainerServicePropotionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Propotion/ComponentTcbSetContainerServicePropotionRequest.json @@ -11,4 +11,4 @@ "flow_ratio": 20 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchCreateContainerServiceVersionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchCreateContainerServiceVersionRequest.json index 0c540ec3..aec15c3c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchCreateContainerServiceVersionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchCreateContainerServiceVersionRequest.json @@ -1,5 +1,5 @@ { - "envs": [ "myttest2-9g1m6omv9fa12048", "myttest-8gu57so0bd9f9e8a" ], + "envs": ["myttest2-9g1m6omv9fa12048", "myttest-8gu57so0bd9f9e8a"], "service_name": "echo", "upload_type": "repository", "repository_type": "github", @@ -11,4 +11,4 @@ "url": "https://github.com/maoyutao/wx-container-demo.git" }, "dockerfile_path": "Dockerfile" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchCreateContainerServiceVersionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchCreateContainerServiceVersionResponse.json index 50a91b2d..bc1ee48f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchCreateContainerServiceVersionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchCreateContainerServiceVersionResponse.json @@ -13,4 +13,4 @@ "version_name": "echo001" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchDeleteContainerServiceVersionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchDeleteContainerServiceVersionRequest.json index d38fccf0..616a0c4e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchDeleteContainerServiceVersionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchDeleteContainerServiceVersionRequest.json @@ -16,5 +16,4 @@ "version_name": "echo-003" } ] - -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchDeleteContainerServiceVersionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchDeleteContainerServiceVersionResponse.json index 4f5c3a88..c3c79f88 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchDeleteContainerServiceVersionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbBatchDeleteContainerServiceVersionResponse.json @@ -19,4 +19,4 @@ "version_name": "echo-003" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbCreateContainerServiceVersionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbCreateContainerServiceVersionRequest.json index 6b1c9d44..430fd844 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbCreateContainerServiceVersionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbCreateContainerServiceVersionRequest.json @@ -12,4 +12,4 @@ "url": "https://github.com/maoyutao/wx-container-demo.git" }, "dockerfile_path": "Dockerfile" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbCreateContainerServiceVersionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbCreateContainerServiceVersionResponse.json index c2aaf152..3a4aad7c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbCreateContainerServiceVersionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbCreateContainerServiceVersionResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "version_name": "echo-001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionDetailRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionDetailRequest.json index 5b8d5d50..c7e2dd05 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionDetailRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionDetailRequest.json @@ -2,4 +2,4 @@ "env": "mmtest-5g7z68c153d7ff4b", "service_name": "echo", "version_name": "echo-009" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionDetailResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionDetailResponse.json index cb66d5a0..e752e4bd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionDetailResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionDetailResponse.json @@ -26,4 +26,4 @@ "custom_logs": "stdout", "container_port": 80, "image_url": "ccr.ccs.tencentyun.com/tcb-100016925355-hglp/mmtest-5g7z68c153d7ff4b_echo:echo-009-1607484199" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionListRequest.json index fbf3850c..2d18453a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionListRequest.json @@ -3,4 +3,4 @@ "service_name": "echo", "offset": 0, "limit": 20 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionListResponse.json index e63d4e05..3309af2a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbGetContainerServiceVersionListResponse.json @@ -15,4 +15,4 @@ "max_replicas": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbSetContainerServiceVersionConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbSetContainerServiceVersionConfigRequest.json index 3bc435b5..f3f3b30a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbSetContainerServiceVersionConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/ContainerService/Version/ComponentTcbSetContainerServiceVersionConfigRequest.json @@ -8,4 +8,4 @@ "container_port": 80, "env_params": "", "custom_logs": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbAggregateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbAggregateRequest.json index 338d3471..61416f85 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbAggregateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbAggregateRequest.json @@ -1,4 +1,4 @@ { "env": "test2-4a89da", "query": "db.collection(\"test_collection\").aggregate().match({tags:\"cloud\"}).limit(10).end()" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbAggregateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbAggregateResponse.json index ae2b6fb8..08f2ec13 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbAggregateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbAggregateResponse.json @@ -7,4 +7,4 @@ "{\"_id\":\"51f4f67e-a6a1-4c3e-a50f-827380b8da86\",\"description\":\"学习 cloud database\",\"due\":\"2019-09-09\",\"tags\":[\"cloud\",\"database\"],\"location\":{\"coordinates\":[{\"$numberDouble\":\"113.0\"},{\"$numberDouble\":\"23.0\"}],\"type\":\"Point\"},\"done\":false}", "{\"_id\":\"ee1d69da-b7ec-4e7a-bc1f-2fae31da4ce0\",\"tags\":[\"cloud\",\"database\"],\"location\":{\"type\":\"Point\",\"coordinates\":[{\"$numberDouble\":\"113.0\"},{\"$numberDouble\":\"23.0\"}]},\"done\":false,\"description\":\"学习 cloud database\",\"due\":\"2019-09-09\"}" ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbCollectionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbCollectionRequest.json index 64a60efd..325cf4ae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbCollectionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbCollectionRequest.json @@ -1,4 +1,4 @@ { "env": "test-env1", "collection_name": "testcollection" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbCollectionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbCollectionResponse.json index ffe5b991..1be72923 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbCollectionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbCollectionResponse.json @@ -11,4 +11,4 @@ } ], "total": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbExportRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbExportRequest.json index 3ccca5b4..4698a34e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbExportRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbExportRequest.json @@ -3,4 +3,4 @@ "file_path": "test_export", "file_type": 1, "query": "const Point = db.Geo.Point;db.collection(\\'geo\\').where({name: \\'x\\',age: _.gt(10).and(_.lt(20)),loc: new Point(113,23),array: [1,2]}).limit(10).skip(1).orderBy(\\'age\\',\\'asc\\').orderBy(\\'name\\', \\'desc\\').field({ name: true }).get()" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbExportResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbExportResponse.json index 897787f9..9fbcdb02 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbExportResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbExportResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "job_id": 100074947 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbGetACLRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbGetACLRequest.json index 476d825f..eff973b7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbGetACLRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbGetACLRequest.json @@ -1,4 +1,4 @@ { "env": "myttest-8gu57so0bd9f9e8a", "collection_name": "test" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbGetACLResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbGetACLResponse.json index 6b3099f7..4dcf3e1a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbGetACLResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbGetACLResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "acl_tag": "CUSTOM", "rule": "{\n \"read\": true,\n \"write\": \"doc._openid == auth.openid\"\n}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbImportRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbImportRequest.json index ea54541a..4a29ab1c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbImportRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbImportRequest.json @@ -5,4 +5,4 @@ "file_type": 1, "stop_on_error": false, "conflict_mode": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbImportResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbImportResponse.json index 897787f9..9fbcdb02 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbImportResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbImportResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "job_id": 100074947 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbIndexRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbIndexRequest.json index f9832f27..b65c2bc3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbIndexRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbIndexRequest.json @@ -12,4 +12,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbModifyACLRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbModifyACLRequest.json index a68c86a2..c5d9e7ff 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbModifyACLRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbModifyACLRequest.json @@ -3,4 +3,4 @@ "collection_name": "test", "acl_tag": "CUSTOM", "rule": "{\n \"read\": true,\n \"write\": \"doc._openid == auth.openid\"\n}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbRecordRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbRecordRequest.json index 669779ed..428d25cf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbRecordRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbRecordRequest.json @@ -1,4 +1,4 @@ { "env": "test2-4a89da", "query": "db.collection(\"geo\").where({done:true}).limit(10).skip(1).get()" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbRecordResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbRecordResponse.json index c5fa7f0b..3b3735df 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbRecordResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Database/ComponentTcbDbRecordResponse.json @@ -17,4 +17,4 @@ "be62d9c4-43ec-4dc6-8ca1-30b206eeed24", "0f4b8add5cdd728a003bf5c83ed99dff" ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchGetEnvironmentIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchGetEnvironmentIdRequest.json index 39e04e7f..e68018b3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchGetEnvironmentIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchGetEnvironmentIdRequest.json @@ -1,3 +1,3 @@ { - "appids": [ "wx075cf85bf347b6df", "wx5fe6bb43205e9e70" ] -} \ No newline at end of file + "appids": ["wx075cf85bf347b6df", "wx5fe6bb43205e9e70"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchGetEnvironmentIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchGetEnvironmentIdResponse.json index 9369eef4..502d6b60 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchGetEnvironmentIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchGetEnvironmentIdResponse.json @@ -11,10 +11,8 @@ }, { "appid": "wx5fe6bb43205e9e70", - "env_list": [ - "test-env-6gni9ity244a6ea3" - ] + "env_list": ["test-env-6gni9ity244a6ea3"] } ], "err_list": [] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchShareEnvironmentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchShareEnvironmentRequest.json index ddcd5bdc..bc629f6d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchShareEnvironmentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchShareEnvironmentRequest.json @@ -2,7 +2,7 @@ "data": [ { "env": "test-env-6gni9ity244a6ea3", - "appids": [ "wx5fe6bb43205e9e07", "wx075cf85bf347b6df" ] + "appids": ["wx5fe6bb43205e9e07", "wx075cf85bf347b6df"] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchShareEnvironmentResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchShareEnvironmentResponse.json index 2efa45a3..6c632491 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchShareEnvironmentResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbBatchShareEnvironmentResponse.json @@ -8,4 +8,4 @@ "errmsg": "invalid appid" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbCreateEnvironmentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbCreateEnvironmentRequest.json index bf01c0ad..fb482923 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbCreateEnvironmentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbCreateEnvironmentRequest.json @@ -1,3 +1,3 @@ { "alias": "mytestenv" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbCreateEnvironmentResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbCreateEnvironmentResponse.json index 30269f71..90588e44 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbCreateEnvironmentResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbCreateEnvironmentResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "tranid": "20201030189770", "env": "mytestenv-7gfwxe92efb3aa38" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbDescribeEnvironmentsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbDescribeEnvironmentsResponse.json index ec959488..3c57d448 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbDescribeEnvironmentsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbDescribeEnvironmentsResponse.json @@ -14,4 +14,4 @@ "bucket_id": "6d79-myttest3-9gyi5pwab13c4d59-1304480914" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbModifyEnvironmentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbModifyEnvironmentRequest.json index 45dc4e1f..0f58be52 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbModifyEnvironmentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/Environment/ComponentTcbModifyEnvironmentRequest.json @@ -1,3 +1,3 @@ { "env": "test-env-0001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUpdateTriggersRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUpdateTriggersRequest.json index 42394e15..f5757429 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUpdateTriggersRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUpdateTriggersRequest.json @@ -1,6 +1,6 @@ { "funcname": "testfunc", - "envs": [ "test-env1", "test-env2" ], + "envs": ["test-env1", "test-env2"], "triggers": [ { "trigger_name": "trigger_name1", @@ -8,4 +8,4 @@ "config": "0 0 2 2 * * *" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUpdateTriggersResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUpdateTriggersResponse.json index ba6efbfb..2f6ebd07 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUpdateTriggersResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUpdateTriggersResponse.json @@ -7,4 +7,4 @@ "errmsg": "can't find the env" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUploadSCFCodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUploadSCFCodeRequest.json index cd2ea5da..fdb3ebb9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUploadSCFCodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUploadSCFCodeRequest.json @@ -1,5 +1,9 @@ { "functionname": "testfunc", - "envs": [ "dev-3gewtf9c10f60c76", "mytestenv-7gniuaq95b51dcdc", "mytestenv-7gniuaq95b51dcdc22" ], + "envs": [ + "dev-3gewtf9c10f60c76", + "mytestenv-7gniuaq95b51dcdc", + "mytestenv-7gniuaq95b51dcdc22" + ], "zipfile": "UEsDBBQACAAIALB+WU4AAAAAAAAAAAAAAAAIABAAaW5kZXguanNVWAwAAZ9zXPuec1z1ARQAdY7BCsIwEETv+Yoll6ZQ+wOhnv0DD+IhxkWC664kWwmI/27V3IpzGuYNw3RzQSiaU9TOG6x3yVrGW0gMEzh8IOsAUVixfkwgOoV47WHawtPAooUVIRxJLs7ukEhgL5nOtl/h79qf+GBZeIM1FbXHdac9aKC9cDwTDfCb9eblzRtQSwcI6+pcr4AAAADOAAAAUEsBAhUDFAAIAAgAsH5ZTuvqXK+AAAAAzgAAAAgADAAAAAAAAAAAQKSBAAAAAGluZGV4LmpzVVgIAAGfc1z7nnNcUEsFBgAAAAABAAEAQgAAAMYAAAAAAA==" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUploadSCFRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUploadSCFRequest.json index cd2ea5da..fdb3ebb9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUploadSCFRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbBatchUploadSCFRequest.json @@ -1,5 +1,9 @@ { "functionname": "testfunc", - "envs": [ "dev-3gewtf9c10f60c76", "mytestenv-7gniuaq95b51dcdc", "mytestenv-7gniuaq95b51dcdc22" ], + "envs": [ + "dev-3gewtf9c10f60c76", + "mytestenv-7gniuaq95b51dcdc", + "mytestenv-7gniuaq95b51dcdc22" + ], "zipfile": "UEsDBBQACAAIALB+WU4AAAAAAAAAAAAAAAAIABAAaW5kZXguanNVWAwAAZ9zXPuec1z1ARQAdY7BCsIwEETv+Yoll6ZQ+wOhnv0DD+IhxkWC664kWwmI/27V3IpzGuYNw3RzQSiaU9TOG6x3yVrGW0gMEzh8IOsAUVixfkwgOoV47WHawtPAooUVIRxJLs7ukEhgL5nOtl/h79qf+GBZeIM1FbXHdac9aKC9cDwTDfCb9eblzRtQSwcI6+pcr4AAAADOAAAAUEsBAhUDFAAIAAgAsH5ZTuvqXK+AAAAAzgAAAAgADAAAAAAAAAAAQKSBAAAAAGluZGV4LmpzVVgIAAGfc1z7nnNcUEsFBgAAAAABAAEAQgAAAMYAAAAAAA==" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbDeleteSCFConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbDeleteSCFConfigRequest.json index 13c27577..da9e6581 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbDeleteSCFConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbDeleteSCFConfigRequest.json @@ -1,4 +1,4 @@ { "functionname": "getwxcode", "env": "test-env-6gni9ity244a6ea3" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetSCFListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetSCFListRequest.json index 323c231c..e87ed6cd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetSCFListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetSCFListRequest.json @@ -1,3 +1,3 @@ { "env": "myttest-8gu57so0bd9f9e8a" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetSCFListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetSCFListResponse.json index 949a6675..aaac6d0c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetSCFListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetSCFListResponse.json @@ -25,4 +25,4 @@ "status_reason": [] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetTriggersRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetTriggersRequest.json index caa0132d..31f8084c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetTriggersRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetTriggersRequest.json @@ -1,4 +1,4 @@ { "funcname": "testfunc", "env": "test-env1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetTriggersResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetTriggersResponse.json index 8c1969ce..29d3fc1f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetTriggersResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbGetTriggersResponse.json @@ -8,4 +8,4 @@ "type": "timer" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbInvokeCloudFunctionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbInvokeCloudFunctionResponse.json index 2749b72c..534c5d99 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbInvokeCloudFunctionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbInvokeCloudFunctionResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "resp_data": "{\"event\":{\"userInfo\":{\"appId\":\"SAMPLE_APPID\"}},\"appid\":\"SAMPLE_APPID\"}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbUploadSCFConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbUploadSCFConfigRequest.json index 4644fb96..2341488c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbUploadSCFConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/SCF/ComponentTcbUploadSCFConfigRequest.json @@ -17,4 +17,4 @@ "vpcid": "vpc-a9ejy7oi", "subnetid": "subnet-oqw8aqbd" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbCreateStaticStoreRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbCreateStaticStoreRequest.json index ba2552f8..00b61da0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbCreateStaticStoreRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbCreateStaticStoreRequest.json @@ -1,3 +1,3 @@ { "env": "test-env1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbDescribeStaticStoreRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbDescribeStaticStoreRequest.json index ba2552f8..00b61da0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbDescribeStaticStoreRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbDescribeStaticStoreRequest.json @@ -1,3 +1,3 @@ { "env": "test-env1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbDescribeStaticStoreResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbDescribeStaticStoreResponse.json index dd597384..2e8cf52a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbDescribeStaticStoreResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbDescribeStaticStoreResponse.json @@ -10,4 +10,4 @@ "status": "online" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticFileListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticFileListRequest.json index ba2552f8..00b61da0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticFileListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticFileListRequest.json @@ -1,3 +1,3 @@ { "env": "test-env1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticFileListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticFileListResponse.json index cb3e686a..f87d8de3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticFileListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticFileListResponse.json @@ -16,4 +16,4 @@ } ], "is_truncated": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticUploadFileRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticUploadFileRequest.json index 809fa50d..2c04cdaf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticUploadFileRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticUploadFileRequest.json @@ -1,4 +1,4 @@ { "env": "myttest-8gu57so0bd9f9e8a", "filename": "zcy.py" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticUploadFileResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticUploadFileResponse.json index 6f25ebea..c122453c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticUploadFileResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ComponentTcb/StaticStore/ComponentTcbStaticUploadFileResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "signed_url": "https://b8b3-static-myttest-8gu57so0bd9f9e8a-1304480914.cos.ap-shanghai.myqcloud.com/zcy.py?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKIDqIjj-XybgCHZ3q7bJh-cxBs_5fnpzNvlK4qlAMK67ZcHQykVfThVSZMrlsf56uoY%26q-sign-time%3D1613977939%3B1613977999%26q-key-time%3D1613977939%3B1613977999%26q-header-list%3D%26q-url-param-list%3D%26q-signature%3De697e7d0419781d7c9e53a11b431f19c762084d1", "token": "CtAAY4i5meYdojAxhMKe70QIZWAPqDUa141d7416063bda7abaa7589c13a53ff589WKQf-qgkXMET4-TnOcU2Es6s7ax5rcJZmoJ2VPNmj92JY8M4Yt9nePkuU2iiP7UQGFNkxg08A6-82uEdURyH6f9hG3DnD32-J4Dl_ZErhVJl3BdF4qy2UEfbIeAe0MPxQcOTqQskedulgaeyXbCD0ols3zwMb-3AltEhuHmTDZC-PCqCC-zqzZHzNSMHHMKfgm5G17NI14Th4-o3JeKLjY5EiUTkvhuEJyDzcI_lMEe6-nFXYuWOLy00CKFwQ__oIJNkOnMrwH5HL5DXkUwk_b8meImrlluDruz6WhU3O3h-EFHst8Zca4Jopd0WKtd8EFcK7RaJL8hKXepf1w5EJdryC4xxA6Hn41d3mzG3k" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountAddRequest.json index 1ada2b79..05c75d4c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountAddRequest.json @@ -2,4 +2,4 @@ "kf_account": "test1@test", "nickname": "客服1", "password": "pswmd5" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountDeleteRequest.json index aea0ae6d..6cac36eb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountDeleteRequest.json @@ -1,3 +1,3 @@ { "kf_account": "test1@test" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountInviteWorkerRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountInviteWorkerRequest.json index 107211d1..20d29d12 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountInviteWorkerRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountInviteWorkerRequest.json @@ -1,4 +1,4 @@ { "kf_account": "test1@test", "invite_wx": "test_kfwx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountUpdateRequest.json index 1ada2b79..05c75d4c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfAccount/CustomServiceKfAccountUpdateRequest.json @@ -2,4 +2,4 @@ "kf_account": "test1@test", "nickname": "客服1", "password": "pswmd5" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionCloseRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionCloseRequest.json index bc80ca08..51b9f3a6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionCloseRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionCloseRequest.json @@ -1,4 +1,4 @@ { "kf_account": "test1@test", "openid": "OPENID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionCreateRequest.json index bc80ca08..51b9f3a6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionCreateRequest.json @@ -1,4 +1,4 @@ { "kf_account": "test1@test", "openid": "OPENID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionGetSessionListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionGetSessionListResponse.json index b3c2ed5b..9965297d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionGetSessionListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionGetSessionListResponse.json @@ -9,4 +9,4 @@ "openid": "OPENID" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionGetSessionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionGetSessionResponse.json index 44cb9333..d93dd6a3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionGetSessionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionGetSessionResponse.json @@ -1,4 +1,4 @@ { "createtime": 123456789, "kf_account": "test1@test" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionGetWaitCaseResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionGetWaitCaseResponse.json index 78a1f78e..adc4fc01 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionGetWaitCaseResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/KfSession/CustomServiceKfSessionGetWaitCaseResponse.json @@ -10,4 +10,4 @@ "openid": "OPENID" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/MessageRecord/CustomServiceMessageRecordGetMessageListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/MessageRecord/CustomServiceMessageRecordGetMessageListRequest.json index ec12e926..79d3aef8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/MessageRecord/CustomServiceMessageRecordGetMessageListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/MessageRecord/CustomServiceMessageRecordGetMessageListRequest.json @@ -3,4 +3,4 @@ "endtime": 987654321, "msgid": 1, "number": 10000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/MessageRecord/CustomServiceMessageRecordGetMessageListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/MessageRecord/CustomServiceMessageRecordGetMessageListResponse.json index b5037ec6..2179be8a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/MessageRecord/CustomServiceMessageRecordGetMessageListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/CustomService/MessageRecord/CustomServiceMessageRecordGetMessageListResponse.json @@ -17,4 +17,4 @@ ], "number": 2, "msgid": 20165267 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleSummaryRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleSummaryRequest.json index 391c7468..7b11b56b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleSummaryRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleSummaryRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-08", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleSummaryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleSummaryResponse.json index 0af5e110..88197418 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleSummaryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleSummaryResponse.json @@ -14,4 +14,4 @@ "add_to_fav_count": 3 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleTotalRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleTotalRequest.json index 391c7468..7b11b56b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleTotalRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleTotalRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-08", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleTotalResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleTotalResponse.json index da5fbd27..022cf423 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleTotalResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetArticleTotalResponse.json @@ -36,4 +36,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadHourRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadHourRequest.json index 391c7468..7b11b56b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadHourRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadHourRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-08", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadHourResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadHourResponse.json index 9e07cf51..a27a121c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadHourResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadHourResponse.json @@ -27,4 +27,4 @@ "add_to_fav_count": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadRequest.json index 391c7468..7b11b56b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-08", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadResponse.json index d466001d..94953ef7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserReadResponse.json @@ -25,4 +25,4 @@ "add_to_fav_count": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareHourRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareHourRequest.json index 391c7468..7b11b56b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareHourRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareHourRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-08", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareHourResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareHourResponse.json index d0cedfa8..bf44274e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareHourResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareHourResponse.json @@ -8,4 +8,4 @@ "share_user": 4 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareRequest.json index 391c7468..7b11b56b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-08", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareResponse.json index 1a649a87..9acbe56e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Article/DataCubeGetUserShareResponse.json @@ -13,4 +13,4 @@ "share_user": 11 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardBusinessInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardBusinessInfoRequest.json index 6326ba4d..c4688bdb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardBusinessInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardBusinessInfoRequest.json @@ -2,4 +2,4 @@ "begin_date": "2015-06-15", "end_date": "2015-06-30", "cond_source": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardBusinessInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardBusinessInfoResponse.json index 91249fa9..4680ff68 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardBusinessInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardBusinessInfoResponse.json @@ -14,4 +14,4 @@ "expire_user": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardCardInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardCardInfoRequest.json index d387eca9..0fa58177 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardCardInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardCardInfoRequest.json @@ -3,4 +3,4 @@ "end_date": "2015-06-30", "cond_source": 0, "card_id": "po8pktyDLmakNY2fn2VyhkiEPqGE" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardCardInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardCardInfoResponse.json index 4d4f69d2..2aaa0a60 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardCardInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardCardInfoResponse.json @@ -16,4 +16,4 @@ "expire_user": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardDetailRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardDetailRequest.json index fa0c55bf..3156fda3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardDetailRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardDetailRequest.json @@ -2,4 +2,4 @@ "begin_date": "2015-06-15", "end_date": "2015-06-30", "card_id": "xxxxxxxxxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardDetailResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardDetailResponse.json index 51f0dbe4..5d3994ba 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardDetailResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardDetailResponse.json @@ -19,4 +19,4 @@ "fee": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardInfoRequest.json index 6326ba4d..c4688bdb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardInfoRequest.json @@ -2,4 +2,4 @@ "begin_date": "2015-06-15", "end_date": "2015-06-30", "cond_source": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardInfoResponse.json index 7a10a054..fe878303 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Card/DataCubeGetCardMemberCardInfoResponse.json @@ -13,4 +13,4 @@ "total_receive_user": 95 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/GameAnalysis/DataCubeGetGameAnalysisDataRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/GameAnalysis/DataCubeGetGameAnalysisDataRequest.json index 84fa95bd..5fbcb458 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/GameAnalysis/DataCubeGetGameAnalysisDataRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/GameAnalysis/DataCubeGetGameAnalysisDataRequest.json @@ -9,7 +9,5 @@ "value": "1" } ], - "group_list": [ - "3" - ] -} \ No newline at end of file + "group_list": ["3"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/GameAnalysis/DataCubeGetGameAnalysisDataResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/GameAnalysis/DataCubeGetGameAnalysisDataResponse.json index 6100da73..8309eac7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/GameAnalysis/DataCubeGetGameAnalysisDataResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/GameAnalysis/DataCubeGetGameAnalysisDataResponse.json @@ -34,4 +34,4 @@ "metric_value": 27 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryHourRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryHourRequest.json index e7a0c173..182abd29 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryHourRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryHourRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-07", "end_date": "2014-12-07" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryHourResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryHourResponse.json index b5008460..dd450abb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryHourResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryHourResponse.json @@ -9,4 +9,4 @@ "max_time_cost": 5042 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryRequest.json index e7a0c173..182abd29 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-07", "end_date": "2014-12-07" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryResponse.json index 60d86266..65a5deff 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/Interface/DataCubeGetInterfaceSummaryResponse.json @@ -8,4 +8,4 @@ "max_time_cost": 5044 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionMonthRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionMonthRequest.json index df856359..9fe33611 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionMonthRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionMonthRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-07", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionMonthResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionMonthResponse.json index d7b631a0..1bbd56d2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionMonthResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionMonthResponse.json @@ -6,4 +6,4 @@ "msg_user": 246 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionRequest.json index df856359..9fe33611 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-07", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionResponse.json index d7b631a0..1bbd56d2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionResponse.json @@ -6,4 +6,4 @@ "msg_user": 246 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionWeekRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionWeekRequest.json index df856359..9fe33611 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionWeekRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionWeekRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-07", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionWeekResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionWeekResponse.json index d7b631a0..1bbd56d2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionWeekResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageDistributionWeekResponse.json @@ -6,4 +6,4 @@ "msg_user": 246 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageHourRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageHourRequest.json index df856359..9fe33611 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageHourRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageHourRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-07", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageHourResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageHourResponse.json index 3c929f8c..9d1aa7a7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageHourResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageHourResponse.json @@ -8,4 +8,4 @@ "msg_count": 10 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageMonthRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageMonthRequest.json index df856359..9fe33611 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageMonthRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageMonthRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-07", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageMonthResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageMonthResponse.json index 2ea265ac..fd047ec5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageMonthResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageMonthResponse.json @@ -7,4 +7,4 @@ "msg_count": 42206 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageRequest.json index df856359..9fe33611 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-07", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageResponse.json index 85339d11..df02094f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageResponse.json @@ -7,4 +7,4 @@ "msg_count": 817 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageWeekRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageWeekRequest.json index df856359..9fe33611 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageWeekRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageWeekRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-07", "end_date": "2014-12-08" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageWeekResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageWeekResponse.json index d84cd361..0f35cc9f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageWeekResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/UpstreamMessage/DataCubeGetUpstreamMessageWeekResponse.json @@ -7,4 +7,4 @@ "msg_count": 27 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserCumulateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserCumulateRequest.json index 137d965f..6c759c20 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserCumulateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserCumulateRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-02", "end_date": "2014-12-07" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserCumulateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserCumulateResponse.json index 720210c2..0145c52c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserCumulateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserCumulateResponse.json @@ -5,4 +5,4 @@ "cumulate_user": 1217056 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserSummaryRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserSummaryRequest.json index 137d965f..6c759c20 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserSummaryRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserSummaryRequest.json @@ -1,4 +1,4 @@ { "begin_date": "2014-12-02", "end_date": "2014-12-07" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserSummaryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserSummaryResponse.json index 2fe8e8ef..ef04a375 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserSummaryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/User/DataCubeGetUserSummaryResponse.json @@ -7,4 +7,4 @@ "cancel_user": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyRetainInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyRetainInfoRequest.json index f9e6641e..a7d2d432 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyRetainInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyRetainInfoRequest.json @@ -1,4 +1,4 @@ { "begin_date": "20170313", "end_date": "20170313" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyRetainInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyRetainInfoResponse.json index 50bc1871..9ca38f32 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyRetainInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyRetainInfoResponse.json @@ -12,4 +12,4 @@ "value": 55500 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailySummaryTrendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailySummaryTrendRequest.json index f9e6641e..a7d2d432 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailySummaryTrendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailySummaryTrendRequest.json @@ -1,4 +1,4 @@ { "begin_date": "20170313", "end_date": "20170313" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailySummaryTrendResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailySummaryTrendResponse.json index dd97c139..497dacc6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailySummaryTrendResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailySummaryTrendResponse.json @@ -7,4 +7,4 @@ "share_uv": 383 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyVisitTrendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyVisitTrendRequest.json index f9e6641e..a7d2d432 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyVisitTrendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyVisitTrendRequest.json @@ -1,4 +1,4 @@ { "begin_date": "20170313", "end_date": "20170313" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyVisitTrendResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyVisitTrendResponse.json index 4a080a84..19956743 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyVisitTrendResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdDailyVisitTrendResponse.json @@ -10,4 +10,4 @@ "visit_depth": 1.9838 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyRetainInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyRetainInfoRequest.json index 4025cb5e..bb048e58 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyRetainInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyRetainInfoRequest.json @@ -1,4 +1,4 @@ { "begin_date": "20170201", "end_date": "20170228" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyRetainInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyRetainInfoResponse.json index 380d9989..5c2e7cd6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyRetainInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyRetainInfoResponse.json @@ -12,4 +12,4 @@ "value": 346249 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyVisitTrendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyVisitTrendRequest.json index 879652b2..0807fa7b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyVisitTrendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyVisitTrendRequest.json @@ -1,4 +1,4 @@ { "begin_date": "20170301", "end_date": "20170331" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyVisitTrendResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyVisitTrendResponse.json index 45cbe9b7..46396ec1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyVisitTrendResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdMonthlyVisitTrendResponse.json @@ -10,4 +10,4 @@ "visit_depth": 2.0189 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdUserPortraitRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdUserPortraitRequest.json index 045fb81c..ccf1f162 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdUserPortraitRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdUserPortraitRequest.json @@ -1,4 +1,4 @@ { "begin_date": "20170611", "end_date": "20170617" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdUserPortraitResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdUserPortraitResponse.json index 8612f5cc..fa49acc2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdUserPortraitResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdUserPortraitResponse.json @@ -86,4 +86,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitDistributionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitDistributionRequest.json index f9e6641e..a7d2d432 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitDistributionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitDistributionRequest.json @@ -1,4 +1,4 @@ { "begin_date": "20170313", "end_date": "20170313" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitDistributionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitDistributionResponse.json index f561bbb9..8cbc97ab 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitDistributionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitDistributionResponse.json @@ -105,4 +105,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitPageRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitPageRequest.json index f9e6641e..a7d2d432 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitPageRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitPageRequest.json @@ -1,4 +1,4 @@ { "begin_date": "20170313", "end_date": "20170313" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitPageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitPageResponse.json index 359e3525..8f187b94 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitPageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdVisitPageResponse.json @@ -52,4 +52,4 @@ "page_share_uv": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyRetainInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyRetainInfoRequest.json index e99b76ff..06e535d0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyRetainInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyRetainInfoRequest.json @@ -1,4 +1,4 @@ { "begin_date": "20170306", "end_date": "20170312" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyRetainInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyRetainInfoResponse.json index a066c58e..f6e66b02 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyRetainInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyRetainInfoResponse.json @@ -20,4 +20,4 @@ "value": 99310 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyVisitTrendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyVisitTrendRequest.json index e99b76ff..06e535d0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyVisitTrendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyVisitTrendRequest.json @@ -1,4 +1,4 @@ { "begin_date": "20170306", "end_date": "20170312" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyVisitTrendResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyVisitTrendResponse.json index 5dfa5e10..e3bb23fd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyVisitTrendResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/DataCube/WeAnalysis/DataCubeGetWeAnalysisAppIdWeeklyVisitTrendResponse.json @@ -10,4 +10,4 @@ "visit_depth": 1.9735 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeActiveCodeQueryRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeActiveCodeQueryRequest.json index 09564e6a..a5c69f88 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeActiveCodeQueryRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeActiveCodeQueryRequest.json @@ -1,3 +1,3 @@ { "code_url": "P.URL.CN/0U.JYJXP3HJI2C98A9O" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeActiveCodeQueryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeActiveCodeQueryResponse.json index 230a8c48..2d6699f2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeActiveCodeQueryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeActiveCodeQueryResponse.json @@ -12,4 +12,4 @@ "wxa_path": "test_path", "application_id": 581865877, "isv_application_id": "test_id" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeActiveCodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeActiveCodeRequest.json index 10e221a9..e6c6d733 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeActiveCodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeActiveCodeRequest.json @@ -8,4 +8,4 @@ "product_code": "test_code", "wxa_appid": "wx3sxjifjwojfsffef", "wxa_path": "pages/index/index" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeDownloadRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeDownloadRequest.json index 101003fa..14f63422 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeDownloadRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeDownloadRequest.json @@ -2,4 +2,4 @@ "application_id": 581865877, "code_start": 0, "code_end": 49999 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeDownloadResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeDownloadResponse.json index 1f102f28..0ecd85c1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeDownloadResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeDownloadResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "buffer": "ajfiwejfoiawjfijweofi" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeQueryRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeQueryRequest.json index c881c37e..3ade8267 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeQueryRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeQueryRequest.json @@ -1,3 +1,3 @@ { "application_id": 581865877 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeQueryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeQueryResponse.json index 83b3a5c3..528ec5f5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeQueryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeQueryResponse.json @@ -12,4 +12,4 @@ "code_end": 99999 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeRequest.json index a546f0a2..df88fa38 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeRequest.json @@ -1,4 +1,4 @@ { "code_count": 100000, "isv_application_id": "testid124" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeResponse.json index ef1d8be0..42bf5841 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeApplyCodeResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "application_id": 581865877 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeTicketToCodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeTicketToCodeRequest.json index 9fef8447..0aef36be 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeTicketToCodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeTicketToCodeRequest.json @@ -1,4 +1,4 @@ { "code_ticket": "6cb4bc95e1f1abc97034cbe8fd484989", "openid": "oiV2luCau8Cx0TMOy9lvZSLqRcKc" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeTicketToCodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeTicketToCodeResponse.json index 7e568fd3..18a4b5ec 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeTicketToCodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpMarketCode/IntpMarketCodeTicketToCodeResponse.json @@ -12,4 +12,4 @@ "wxa_path": "pages/index/index", "application_id": 581865877, "isv_application_id": "test_id" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpRealName/IntpRealNameGetAuthUrlRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpRealName/IntpRealNameGetAuthUrlRequest.json index 01aeb8cd..cceec70f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpRealName/IntpRealNameGetAuthUrlRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpRealName/IntpRealNameGetAuthUrlRequest.json @@ -1,3 +1,3 @@ { "redirect_url": "https://mp.weixin.qq.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpRealName/IntpRealNameGetAuthUrlResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpRealName/IntpRealNameGetAuthUrlResponse.json index 08e24bf1..fbd59be3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpRealName/IntpRealNameGetAuthUrlResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/IntpRealName/IntpRealNameGetAuthUrlResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "expires_in": 7200, "auth_url": "https://mp.weixin.qq.com/insurance/card/getpwdconfig?auth_param=5c9f05#wechat_redirect" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Order/MerchantOrderGetByFilterResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Order/MerchantOrderGetByFilterResponse.json index de087e20..f6126099 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Order/MerchantOrderGetByFilterResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Order/MerchantOrderGetByFilterResponse.json @@ -69,7 +69,6 @@ "product_img": "http://mmbiz.qpic.cn/mmbiz_gif/KfrZwACMrmxj8XRiaTUzFNsTkWdTEJySicGKMHxuG0ibDfjTtb6ZIjNgakbnKq569TbBjvicSnWdnt46gEKjWe6Vcg/0?wx_fmt=gif" } ] - } ] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Order/MerchantOrderGetByIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Order/MerchantOrderGetByIdResponse.json index 461e577e..8e948f2d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Order/MerchantOrderGetByIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Order/MerchantOrderGetByIdResponse.json @@ -36,4 +36,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Product/MerchantCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Product/MerchantCreateRequest.json index 70175677..fe8f4250 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Product/MerchantCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Product/MerchantCreateRequest.json @@ -1,8 +1,6 @@ { "product_base": { - "category_id": [ - "537074298" - ], + "category_id": ["537074298"], "property": [ { "id": "1075741879", @@ -21,10 +19,7 @@ "sku_info": [ { "id": "1075741873", - "vid": [ - "1079742386", - "1079742363" - ] + "vid": ["1079742386", "1079742363"] } ], "main_img": "http://mmbiz.qpic.cn/mmbiz/4whpV1VZl2iccsvYbHvnphkyGtnvjD3ulEKogfsiaua49pvLfUS8Ym0GSYjViaLic0FD3vN0V8PILcibEGb2fPfEOmw/0", @@ -92,4 +87,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Product/MerchantGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Product/MerchantGetResponse.json index f8a13a15..39552ad5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Product/MerchantGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Product/MerchantGetResponse.json @@ -5,9 +5,7 @@ "product_id": "pDF3iY6Kr_BV_CXaiYysoGqJhppQ", "product_base": { "name": "testaddproduct", - "category_id": [ - "537074298" - ], + "category_id": ["537074298"], "img": [ "http://mmbiz.qpic.cn/mmbiz/4whpV1VZl2iccsvYbHvnphkyGtnvjD3ulEKogfsiaua49pvLfUS8Ym0GSYjViaLic0FD3vN0V8PILcibEGb2fPfEOmw/0" ], @@ -28,10 +26,7 @@ "sku_info": [ { "id": "1075741873", - "vid": [ - "1079742386", - "1079742363" - ] + "vid": ["1079742386", "1079742363"] } ], "buy_limit": 10, diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Product/MerchantUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Product/MerchantUpdateRequest.json index 0d46389b..c849e950 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Product/MerchantUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Product/MerchantUpdateRequest.json @@ -1,9 +1,7 @@ { "product_id": "pDF3iY6Kr_BV_CXaiYysoGqJhppQ", "product_base": { - "category_id": [ - "537074298" - ], + "category_id": ["537074298"], "property": [ { "id": "1075741879", @@ -22,10 +20,7 @@ "sku_info": [ { "id": "1075741873", - "vid": [ - "1079742386", - "1079742363" - ] + "vid": ["1079742386", "1079742363"] } ], "main_img": "http://mmbiz.qpic.cn/mmbiz/4whpV1VZl2iccsvYbHvnphkyGtnvjD3ulEKogfsiaua49pvLfUS8Ym0GSYjViaLic0FD3vN0V8PILcibEGb2fPfEOmw/0", diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Shelf/MerchantShelfAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Shelf/MerchantShelfAddRequest.json index b03c8636..48a65fb6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Shelf/MerchantShelfAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Shelf/MerchantShelfAddRequest.json @@ -76,4 +76,4 @@ }, "shelf_banner": "http://mmbiz.qpic.cn/mmbiz/4whpV1VZl2ibrWQn8zWFUh1YznsMV0XEiavFfLzDWYyvQOBBszXlMaiabGWzz5B2KhNn2IDemHa3iarmCyribYlZYyw/0", "shelf_name": "测试货架" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Shelf/MerchantShelfModifyRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Shelf/MerchantShelfModifyRequest.json index 2f32fce4..fe0741d9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Shelf/MerchantShelfModifyRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Merchant/Shelf/MerchantShelfModifyRequest.json @@ -77,4 +77,4 @@ }, "shelf_banner": "http://mmbiz.qpic.cn/mmbiz/4whpV1VZl2ibrWQn8zWFUh1YznsMV0XEiavFfLzDWYyvQOBBszXlMaiabGWzz5B2KhNn2IDemHa3iarmCyribYlZYyw/0", "shelf_name": "测试货架" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxCreateBillCardRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxCreateBillCardRequest.json index 2f69dbef..db948324 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxCreateBillCardRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxCreateBillCardRequest.json @@ -5,4 +5,4 @@ "logo_url": "http://mmbiz.qpic.cn/mmbiz/iaL1LJM1mF9aRKPZJkmG8xXhiaHqkKSVMMWeN3hLut7X7hicFNjakmxibMLGWpXrEXB33367o7zHN0CwngnQY7zb7g/0" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxCreateBillCardResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxCreateBillCardResponse.json index 091e7d56..43effee5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxCreateBillCardResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxCreateBillCardResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "card_id": "pjZ8Yt9WoOePThU0NfUKz5-tBEWU" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxGetBillAuthUrlRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxGetBillAuthUrlRequest.json index 8666b26b..4fc87e48 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxGetBillAuthUrlRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxGetBillAuthUrlRequest.json @@ -6,4 +6,4 @@ "source": "web", "redirect_url": "https://mp.weixin.qq.com", "ticket": "tttt" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxGetBillAuthUrlResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxGetBillAuthUrlResponse.json index b2320d06..ebd7730f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxGetBillAuthUrlResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxGetBillAuthUrlResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "auth_url": "http://auth_url", "expire_time": 7200 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxInsertBillRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxInsertBillRequest.json index 4a4ed698..05f1939c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxInsertBillRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxInsertBillRequest.json @@ -14,4 +14,4 @@ }, "card_id": "pjZ8Yt7xiy3b9UfffRIA4Tm2xTnw", "appid": "wxc0b84a53ed8e8d29" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxInsertBillResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxInsertBillResponse.json index 7d93b4c0..5e5b858a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxInsertBillResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Bill/NontaxInsertBillResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "code": "682xxxx661927", "openid": "ojZ8Ytz4lESxxxx_R1TvB2Kds" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxDownloadBillRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxDownloadBillRequest.json index 5a0869a4..1984589e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxDownloadBillRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxDownloadBillRequest.json @@ -3,4 +3,4 @@ "mch_id": "1900016021", "bill_date": "20170925", "bill_type": "ALL" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderListRequest.json index 5c9af144..fe62471c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderListRequest.json @@ -3,4 +3,4 @@ "payment_notice_no": "34000019081115065040", "department_code": "065080906", "region_code": "340000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderListResponse.json index 99cd4bb9..048cb3ed 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderListResponse.json @@ -10,4 +10,4 @@ "AQCA62hwdbQqI2BkDAqRH-U4tE4p" ], "paid_order_id": "AQCA62hwdbQqI2BkDAqRH-U4tE4p" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderRequest.json index d24ab7ad..455c7b7b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderRequest.json @@ -1,4 +1,4 @@ { "appid": "wx5f6e43071809a9dd", "order_id": "AQCAGxwqp6-aBeIKDJ7fvb6x3dZt" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderResponse.json index d18de195..2b6cba0d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetOrderResponse.json @@ -89,4 +89,4 @@ "notify_cnt": 1 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetRealNameRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetRealNameRequest.json index 7298400c..66d7ee57 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetRealNameRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetRealNameRequest.json @@ -1,3 +1,3 @@ { "wx_realname_token": "8e1e219ec15953101515058721" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetRealNameResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetRealNameResponse.json index 8f43440d..a67d2773 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetRealNameResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxGetRealNameResponse.json @@ -5,4 +5,4 @@ "data_encrypt_type": "AES_ECB", "data": "f06i5EaQQiBV5uXoKcfjYFkT/UKGGuU77sVlMjpC0kKea/wz9Ow1WPlD19w3g1vXFgBqHykP1s+Iy3LjfiqYNQ==", "key": "V60tpxnZPsBfFQhEnCWVeetm07OUk3PyH4PYozNlK1WxaYqbLAnKld/sMN+pjo8Td6mhAImcOq7Sue8h0SxGzTA4o3Wf32ff2IoUbTHPO0AgkpZJy36eECkY/TklgaVqPtqE9iJ66Qt+0/GM3pdQ3f8FYMVmkvK6m53aHn1u6cX6mL0nbYBfVOpyGOh3iIuHnBCW3IeXXa41D6DbHrzmeKbBi6T56wxHLYnmMB7P20+EzSdCQZzeY1MtdT0TT1KrlkZsL2fYKcjg/ytvGiEewH/jY4zf83AVJW3KjSDJaLZGXYsPvNHopAQTP9jz/hUtIa2fDgSAi3mGdxDsJcesmQ==" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxMicroPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxMicroPayRequest.json index 75f07dc5..81d2d844 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxMicroPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxMicroPayRequest.json @@ -28,4 +28,4 @@ "department_name": "测试执收单位", "region_code": "440000", "auth_code": " 134971951305811268" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxMicroPayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxMicroPayResponse.json index 29e90206..4168f08f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxMicroPayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxMicroPayResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "order_id": "AQAA_UjjdbLiUjMKDJ7fvb4AAAAA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxNotifyInconsistentOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxNotifyInconsistentOrderRequest.json index 53dbba84..ac09b438 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxNotifyInconsistentOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxNotifyInconsistentOrderRequest.json @@ -1,4 +1,4 @@ { "appid": "wx6cc9648de104270d", "order_id": "AQCAGxwqp6-aBeIKDJ7fvb6x3dZt" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxQueryFeeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxQueryFeeRequest.json index 4fb861d5..a8b5b964 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxQueryFeeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxQueryFeeRequest.json @@ -6,4 +6,4 @@ "department_code": "143605002004", "payment_notice_type": 1, "region_code": "440000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxQueryFeeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxQueryFeeResponse.json index 73c17674..7527d0b5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxQueryFeeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxQueryFeeResponse.json @@ -18,4 +18,4 @@ "payment_notice_type": 1, "region_code": "440000", "user_name": "叶*梅" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxRefundRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxRefundRequest.json index bbaab5b0..cfbc9979 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxRefundRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxRefundRequest.json @@ -2,4 +2,4 @@ "appid": "wx6cc9648de104270d", "order_id": "AQCAGxwqp6-aBeIKDJ7fvb6x3dZt", "reason": "线上线下重复缴费,解档票据号为DA01651861" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxRefundResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxRefundResponse.json index c1e23335..03e3c731 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxRefundResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxRefundResponse.json @@ -1,5 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "refund_order_id": "xxxx" -} \ No newline at end of file + "refund_order_id": "xxxx" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxUnifiedOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxUnifiedOrderRequest.json index a6187094..bef5fa25 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxUnifiedOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxUnifiedOrderRequest.json @@ -24,4 +24,4 @@ "return_url": "http://cockpouncher.55555.io/nontax-wxpay/pay_demand_result.html?type=showPayResult®ion_code=44000&unitNo=1&payNoticeNo=1", "service_id": 0, "user_name": "张*丰" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxUnifiedOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxUnifiedOrderResponse.json index 6a16bc57..bb137a84 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxUnifiedOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/NontaxUnifiedOrderResponse.json @@ -4,4 +4,4 @@ "order_id": "AQCAzieFp6-dC8EKDJ7fvb6x3dZt", "pay_url": "https://mp.weixin.qq.com/intp/nontax/pay?action=page&order_id=AQCAzieFp6-dC8EKDJ7fvb6x3dZt#wechat_redirect" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleEntranceNotifyRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleEntranceNotifyRequest.json index 6cd3c9ea..9a8fcb86 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleEntranceNotifyRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleEntranceNotifyRequest.json @@ -13,4 +13,4 @@ "plate_number": "粤B888888", "openid": "ont-9vjAcIdSU-LgB7ubALAVJO9U" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleEntranceNotifyResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleEntranceNotifyResponse.json index 28d5ac80..e5d5a24e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleEntranceNotifyResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleEntranceNotifyResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "user_state": "NORMAL" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehiclePayApplyRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehiclePayApplyRequest.json index 9dd744d6..3414ce65 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehiclePayApplyRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehiclePayApplyRequest.json @@ -20,4 +20,4 @@ "openid": "ont-9vjAcIdSU-LgB7ubALAVJO9U", "space_number": "D666666" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehiclePayApplyResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehiclePayApplyResponse.json index e5b8da98..c4839eb1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehiclePayApplyResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehiclePayApplyResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "order_id": "AQAAhNw2srPiUjMKDJ7fvb4AAAAA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleQueryStateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleQueryStateRequest.json index a7912b53..2c093022 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleQueryStateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleQueryStateRequest.json @@ -10,4 +10,4 @@ "plate_number": "粤B888888", "material_info": "test_material_info", "channel_type": "ETC" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleQueryStateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleQueryStateResponse.json index 066d012e..24cd3dd1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleQueryStateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Nontax/Vehicle/NontaxVehicleQueryStateResponse.json @@ -3,7 +3,7 @@ "errmsg": "ok", "user_state": "NORMAL", "openid": "ont-9vjAcIdSU-LgB7ubALAVJO9U", - "path": "https:\/\/payapp.weixin.qq.com\/vehicle\/plat\/indextemplate", + "path": "https://payapp.weixin.qq.com/vehicle/plat/indextemplate", "plate_number_info": [], "authorize_package": { "mch_id": "1800004561", @@ -20,4 +20,4 @@ "material_info": "test_material_info", "channel_type": "ETC" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Operation/WxaGetWxaDevInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Operation/WxaGetWxaDevInfoResponse.json index d0516df6..12dd047e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Operation/WxaGetWxaDevInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Operation/WxaGetWxaDevInfoResponse.json @@ -1,20 +1,10 @@ { "errcode": 0, "errmsg": "ok", - "requestdomain": [ - "https://www.example.com" - ], - "wsrequestdomain": [ - "wss://www.qq.com" - ], + "requestdomain": ["https://www.example.com"], + "wsrequestdomain": ["wss://www.qq.com"], "uploaddomain": [], - "downloaddomain": [ - "https://www.qq.com" - ], - "udpdomain": [ - "udp://www.example.com" - ], - "bizdomain": [ - "https://www.qq.com" - ] -} \ No newline at end of file + "downloaddomain": ["https://www.qq.com"], + "udpdomain": ["udp://www.example.com"], + "bizdomain": ["https://www.qq.com"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressAddRequest.json index 0b6391b3..ec1afd81 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressAddRequest.json @@ -23,4 +23,4 @@ "pickup": 0 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressDeleteRequest.json index e2ea90d9..e96bd652 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressDeleteRequest.json @@ -1,3 +1,3 @@ { "address_id": "12345" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressGetRequest.json index 63dab081..f33576f7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressGetRequest.json @@ -1,3 +1,3 @@ { "address_id": 12345 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressGetResponse.json index 29844ef8..18c8996d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressGetResponse.json @@ -30,4 +30,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressUpdateRequest.json index 07ac01b8..4416c84b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Address/ProductAddressUpdateRequest.json @@ -24,4 +24,4 @@ "pickup": 0 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Brand/ProductBrandGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Brand/ProductBrandGetResponse.json index ec0b3f72..f59e0157 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Brand/ProductBrandGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Brand/ProductBrandGetResponse.json @@ -12,4 +12,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Category/ProductCategoryGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Category/ProductCategoryGetRequest.json index 5baf6672..648abcdb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Category/ProductCategoryGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Category/ProductCategoryGetRequest.json @@ -1,3 +1,3 @@ { "f_cat_id": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Category/ProductCategoryGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Category/ProductCategoryGetResponse.json index 5c5ea0de..843f879d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Category/ProductCategoryGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Category/ProductCategoryGetResponse.json @@ -13,4 +13,4 @@ "name": "鞋帽" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponCreateRequest.json index bf569b73..36796660 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponCreateRequest.json @@ -4,10 +4,7 @@ "discount_info": { "discount_condition": { "product_cnt": 10, - "product_ids": [ - 1673110742, - 1673110743 - ], + "product_ids": [1673110742, 1673110743], "product_price": 100 }, "discount_fee": 50, @@ -35,4 +32,4 @@ "valid_day_num": 1, "valid_type": 1 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponCreateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponCreateResponse.json index 2ebaacc2..26a2815f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponCreateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponCreateResponse.json @@ -4,4 +4,4 @@ "data": { "coupon_id": 111 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponGetListRequest.json index 3c6d0b92..4adb3b8b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponGetListRequest.json @@ -4,4 +4,4 @@ "status": 2, "page": 1, "page_size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponGetListResponse.json index 03e569f5..9ac87bdc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponGetListResponse.json @@ -35,4 +35,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponGetRequest.json index a4aaea20..06b5f74a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponGetRequest.json @@ -1,3 +1,3 @@ { "coupon_id": 12639900 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponUpdateStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponUpdateStatusRequest.json index df4e6699..754ddfd5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponUpdateStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Coupon/ProductCouponUpdateStatusRequest.json @@ -1,4 +1,4 @@ { "coupon_id": 111, "status": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationDecorationServiceExperienceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationDecorationServiceExperienceRequest.json index 109f5fbd..7daff8f7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationDecorationServiceExperienceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationDecorationServiceExperienceRequest.json @@ -1,3 +1,3 @@ { "service_id": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationDecorationServiceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationDecorationServiceRequest.json index d9de62ba..27691fcc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationDecorationServiceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationDecorationServiceRequest.json @@ -1,4 +1,4 @@ { "switch_status": 1, "service_id": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationCheckStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationCheckStatusRequest.json index 109f5fbd..7daff8f7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationCheckStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationCheckStatusRequest.json @@ -1,3 +1,3 @@ { "service_id": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationCheckStatusResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationCheckStatusResponse.json index 41e285e0..4fece2d2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationCheckStatusResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationCheckStatusResponse.json @@ -2,4 +2,4 @@ "status": 1, "errcode": 0, "errmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationGetPressureTestReportRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationGetPressureTestReportRequest.json index 70cdefa5..42b7b5af 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationGetPressureTestReportRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationGetPressureTestReportRequest.json @@ -1,3 +1,3 @@ { "pressure_id": 666 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationGetPressureTestReportResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationGetPressureTestReportResponse.json index 4134328d..89e381b1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationGetPressureTestReportResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationGetPressureTestReportResponse.json @@ -18,4 +18,4 @@ "status": 1, "errcode": 0, "errmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationPressureTestResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationPressureTestResponse.json index bf7a1f2d..37f42e74 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationPressureTestResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationPressureTestResponse.json @@ -2,4 +2,4 @@ "pressure_id": 1, "errcode": 0, "errmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationQueryPressureTestStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationQueryPressureTestStatusRequest.json index 70cdefa5..42b7b5af 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationQueryPressureTestStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationQueryPressureTestStatusRequest.json @@ -1,3 +1,3 @@ { "pressure_id": 666 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationQueryPressureTestStatusResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationQueryPressureTestStatusResponse.json index 41e285e0..4fece2d2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationQueryPressureTestStatusResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Decoration/ProductDecorationWxaProductDecorationQueryPressureTestStatusResponse.json @@ -2,4 +2,4 @@ "status": 1, "errcode": 0, "errmsg": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/FreightTemplate/ProductDeliveryGetFreightTemplateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/FreightTemplate/ProductDeliveryGetFreightTemplateResponse.json index f5db26b9..237c8403 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/FreightTemplate/ProductDeliveryGetFreightTemplateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/FreightTemplate/ProductDeliveryGetFreightTemplateResponse.json @@ -13,7 +13,7 @@ "county_name": "东城区" }, "delivery_type": 1, - "delivery_id": [ "" ], + "delivery_id": [""], "shipping_method": 2, "all_condition_free_detail": { "condition_free_detail_list": [ @@ -59,4 +59,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/FreightTemplate/ProductDeliveryInsertFreightTemplateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/FreightTemplate/ProductDeliveryInsertFreightTemplateRequest.json index 93bc8f8b..95f09557 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/FreightTemplate/ProductDeliveryInsertFreightTemplateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/FreightTemplate/ProductDeliveryInsertFreightTemplateRequest.json @@ -9,7 +9,7 @@ "county_name": "东城区" }, "delivery_type": 1, - "delivery_id": [ "" ], + "delivery_id": [""], "shipping_method": 2, "all_condition_free_detail": { "condition_free_detail_list": [ @@ -51,7 +51,6 @@ "second_val_amount": 1, "second_price": 400 } - ] }, "is_default": 0, @@ -59,4 +58,4 @@ "address_info": [] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/FreightTemplate/ProductDeliveryUpdateFreightTemplateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/FreightTemplate/ProductDeliveryUpdateFreightTemplateRequest.json index 8ea7c8c8..5efc9224 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/FreightTemplate/ProductDeliveryUpdateFreightTemplateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/FreightTemplate/ProductDeliveryUpdateFreightTemplateRequest.json @@ -10,7 +10,7 @@ "county_name": "东城区" }, "delivery_type": 1, - "delivery_id": [ "" ], + "delivery_id": [""], "shipping_method": 2, "all_condition_free_detail": { "condition_free_detail_list": [ @@ -52,7 +52,6 @@ "second_val_amount": 1, "second_price": 400 } - ] }, "is_default": 0, @@ -60,4 +59,4 @@ "address_info": [] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/ProductDeliveryGetCompanyListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/ProductDeliveryGetCompanyListResponse.json index b54ee663..6dcc80a8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/ProductDeliveryGetCompanyListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/ProductDeliveryGetCompanyListResponse.json @@ -15,4 +15,4 @@ "delivery_name": "中通快速" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/ProductDeliverySendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/ProductDeliverySendRequest.json index a07b3554..eeaf9711 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/ProductDeliverySendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Delivery/ProductDeliverySendRequest.json @@ -14,4 +14,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetBalanceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetBalanceResponse.json index 04c66f5b..9aca357f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetBalanceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetBalanceResponse.json @@ -2,4 +2,4 @@ "available_amount": 45331, "pending_amount": 7549, "sub_mchid": "1588759201" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetOrderFlowRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetOrderFlowRequest.json index 71541b38..0b7d22ab 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetOrderFlowRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetOrderFlowRequest.json @@ -1,3 +1,3 @@ { "order_id": 1651031426690650 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetOrderFlowResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetOrderFlowResponse.json index 9970f4c5..62f63434 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetOrderFlowResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetOrderFlowResponse.json @@ -12,4 +12,4 @@ "order_time": 1625390752, "refunding_type": 0 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetWithdrawDetailRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetWithdrawDetailRequest.json index 907cd9e3..856d1527 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetWithdrawDetailRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetWithdrawDetailRequest.json @@ -1,3 +1,3 @@ { "out_request_no": "wd13675014323600561372" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetWithdrawDetailResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetWithdrawDetailResponse.json index 6f9344fb..d8fbb09b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetWithdrawDetailResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsGetWithdrawDetailResponse.json @@ -8,4 +8,4 @@ "bank_name": "", "bank_num": "", "status": "SUCCESS" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanOrderFlowRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanOrderFlowRequest.json index a7ac5fe4..51e2736b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanOrderFlowRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanOrderFlowRequest.json @@ -1,4 +1,4 @@ { "page_num": 1, "page_size": 100 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanOrderFlowResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanOrderFlowResponse.json index 422ad414..854b40a1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanOrderFlowResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanOrderFlowResponse.json @@ -27,4 +27,4 @@ "refunding_type": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanWithdrawRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanWithdrawRequest.json index a797fc96..9e89eaf2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanWithdrawRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanWithdrawRequest.json @@ -1,4 +1,4 @@ { "page_num": 1, "page_size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanWithdrawResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanWithdrawResponse.json index 9f987d9e..98c6cd59 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanWithdrawResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsScanWithdrawResponse.json @@ -22,4 +22,4 @@ } ], "total_num": 103 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsSetBankAccountRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsSetBankAccountRequest.json index 6bbddbb4..77c9b5b4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsSetBankAccountRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsSetBankAccountRequest.json @@ -5,4 +5,4 @@ "bank_address_code": "100000", "account_number": "1234567890" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsSubmitWithdrawRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsSubmitWithdrawRequest.json index f6534ca7..c8b768d8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsSubmitWithdrawRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsSubmitWithdrawRequest.json @@ -2,4 +2,4 @@ "amount": 1, "remark": "sss", "bank_memo": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsSubmitWithdrawResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsSubmitWithdrawResponse.json index ce801117..51b8a888 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsSubmitWithdrawResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Funds/ProductFundsSubmitWithdrawResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "OK", "qrcode_ticket": "xxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountAddRequest.json index 10feb3e4..9ed20a19 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountAddRequest.json @@ -14,4 +14,4 @@ "sale_stock": 50 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountAddResponse.json index 51155f62..39a9a394 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountAddResponse.json @@ -1,3 +1,3 @@ { "task_id": 346164 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountGetListRequest.json index 512d27e6..ca91e707 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountGetListRequest.json @@ -1,3 +1,3 @@ { "status": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountGetListResponse.json index 711e7c2e..a0e90f8d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountGetListResponse.json @@ -32,4 +32,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountUpdateStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountUpdateStatusRequest.json index 81df4282..162dcb6d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountUpdateStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/LimitedDiscount/ProductLimitedDiscountUpdateStatusRequest.json @@ -1,4 +1,4 @@ { "task_id": 325286, "status": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineGetPickupTemplateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineGetPickupTemplateResponse.json index 82dd18a0..52d3773c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineGetPickupTemplateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineGetPickupTemplateResponse.json @@ -12,4 +12,4 @@ "book_time": 1440 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineGetSameCityTemplateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineGetSameCityTemplateResponse.json index 199408f4..c87fb311 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineGetSameCityTemplateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineGetSameCityTemplateResponse.json @@ -23,4 +23,4 @@ "second_val_minutes": 10 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineUpdatePickupTemplateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineUpdatePickupTemplateRequest.json index e779bcce..aaa5151a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineUpdatePickupTemplateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineUpdatePickupTemplateRequest.json @@ -10,4 +10,4 @@ "book_time": 1440 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineUpdateSameCityTemplateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineUpdateSameCityTemplateRequest.json index c4f26164..384a1322 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineUpdateSameCityTemplateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Offline/ProductOfflineUpdateSameCityTemplateRequest.json @@ -21,4 +21,4 @@ "second_val_minutes": 10 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderAcceptApplyRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderAcceptApplyRequest.json index 1691ad10..53dfab67 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderAcceptApplyRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderAcceptApplyRequest.json @@ -1,3 +1,3 @@ { "order_id": 1768034782998651 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderBatchGetAftersaleOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderBatchGetAftersaleOrderRequest.json index 2592328e..6ddbf716 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderBatchGetAftersaleOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderBatchGetAftersaleOrderRequest.json @@ -1,3 +1,3 @@ { - "after_sale_order_id_list": [ 7011, 1030 ] -} \ No newline at end of file + "after_sale_order_id_list": [7011, 1030] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderBatchGetAftersaleOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderBatchGetAftersaleOrderResponse.json index 5f1578ba..08d6da52 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderBatchGetAftersaleOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderBatchGetAftersaleOrderResponse.json @@ -80,4 +80,4 @@ "type": "REFUND" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderGetAftersaleOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderGetAftersaleOrderRequest.json index 2c23406d..7cfbdd17 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderGetAftersaleOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderGetAftersaleOrderRequest.json @@ -1,3 +1,3 @@ { "after_sale_order_id": 7011 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderGetAftersaleOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderGetAftersaleOrderResponse.json index 094cdcaf..66986f23 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderGetAftersaleOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderGetAftersaleOrderResponse.json @@ -18,20 +18,20 @@ "tel_number": "" }, "refund_info": { - "amount": 11 + "amount": 11 }, "return_info": { "waybill_id": "", - "delivery_id": "", - "delivery_name": "" + "delivery_id": "", + "delivery_name": "" }, "merchant_upload_info": { - "reject_reason": "", - "refund_certificates": [] + "reject_reason": "", + "refund_certificates": [] }, - "create_time": 1591319454, - "update_time": 1612754444, - "reason": "NO_LONGER_WANT", + "create_time": 1591319454, + "update_time": 1612754444, + "reason": "NO_LONGER_WANT", "refund_resp": { "code": "", "ret": 0, @@ -39,4 +39,4 @@ }, "type": "REFUND" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderRejectRefundRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderRejectRefundRequest.json index 35c22390..7c794f74 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderRejectRefundRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderRejectRefundRequest.json @@ -1,4 +1,4 @@ { "order_id": 1768715750567651, - "reject_reason": "123" -} \ No newline at end of file + "reject_reason": "123" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderUploadRefundCertificateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderUploadRefundCertificateRequest.json index 23382f27..4510d3bd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderUploadRefundCertificateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/Aftersale/ProductOrderUploadRefundCertificateRequest.json @@ -1,5 +1,5 @@ { - "order_id": 1768715750567651, - "refund_certificates": [ "media_id1", "media_id2" ], + "order_id": 1768715750567651, + "refund_certificates": ["media_id1", "media_id2"], "desc": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductCouponGetUserRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductCouponGetUserRequest.json index 972eb891..8eae87b5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductCouponGetUserRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductCouponGetUserRequest.json @@ -1,4 +1,4 @@ { "openid": "I_AM_JUST_AN_EXAMPLE", "status": 100 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductCouponGetUserResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductCouponGetUserResponse.json index 15ee9cad..8d302389 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductCouponGetUserResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductCouponGetUserResponse.json @@ -15,4 +15,4 @@ "discount_fee": 123 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductCouponPushRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductCouponPushRequest.json index c9064e46..aa3a2f42 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductCouponPushRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductCouponPushRequest.json @@ -1,4 +1,4 @@ { "openid": "xxxx", "coupon_id": 123 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderChangeMerchantNotesRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderChangeMerchantNotesRequest.json index 6b3c75f5..79d84028 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderChangeMerchantNotesRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderChangeMerchantNotesRequest.json @@ -1,4 +1,4 @@ { "order_id": 123456, "merchant_notes": "abc" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderChangeOrderPriceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderChangeOrderPriceRequest.json index 7ec590ae..5c1c5fce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderChangeOrderPriceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderChangeOrderPriceRequest.json @@ -9,4 +9,4 @@ "change_price": 300 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetListRequest.json index 567f5acc..84008ad5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetListRequest.json @@ -5,4 +5,4 @@ "page": 1, "page_size": 10, "source": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetListResponse.json index fbc58955..a60afb37 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetListResponse.json @@ -84,4 +84,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetRequest.json index 0aee5416..0334eaa4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetRequest.json @@ -1,3 +1,3 @@ { "order_id": 32423523451235145 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetResponse.json index 2ddcab1e..a96c09e4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderGetResponse.json @@ -82,4 +82,4 @@ "merchant_notes": "库存不足,取消" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderSearchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderSearchRequest.json index b119fea9..14291af9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderSearchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderSearchRequest.json @@ -11,4 +11,4 @@ "order_id": 123, "page": 1, "page_size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderSearchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderSearchResponse.json index a3759a15..d1ce93fe 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderSearchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Order/ProductOrderSearchResponse.json @@ -85,4 +85,4 @@ } ], "total_num": 20 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ProductImageUploadRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ProductImageUploadRequest.json index 2f646da0..3cd7dc65 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ProductImageUploadRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ProductImageUploadRequest.json @@ -1,3 +1,3 @@ { "img_url": "https://xxx.com/yyy" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ProductImageUploadResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ProductImageUploadResponse.json index 55631736..5e01e575 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ProductImageUploadResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ProductImageUploadResponse.json @@ -6,4 +6,4 @@ "pay_media_id": "asdgasvdadfa", "temp_img_url": "xxxxx" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeCheckRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeCheckRequest.json index 26462bbb..4e55a31a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeCheckRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeCheckRequest.json @@ -1,3 +1,3 @@ { "ticket": "05ba627d5b73b6f3ef0dcfc7" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeCheckResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeCheckResponse.json index 2db5d4c5..758c674e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeCheckResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeCheckResponse.json @@ -5,4 +5,4 @@ "self_check_err_code": 0, "self_check_err_msg": "", "scan_user_type": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGenerateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGenerateRequest.json index 7d5b7e26..b8681617 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGenerateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGenerateRequest.json @@ -1,3 +1,3 @@ { "type": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGenerateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGenerateResponse.json index d11c18a6..777af088 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGenerateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGenerateResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "qrcode_ticket": "xxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGetRequest.json index 26462bbb..4e55a31a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGetRequest.json @@ -1,3 +1,3 @@ { "ticket": "05ba627d5b73b6f3ef0dcfc7" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGetResponse.json index 759f8125..58a5b95d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Qrcode/ProductQrcodeGetResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "qrcode_buf": "xxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterCheckAuditStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterCheckAuditStatusRequest.json index a27121d9..a33f1098 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterCheckAuditStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterCheckAuditStatusRequest.json @@ -1,3 +1,3 @@ { "wx_name": "xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterCheckAuditStatusResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterCheckAuditStatusResponse.json index 4f1fe5eb..c3f56cc6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterCheckAuditStatusResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterCheckAuditStatusResponse.json @@ -15,4 +15,4 @@ "register_status": 0, "registered_appid": "wxe11234123123" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterRegisterShopRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterRegisterShopRequest.json index a5f5df77..db3f6139 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterRegisterShopRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterRegisterShopRequest.json @@ -4,4 +4,4 @@ "id_card_number": "121321412", "channel_id": "4", "api_openstore_type": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterSubmitBasicInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterSubmitBasicInfoRequest.json index 728f3256..f9058616 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterSubmitBasicInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterSubmitBasicInfoRequest.json @@ -4,7 +4,7 @@ "nickname": "昵称", "abbr": "简称", "introduction": "简介", - "naming_other_stuff": [ "补充材料" ] + "naming_other_stuff": ["补充材料"] }, "return_info": { "address_info": { @@ -29,5 +29,4 @@ "tel_number": "24534252" } } - -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterSubmitMerchantInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterSubmitMerchantInfoRequest.json index e9253f7c..d60fe9ab 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterSubmitMerchantInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Register/ProductRegisterSubmitMerchantInfoRequest.json @@ -62,4 +62,4 @@ ] }, "supplementary_desc": "补充描述" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUAddRequest.json index 9bb1c624..104eb856 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUAddRequest.json @@ -18,4 +18,4 @@ "attr_value": "主机+保护套" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUAddResponse.json index cb977df2..8589cd69 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUAddResponse.json @@ -5,4 +5,4 @@ "sku_id": 2342523452352345, "create_time": "2020-03-25 12:05:25" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUBatchAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUBatchAddRequest.json index d1fc0baa..9dd92323 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUBatchAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUBatchAddRequest.json @@ -22,4 +22,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUBatchAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUBatchAddResponse.json index 998ad157..edd2fd4c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUBatchAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUBatchAddResponse.json @@ -8,4 +8,4 @@ "create_time": "2020-03-25 12:05:25" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUDeleteRequest.json index 10b653b9..d519d956 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUDeleteRequest.json @@ -3,4 +3,4 @@ "out_product_id": "1234566", "out_sku_id": "1024", "sku_id": 2352525 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetListRequest.json index 44808764..ba6a18d7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetListRequest.json @@ -2,4 +2,4 @@ "product_id": 23423523452345235, "need_edit_sku": 1, "need_real_stock": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetListResponse.json index ea3a3319..4c0ee911 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetListResponse.json @@ -25,4 +25,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetRequest.json index 1ba79ff6..a1c193fd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetRequest.json @@ -3,4 +3,4 @@ "sku_id": 2352525, "need_edit_sku": 1, "need_real_stock": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetResponse.json index c17f5987..e8188537 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUGetResponse.json @@ -24,4 +24,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdatePriceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdatePriceRequest.json index c76c1685..4a5687a7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdatePriceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdatePriceRequest.json @@ -5,4 +5,4 @@ "out_sku_id": "1024", "sale_price": 1300, "market_price": 1500 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdatePriceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdatePriceResponse.json index f254fc74..388e97d6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdatePriceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdatePriceResponse.json @@ -5,4 +5,4 @@ "sku_id": 2342523452352345, "update_time": "2020-03-25 12:05:25" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdateRequest.json index aced3ffd..297095cf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdateRequest.json @@ -19,4 +19,4 @@ "attr_value": "主机+保护套" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdateResponse.json index f254fc74..388e97d6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SKU/ProductSKUUpdateResponse.json @@ -5,4 +5,4 @@ "sku_id": 2342523452352345, "update_time": "2020-03-25 12:05:25" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUAddRequest.json index b435e8e4..fa535427 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUAddRequest.json @@ -61,4 +61,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUAddResponse.json index 82a5523c..9400abac 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUAddResponse.json @@ -6,4 +6,4 @@ "out_product_id": "1234566", "create_time": "2020-03-25 12:05:25" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUDeleteRequest.json index d8cb1eba..05a7524e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUDeleteRequest.json @@ -1,4 +1,4 @@ { "product_id": 324545, "out_product_id": "51514515" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUDelistingRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUDelistingRequest.json index 153945e6..9ddaf2f9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUDelistingRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUDelistingRequest.json @@ -1,4 +1,4 @@ { "product_id": 1234234, "out_product_id": "1234566" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetListRequest.json index 6afe7be1..b1e2a175 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetListRequest.json @@ -3,4 +3,4 @@ "page": 1, "page_size": 10, "need_edit_spu": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetListResponse.json index 23b7f6a2..345f1486 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetListResponse.json @@ -64,4 +64,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetRequest.json index 5c94a777..225ecf3c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetRequest.json @@ -2,4 +2,4 @@ "product_id": 324545, "out_product_id": "51514515", "need_edit_spu": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetResponse.json index 2f7957fe..6e421f6f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUGetResponse.json @@ -62,4 +62,4 @@ ] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUListingRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUListingRequest.json index 153945e6..9ddaf2f9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUListingRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUListingRequest.json @@ -1,4 +1,4 @@ { "product_id": 1234234, "out_product_id": "1234566" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUSearchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUSearchRequest.json index 26388080..68bdbae1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUSearchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUSearchRequest.json @@ -3,4 +3,4 @@ "source": 1, "page": 1, "page_size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUSearchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUSearchResponse.json index ea5dddb0..a9e239f5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUSearchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUSearchResponse.json @@ -63,4 +63,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUUpdateRequest.json index e2b694fa..531b959f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUUpdateRequest.json @@ -40,4 +40,4 @@ "express_info": { "template_id": 5189 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUUpdateResponse.json index c2b693df..41610849 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/SPU/ProductSPUUpdateResponse.json @@ -6,4 +6,4 @@ "out_product_id": "1234566", "update_time": "2020-06-20 10:00:00" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceCheckAuthRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceCheckAuthRequest.json index 7d4bd418..5c0c06cf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceCheckAuthRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceCheckAuthRequest.json @@ -1,3 +1,3 @@ { "code": "324545" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceCheckAuthResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceCheckAuthResponse.json index 29b8a8c7..a6e12ed6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceCheckAuthResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceCheckAuthResponse.json @@ -5,4 +5,4 @@ "appid": "wx666666666", "service_id": 123 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceGetListResponse.json index 91095fd4..4e622a2e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceGetListResponse.json @@ -9,4 +9,4 @@ "service_type": 2 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceGetOrderListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceGetOrderListRequest.json index 99ed8047..76bf0236 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceGetOrderListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceGetOrderListRequest.json @@ -3,4 +3,4 @@ "end_create_time": "2020-04-25 12:05:25", "page": 1, "page_size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceGetOrderListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceGetOrderListResponse.json index dcc69afc..d1288837 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceGetOrderListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Service/ProductServiceGetOrderListResponse.json @@ -14,4 +14,4 @@ "status": 1 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ShipMethods/ProductShipMethodsGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ShipMethods/ProductShipMethodsGetResponse.json index 6de4634a..1753a298 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ShipMethods/ProductShipMethodsGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ShipMethods/ProductShipMethodsGetResponse.json @@ -6,4 +6,4 @@ "same_city": 1, "pickup": 0 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ShipMethods/ProductShipMethodsSetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ShipMethods/ProductShipMethodsSetRequest.json index 8a585b9a..c209721e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ShipMethods/ProductShipMethodsSetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/ShipMethods/ProductShipMethodsSetRequest.json @@ -4,4 +4,4 @@ "same_city": 0, "pickup": 0 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockGetRequest.json index eb9ba603..f5d678c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockGetRequest.json @@ -3,4 +3,4 @@ "out_product_id": "1234566", "sku_id": 1343, "out_sku_id": "1024" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockGetResponse.json index 89400dc1..5fa26478 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockGetResponse.json @@ -4,4 +4,4 @@ "data": { "stock_num": 100 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockUpdateRequest.json index 15927994..6562faed 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockUpdateRequest.json @@ -5,4 +5,4 @@ "out_sku_id": "1024", "type": 1, "stock_num": 100 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockUpdateResponse.json index 1e53542c..5fdcec47 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Stock/ProductStockUpdateResponse.json @@ -4,4 +4,4 @@ "data": { "update_time": "2020-03-25 12:05:25" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Store/ProductStoreGetInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Store/ProductStoreGetInfoResponse.json index 14e27e92..bf21720e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Store/ProductStoreGetInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Store/ProductStoreGetInfoResponse.json @@ -6,4 +6,4 @@ "logo": "http://xxxx.png", "type": 1 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Store/ProductStoreGetShopCategoryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Store/ProductStoreGetShopCategoryResponse.json index 1bc6735f..d1dfa1c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Store/ProductStoreGetShopCategoryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Product/Store/ProductStoreGetShopCategoryResponse.json @@ -9,4 +9,4 @@ "cat_level": 1 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/PublisherStat/PublisherStatAdposGeneralResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/PublisherStat/PublisherStatAdposGeneralResponse.json index f70dadcc..611a486e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/PublisherStat/PublisherStatAdposGeneralResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/PublisherStat/PublisherStatAdposGeneralResponse.json @@ -27,4 +27,4 @@ "ecpm": 321.608591022 }, "total_num": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/PublisherStat/PublisherStatCpsGeneralResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/PublisherStat/PublisherStatCpsGeneralResponse.json index c7365075..7674ef1f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/PublisherStat/PublisherStatCpsGeneralResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/PublisherStat/PublisherStatCpsGeneralResponse.json @@ -25,4 +25,4 @@ "total_commission": 133030 }, "total_num": 7 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/PublisherStat/PublisherStatSettlementResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/PublisherStat/PublisherStatSettlementResponse.json index 3efa8f21..aac687d6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/PublisherStat/PublisherStatSettlementResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/PublisherStat/PublisherStatSettlementResponse.json @@ -30,4 +30,4 @@ } ], "total_num": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/RedPacketCover/RedPacketCoverWxAppCoverUrlGetByTokenRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/RedPacketCover/RedPacketCoverWxAppCoverUrlGetByTokenRequest.json index cd1c7a2f..2bc56e8d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/RedPacketCover/RedPacketCoverWxAppCoverUrlGetByTokenRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/RedPacketCover/RedPacketCoverWxAppCoverUrlGetByTokenRequest.json @@ -1,4 +1,4 @@ { "openid": "xxxxxxxxxxmTo5lAUQxxxxxxxxxx", "ctoken": "xxxxxqpHPu1xxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/RedPacketCover/RedPacketCoverWxAppCoverUrlGetByTokenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/RedPacketCover/RedPacketCoverWxAppCoverUrlGetByTokenResponse.json index 9b23b6fc..061a34dd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/RedPacketCover/RedPacketCoverWxAppCoverUrlGetByTokenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/RedPacketCover/RedPacketCoverWxAppCoverUrlGetByTokenResponse.json @@ -4,4 +4,4 @@ }, "errcode": 0, "errmsg": "success" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2AddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2AddRequest.json index e54a56ad..364c90a4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2AddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2AddRequest.json @@ -369,4 +369,4 @@ "partial_update": 1 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2AddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2AddResponse.json index 0e0dde63..7f0cca24 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2AddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2AddResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "status_ticket": "115141102647330200" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoByPageRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoByPageRequest.json index 28629a61..f297f92e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoByPageRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoByPageRequest.json @@ -2,4 +2,4 @@ "page_context": "Uuls-grxWGsHmCGPcUQbtK0Da", "page_size": 10, "page_num": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoByPageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoByPageResponse.json index 8a84aea5..0ad82513 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoByPageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoByPageResponse.json @@ -1,132 +1,134 @@ { - "product": [{ - "pid": "pid001", - "image_info": { - "main_image_list": [ - { - "url": "http://www.google.com/a.jpg" - }, - { - "url": "http://www.google.com/b.jpg" - } - ] - }, - "category_info": { - "category_item": [ - { - "category_name": "图书" - }, - { - "category_name": "少儿图书" - } - ] - }, - "official_category_info": { - "category_item": [ - { - "category_name": "图书" - } - ] - }, - "link_info": { - "url": "pages/index/index", - "wxa_appid": "wxa0x01adx3423566", - "link_type": "wxa" - }, - "title": "test title", - "sub_title": "test sub_title", - "brand": "test brand", - "shop_info": { - "source": 2 - }, - "desc": "test desc", - "price_info": { - "min_price": 250, - "max_price": 250.22, - "min_ori_price": 300.1, - "max_ori_price": 320.15 - }, - "sale_info": { - "sale_status": "on", - "stock": 1000 - }, - "custom_info": { - "custom_list": [ - { - "key": "book_desc", - "value": "“熊猫先生”通过4个富有节律性、带有因果关系、幽默风趣,又有正反对比的故事,让小朋友明白礼仪的重要性。" - }, - { - "key": "author", - "value": "史蒂夫•安东尼" - }, - { - "key": "publisher", - "value": "中信出版社" - } - ] - }, - "sku_info": { - "sku_item": [ - { - "sku_id": "sku001", - "barcode_type": "ean13", - "barcode": "2018032105140", - "image_info": { - "main_image_list": [ - { - "url": "http://www.google.com/c.jpg" - }, - { - "url": "http://www.google.com/d.jpg" - } - ] + "product": [ + { + "pid": "pid001", + "image_info": { + "main_image_list": [ + { + "url": "http://www.google.com/a.jpg" }, - "link_url": "pages/index/index?a=b", - "price_info": { - "min_price": 250, - "max_price": 250.22, - "min_ori_price": 300.1, - "max_ori_price": 320.15 - }, - "sale_info": { - "sale_status": "on", - "stock": 500 - }, - "shop_info": { - "source": 2 + { + "url": "http://www.google.com/b.jpg" } - }, - { - "sku_id": "sku002", - "barcode_type": "ean13", - "barcode": "2018032105140", - "image_info": { - "main_image_list": [ - { - "url": "http://www.google.com/c.jpg" - }, - { - "url": "http://www.google.com/d.jpg" - } - ] + ] + }, + "category_info": { + "category_item": [ + { + "category_name": "图书" }, - "link_url": "pages/index/index?a=b", - "price_info": { - "min_price": 250, - "max_price": 250.22, - "min_ori_price": 300.1, - "max_ori_price": 320.15 - }, - "sale_info": { - "sale_status": "on", - "stock": 500 - }, - "shop_info": { - "source": 2 + { + "category_name": "少儿图书" } - } - ] + ] + }, + "official_category_info": { + "category_item": [ + { + "category_name": "图书" + } + ] + }, + "link_info": { + "url": "pages/index/index", + "wxa_appid": "wxa0x01adx3423566", + "link_type": "wxa" + }, + "title": "test title", + "sub_title": "test sub_title", + "brand": "test brand", + "shop_info": { + "source": 2 + }, + "desc": "test desc", + "price_info": { + "min_price": 250, + "max_price": 250.22, + "min_ori_price": 300.1, + "max_ori_price": 320.15 + }, + "sale_info": { + "sale_status": "on", + "stock": 1000 + }, + "custom_info": { + "custom_list": [ + { + "key": "book_desc", + "value": "“熊猫先生”通过4个富有节律性、带有因果关系、幽默风趣,又有正反对比的故事,让小朋友明白礼仪的重要性。" + }, + { + "key": "author", + "value": "史蒂夫•安东尼" + }, + { + "key": "publisher", + "value": "中信出版社" + } + ] + }, + "sku_info": { + "sku_item": [ + { + "sku_id": "sku001", + "barcode_type": "ean13", + "barcode": "2018032105140", + "image_info": { + "main_image_list": [ + { + "url": "http://www.google.com/c.jpg" + }, + { + "url": "http://www.google.com/d.jpg" + } + ] + }, + "link_url": "pages/index/index?a=b", + "price_info": { + "min_price": 250, + "max_price": 250.22, + "min_ori_price": 300.1, + "max_ori_price": 320.15 + }, + "sale_info": { + "sale_status": "on", + "stock": 500 + }, + "shop_info": { + "source": 2 + } + }, + { + "sku_id": "sku002", + "barcode_type": "ean13", + "barcode": "2018032105140", + "image_info": { + "main_image_list": [ + { + "url": "http://www.google.com/c.jpg" + }, + { + "url": "http://www.google.com/d.jpg" + } + ] + }, + "link_url": "pages/index/index?a=b", + "price_info": { + "min_price": 250, + "max_price": 250.22, + "min_ori_price": 300.1, + "max_ori_price": 320.15 + }, + "sale_info": { + "sale_status": "on", + "stock": 500 + }, + "shop_info": { + "source": 2 + } + } + ] + } } - }] -} \ No newline at end of file + ] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoRequest.json index ba656f2d..6be01b8f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoRequest.json @@ -2,4 +2,4 @@ "product": { "pid": "pid001" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoResponse.json index 0ae94a31..ac50de95 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2GetInfoResponse.json @@ -129,4 +129,4 @@ ] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2StatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2StatusRequest.json index ae259c4a..e8b114f3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2StatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2StatusRequest.json @@ -1,3 +1,3 @@ { "status_ticket": "115141102647330200" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2StatusResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2StatusResponse.json index 290f8021..f3cb0284 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2StatusResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/ScanProductV2/ScanProductV2StatusResponse.json @@ -19,4 +19,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountGetBrandListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountGetBrandListResponse.json index 1850740f..c3d5b09b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountGetBrandListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountGetBrandListResponse.json @@ -7,4 +7,4 @@ "brand_wording": "悦诗风吟" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountGetCategoryListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountGetCategoryListResponse.json index 23614bc2..260d4245 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountGetCategoryListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountGetCategoryListResponse.json @@ -11,4 +11,4 @@ "third_cat_name": "隔离霜/妆前乳" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountGetInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountGetInfoResponse.json index 103ebd1a..d961f90f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountGetInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountGetInfoResponse.json @@ -5,4 +5,4 @@ "service_agent_phone": "020-888888", "service_agent_type": [1, 2] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountUpdateInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountUpdateInfoRequest.json index f6b896a4..f7d9dad2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountUpdateInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Account/ShopAccountUpdateInfoRequest.json @@ -1,7 +1,7 @@ { "service_agent_path": "小程序path", "service_agent_phone": "020-888888", - "service_agent_type": [ 1, 2 ], + "service_agent_type": [1, 2], "default_receiving_address": { "receiver_name": "张三", "detailed_address": "详细收货地址信息", @@ -11,4 +11,4 @@ "city": "城市,选填", "town": "乡镇,选填" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleAddRequest.json index a5b2f549..75c4e69b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleAddRequest.json @@ -15,4 +15,4 @@ "product_cnt": 5 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleGetRequest.json index 4eea822f..9cd20f8d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleGetRequest.json @@ -2,4 +2,4 @@ "order_id": 32434234, "out_order_id": "xxxxx", "openid": "oTVP50O53a7jgmawAmxKukNlq3XI" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleGetResponse.json index 926dc1a2..b28ee080 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleGetResponse.json @@ -3,11 +3,11 @@ "errmsg": "ok", "aftersale_infos": [ { - "order_id": 32434234, + "order_id": 32434234, "out_order_id": "xxxxx", - "out_aftersale_id": "xxxxxx", + "out_aftersale_id": "xxxxxx", "openid": "oTVP50O53a7jgmawAmxKukNlq3XI", - "type": 1, + "type": 1, "create_time": "2020-12-01 00:00:00", "path": "/pages/order.html?out_order_id=xxxxx", "status": 1, @@ -20,4 +20,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleUpdateRequest.json index 2ae4e6d5..4cb55b44 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Aftersale/ShopAftersaleUpdateRequest.json @@ -4,4 +4,4 @@ "out_aftersale_id": "xxxxxx", "status": 1, "finish_all_aftersale": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditBrandRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditBrandRequest.json index e177f13d..5aa8cc1f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditBrandRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditBrandRequest.json @@ -7,16 +7,26 @@ "brand_management_type": 2, "commodity_origin_type": 2, "brand_wording": "346225226351203275", - "sale_authorization": [ "https://img.zhls.qq.com/3/609b98f7e0ff43d59ce6d9cca636c3e0.jpg" ], - "trademark_registration_certificate": [ "https://img.zhls.qq.com/3/609b98f7e0ff43d59ce6d9cca636c3e0.jpg" ], - "trademark_change_certificate": [ "https://img.zhls.qq.com/3/609b98f7e0ff43d59ce6d9cca636c3e0.jpg" ], + "sale_authorization": [ + "https://img.zhls.qq.com/3/609b98f7e0ff43d59ce6d9cca636c3e0.jpg" + ], + "trademark_registration_certificate": [ + "https://img.zhls.qq.com/3/609b98f7e0ff43d59ce6d9cca636c3e0.jpg" + ], + "trademark_change_certificate": [ + "https://img.zhls.qq.com/3/609b98f7e0ff43d59ce6d9cca636c3e0.jpg" + ], "trademark_registrant": "https://img.zhls.qq.com/3/609b98f7e0ff43d59ce6d9cca636c3e0.jpg", "trademark_registrant_nu": "1249305", "trademark_authorization_period": "2020-03-25 12:05:25", - "trademark_registration_application": [ "https://img.zhls.qq.com/3/609b98f7e0ff43d59ce6d9cca636c3e0.jpg" ], + "trademark_registration_application": [ + "https://img.zhls.qq.com/3/609b98f7e0ff43d59ce6d9cca636c3e0.jpg" + ], "trademark_applicant": "张三", "trademark_application_time": "2020-03-25 12:05:25", - "imported_goods_form": [ "https://img.zhls.qq.com/3/609b98f7e0ff43d59ce6d9cca636c3e0.jpg" ] + "imported_goods_form": [ + "https://img.zhls.qq.com/3/609b98f7e0ff43d59ce6d9cca636c3e0.jpg" + ] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditBrandResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditBrandResponse.json index c75741e9..c8bd9c91 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditBrandResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditBrandResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "audit_id": "RQAAAPX1nuJsAAAAFTrfXW" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditCategoryRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditCategoryRequest.json index fa726494..3d3d24fe 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditCategoryRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditCategoryRequest.json @@ -3,9 +3,9 @@ "license": "www.xxxxx.com", "category_info": { "level1": 7419, - "level2": 7439, + "level2": 7439, "level3": 7448, - "certificate": [ "www.xxx.com" ] + "certificate": ["www.xxx.com"] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditCategoryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditCategoryResponse.json index c75741e9..c8bd9c91 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditCategoryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditAuditCategoryResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "audit_id": "RQAAAPX1nuJsAAAAFTrfXW" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditGetMiniAppCertificateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditGetMiniAppCertificateRequest.json index 6096cbd5..1d26aebc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditGetMiniAppCertificateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditGetMiniAppCertificateRequest.json @@ -1,3 +1,3 @@ { "req_type": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditGetMiniAppCertificateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditGetMiniAppCertificateResponse.json index cb49c0a5..06449ffa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditGetMiniAppCertificateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditGetMiniAppCertificateResponse.json @@ -9,17 +9,15 @@ "https://store.mp.video.tencent-cloud.com/xxxxxxxxxxxxxxxxxxxxxxxxxx" ] }, - "category_info_list": - [ + "category_info_list": [ { "first_category_id": 304, "first_category_name": "商家自营", "second_category_id": 321, "second_category_name": "食品", - "certificate_url": - [ + "certificate_url": [ "https://store.mp.video.tencent-cloud.com/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditResultRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditResultRequest.json index 18febd8f..90a88cc3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditResultRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditResultRequest.json @@ -1,3 +1,3 @@ { "audit_id": "HIDFUSHJRIYAAAAAAAA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditResultResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditResultResponse.json index d27bdf9d..0db26d8d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditResultResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Audit/ShopAuditResultResponse.json @@ -6,4 +6,4 @@ "brand_id": 0, "reject_reason": "请重新提交审核" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Category/ShopCategoryGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Category/ShopCategoryGetResponse.json index 36ddd307..cd0ef0d0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Category/ShopCategoryGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Category/ShopCategoryGetResponse.json @@ -15,4 +15,4 @@ "second_cat_name": "健身玩具" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetListRequest.json index 3f6bbc96..73359091 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetListRequest.json @@ -4,4 +4,4 @@ "end_create_time": 1641280180, "offset": 0, "limit": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetListResponse.json index 11c1916b..5842915d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetListResponse.json @@ -17,4 +17,4 @@ } ], "total": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetRequest.json index e353bbdf..b5aedec1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetRequest.json @@ -1,3 +1,3 @@ { "complaint_order_id": 123 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetResponse.json index 256d01b7..4997c4f8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintGetResponse.json @@ -9,9 +9,7 @@ "event_describe": "用户发起投诉", "material_info": { "content": "测试", - "media_url_list": [ - "url" - ] + "media_url_list": ["url"] }, "state": 230000, "state_describe": "商家售后处理中", @@ -33,4 +31,4 @@ "type": 7, "update_time": 1647431879 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintUploadMaterialRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintUploadMaterialRequest.json index 4e3c5d76..2e7884e8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintUploadMaterialRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Complaint/ShopComplaintUploadMaterialRequest.json @@ -2,6 +2,6 @@ "complaint_order_id": 123, "material_info": { "content": "说明一下", - "media_url_list": [ "xx", "xx" ] + "media_url_list": ["xx", "xx"] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponAddRequest.json index a837c921..f41dd7b3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponAddRequest.json @@ -15,10 +15,7 @@ "discount_condition": { "product_cnt": 2, "product_price": 5000, - "out_product_ids": [ - "product_id_3", - "product_id_4" - ], + "out_product_ids": ["product_id_3", "product_id_4"], "tradein_info": { "out_product_id": "product_id_5", "price": 10000 @@ -48,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetListRequest.json index 2beb41c6..3e240767 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetListRequest.json @@ -1,4 +1,4 @@ { "page_size": 3, "offset": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetListResponse.json index 7d2e044c..600a008e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetListResponse.json @@ -73,7 +73,7 @@ "discount_condition": { "product_cnt": 2, "product_price": 5000, - "out_product_ids": [ "product_id_3", "product_id_4" ], + "out_product_ids": ["product_id_3", "product_id_4"], "tradein_info": { "out_product_id": "product_id_5", "price": 10000 @@ -121,4 +121,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetRequest.json index 61a049a0..836873e5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetRequest.json @@ -1,3 +1,3 @@ { "out_coupon_id": "out_coupon_id_1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetResponse.json index fb608674..22983e45 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponGetResponse.json @@ -17,7 +17,7 @@ "discount_condition": { "product_cnt": 2, "product_price": 5000, - "out_product_ids": [ "product_id_3", "product_id_4" ], + "out_product_ids": ["product_id_3", "product_id_4"], "tradein_info": { "out_product_id": "product_id_5", "price": 10000 @@ -52,4 +52,4 @@ "appid": "wx9e20708660a0991b" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponUpdateCouponStockRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponUpdateCouponStockRequest.json index 92de6d5c..2619ff57 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponUpdateCouponStockRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponUpdateCouponStockRequest.json @@ -6,4 +6,4 @@ "receive_num": 40 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponUpdateRequest.json index f51e60c5..f41dd7b3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponUpdateRequest.json @@ -15,7 +15,7 @@ "discount_condition": { "product_cnt": 2, "product_price": 5000, - "out_product_ids": [ "product_id_3", "product_id_4" ], + "out_product_ids": ["product_id_3", "product_id_4"], "tradein_info": { "out_product_id": "product_id_5", "price": 10000 @@ -45,4 +45,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponUpdateStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponUpdateStatusRequest.json index 2a703eac..7ab7cd22 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponUpdateStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/ShopCouponUpdateStatusRequest.json @@ -1,4 +1,4 @@ { "out_coupon_id": "12345678", "status": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponAddUserCouponRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponAddUserCouponRequest.json index 0ec15125..f6b92e79 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponAddUserCouponRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponAddUserCouponRequest.json @@ -1,9 +1,9 @@ { - "openid": "oIJ9d5Ad4JMhbybqJ3_J73LkR_Io", - "user_coupon": { + "openid": "oIJ9d5Ad4JMhbybqJ3_J73LkR_Io", + "user_coupon": { "out_user_coupon_id": "user_coupon_id_1", "out_coupon_id": "coupon_id_1", "status": 100 - }, - "recv_time": 1628147893 -} \ No newline at end of file + }, + "recv_time": 1628147893 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponGetUserCouponListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponGetUserCouponListRequest.json index f57d970c..6ff6fbc9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponGetUserCouponListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponGetUserCouponListRequest.json @@ -2,4 +2,4 @@ "page_size": 2, "offset": 1, "openid": "oIJ9d5Ad4JMhbybqJ3_J73LkR_Io" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponGetUserCouponListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponGetUserCouponListResponse.json index 8e478fab..156aca0a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponGetUserCouponListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponGetUserCouponListResponse.json @@ -27,4 +27,4 @@ "start_time": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponUpdateUserCouponRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponUpdateUserCouponRequest.json index b7f7ffa2..30c7befd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponUpdateUserCouponRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponUpdateUserCouponRequest.json @@ -8,4 +8,4 @@ } }, "recv_time": 1628147893 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponUpdateUserCouponStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponUpdateUserCouponStatusRequest.json index 1661631b..6bd01fa0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponUpdateUserCouponStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Coupon/UserCoupon/ShopCouponUpdateUserCouponStatusRequest.json @@ -3,4 +3,4 @@ "out_coupon_id": "coupon_id_1", "out_user_coupon_id": "user_coupon_id_1", "status": 102 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Delivery/ShopDeliveryGetCompanyListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Delivery/ShopDeliveryGetCompanyListResponse.json index b54ee663..6dcc80a8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Delivery/ShopDeliveryGetCompanyListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Delivery/ShopDeliveryGetCompanyListResponse.json @@ -15,4 +15,4 @@ "delivery_name": "中通快速" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Delivery/ShopDeliveryReceiveRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Delivery/ShopDeliveryReceiveRequest.json index 28d34f0c..747e4380 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Delivery/ShopDeliveryReceiveRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Delivery/ShopDeliveryReceiveRequest.json @@ -2,4 +2,4 @@ "order_id": 123456, "out_order_id": "xxxxx", "openid": "oTVP50O53a7jgmawAmxKukNlq3XI" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAcceptRefundRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAcceptRefundRequest.json index 373192d7..7e4489d1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAcceptRefundRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAcceptRefundRequest.json @@ -1,3 +1,3 @@ { "aftersale_id": 123 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAcceptReturnRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAcceptReturnRequest.json index 11f06f93..424b62af 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAcceptReturnRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAcceptReturnRequest.json @@ -9,4 +9,4 @@ "city": "城市,选填", "town": "乡镇,选填" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAddRequest.json index ae39b8b7..b5749583 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAddRequest.json @@ -18,4 +18,4 @@ "url": "xxx" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAddResponse.json index 8e42eaf4..6820b5bb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleAddResponse.json @@ -1,3 +1,3 @@ { "aftersale_id": 12345 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleCancelRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleCancelRequest.json index c095e499..dbc5d5c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleCancelRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleCancelRequest.json @@ -2,4 +2,4 @@ "out_aftersale_id": "xxx", "aftersale_id": 123, "openid": "oTVP50O53a7jgmawAmxKukNlq3XI" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetListRequest.json index df9f4c4e..146e8d23 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetListRequest.json @@ -6,4 +6,4 @@ "end_create_time": 1636300900000, "offset": 0, "limit": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetListResponse.json index cdd9d6be..8adffa7b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetListResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "after_sales_orders": [], "has_more": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetRequest.json index ca4c9469..d6e9f813 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetRequest.json @@ -1,4 +1,4 @@ { "aftersale_id": 123, "out_aftersale_id": "aso_123124341" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetResponse.json index 34d31777..a240a835 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleGetResponse.json @@ -1,38 +1,40 @@ { - "errcode": 0, - "errmsg": "ok", - "after_sales_order": { - "out_aftersale_id": "", - "aftersale_id": 4000000001596225, - "out_order_id": "220425-16372977194524", - "order_id": 3302853640130003968, - "product_info": { - "out_product_id": "410", - "product_id": 0, - "out_sku_id": "730", - "sku_id": 0, - "product_cnt": 1 - }, - "type": 1, - "return_info": { - "order_return_time": 0, - "waybill_id": "" - }, - "orderamt": 2, - "refund_reason_type": 3, - "refund_reason": "不想要了", - "media_list": [{ - "type": 1, - "url": "****", - "thumb_url": "****" - }], - "status": 2, - "create_time": "1650876295006", - "update_time": "1650876295006", - "openid": "oOYv50JOfwNY56q8hTNSLSFvYUDg", - "refund_pay_detail": { - "refund_id": "" - }, - "return_id": "" - } + "errcode": 0, + "errmsg": "ok", + "after_sales_order": { + "out_aftersale_id": "", + "aftersale_id": 4000000001596225, + "out_order_id": "220425-16372977194524", + "order_id": 3302853640130003968, + "product_info": { + "out_product_id": "410", + "product_id": 0, + "out_sku_id": "730", + "sku_id": 0, + "product_cnt": 1 + }, + "type": 1, + "return_info": { + "order_return_time": 0, + "waybill_id": "" + }, + "orderamt": 2, + "refund_reason_type": 3, + "refund_reason": "不想要了", + "media_list": [ + { + "type": 1, + "url": "****", + "thumb_url": "****" + } + ], + "status": 2, + "create_time": "1650876295006", + "update_time": "1650876295006", + "openid": "oOYv50JOfwNY56q8hTNSLSFvYUDg", + "refund_pay_detail": { + "refund_id": "" + }, + "return_id": "" + } } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleRejectRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleRejectRequest.json index 373192d7..7e4489d1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleRejectRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleRejectRequest.json @@ -1,3 +1,3 @@ { "aftersale_id": 123 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleUpdateRequest.json index 4d96a338..0b70f82e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleUpdateRequest.json @@ -11,4 +11,4 @@ "url": "xxx" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleUploadCertificatesRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleUploadCertificatesRequest.json index a917f083..5f14a045 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleUploadCertificatesRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleUploadCertificatesRequest.json @@ -1,8 +1,5 @@ { "aftersale_id": 123, "refund_desc": "已协商退款", - "certificates": [ - "url1", - "url2" - ] -} \ No newline at end of file + "certificates": ["url1", "url2"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleUploadReturnInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleUploadReturnInfoRequest.json index f5b79890..e6fb7fda 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleUploadReturnInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ECAftersale/ShopECAftersaleUploadReturnInfoRequest.json @@ -5,4 +5,4 @@ "delivery_id": "SF", "waybill_id": "123456789", "delivery_name": "顺丰" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderAddRequest.json index 132b2b10..89431120 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderAddRequest.json @@ -15,7 +15,6 @@ "path": "pages/productDetail/productDetail?productId=2176180", "title": "洗洁精", "head_img": "http://img10.360buyimg.com/n1/s450x450_jfs/t1/85865/39/13611/488083/5e590a40E4bdf69c0/55c9bf645ea2b727.jpg" - } ], "pay_info": { @@ -42,5 +41,5 @@ "town": "乡镇,选填" }, "fund_type": 1, - "expire_time": 1642076428 -} \ No newline at end of file + "expire_time": 1642076428 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderAddResponse.json index f4c910e1..118579f8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderAddResponse.json @@ -8,4 +8,4 @@ "ticket_expire_time": "2020-12-01 00:00:00", "final_price": 10500 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderCloseRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderCloseRequest.json index fb597c50..1ef55976 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderCloseRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderCloseRequest.json @@ -2,4 +2,4 @@ "order_id": 123455, "out_order_id": "xxxxx", "openid": "oTVP50O53a7jgmawAmxKukNlq3XI" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListByFinderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListByFinderRequest.json index 2ef95c6e..0f7a064e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListByFinderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListByFinderRequest.json @@ -5,4 +5,4 @@ "promoter_openid": "OPENID", "page": 1, "page_size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListByFinderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListByFinderResponse.json index ee0a9643..7e39031b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListByFinderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListByFinderResponse.json @@ -54,4 +54,4 @@ } ], "total_num": 20 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListBySharerRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListBySharerRequest.json index 214392fa..94b9ae2f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListBySharerRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListBySharerRequest.json @@ -4,4 +4,4 @@ "sharer_openid": "OPENID", "page": 1, "page_size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListBySharerResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListBySharerResponse.json index 81084d5c..8c9c9946 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListBySharerResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListBySharerResponse.json @@ -54,4 +54,4 @@ } ], "total_num": 20 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListRequest.json index 27838dd7..d861cdd9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListRequest.json @@ -4,4 +4,4 @@ "sort_order": 1, "start_create_time": "2020-03-25 12:05:25", "end_create_time": "2020-04-25 12:05:25" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListResponse.json index 3a271098..5c7e3cc6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetListResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "total_num": 2, "orders": [] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetPaymentParametersRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetPaymentParametersRequest.json index fb597c50..1ef55976 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetPaymentParametersRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetPaymentParametersRequest.json @@ -2,4 +2,4 @@ "order_id": 123455, "out_order_id": "xxxxx", "openid": "oTVP50O53a7jgmawAmxKukNlq3XI" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetPaymentParametersResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetPaymentParametersResponse.json index 7006a0df..adef2932 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetPaymentParametersResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetPaymentParametersResponse.json @@ -8,4 +8,4 @@ "paySign": "12904324823458940394", "signType": "MD5" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetRequest.json index fb597c50..1ef55976 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetRequest.json @@ -2,4 +2,4 @@ "order_id": 123455, "out_order_id": "xxxxx", "openid": "oTVP50O53a7jgmawAmxKukNlq3XI" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetResponse.json index 296df70f..07e65e7d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderGetResponse.json @@ -52,4 +52,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderPayRequest.json index 95b47a31..1a99b6fb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopOrderPayRequest.json @@ -6,4 +6,4 @@ "action_remark": "xxx", "transaction_id": "131456479687", "pay_time": "2020-03-25 14:04:25" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopSceneCheckRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopSceneCheckRequest.json index 5652c2d4..312ae978 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopSceneCheckRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopSceneCheckRequest.json @@ -1,3 +1,3 @@ { "scene": 1175 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopSceneCheckResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopSceneCheckResponse.json index 36f52f6b..8688bb85 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopSceneCheckResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Order/ShopSceneCheckResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "is_matched": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Promoter/ShopPromoterListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Promoter/ShopPromoterListRequest.json index 705087f2..6b62227e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Promoter/ShopPromoterListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Promoter/ShopPromoterListRequest.json @@ -1,4 +1,4 @@ { "page": 1, "page_size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Promoter/ShopPromoterListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Promoter/ShopPromoterListResponse.json index 465fcf31..fa01c62b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Promoter/ShopPromoterListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Promoter/ShopPromoterListResponse.json @@ -18,4 +18,4 @@ "promoter_openid": "openid" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Register/ShopRegisterApplySceneRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Register/ShopRegisterApplySceneRequest.json index c9d4676e..ef999301 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Register/ShopRegisterApplySceneRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Register/ShopRegisterApplySceneRequest.json @@ -1,3 +1,3 @@ { "scene_group_id": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Register/ShopRegisterCheckResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Register/ShopRegisterCheckResponse.json index 6bd88787..439e6075 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Register/ShopRegisterCheckResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Register/ShopRegisterCheckResponse.json @@ -35,4 +35,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Register/ShopRegisterFinishAccessInformationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Register/ShopRegisterFinishAccessInformationRequest.json index ad8ca622..2e513576 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Register/ShopRegisterFinishAccessInformationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Register/ShopRegisterFinishAccessInformationRequest.json @@ -1,3 +1,3 @@ { "access_info_item": 6 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUAddRequest.json index 8947c709..60be32f7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUAddRequest.json @@ -41,4 +41,4 @@ } ], "scene_group_list": [1] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUAddResponse.json index dbe2199a..cf8f4fe9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUAddResponse.json @@ -12,4 +12,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUDeleteAuditRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUDeleteAuditRequest.json index d8cb1eba..05a7524e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUDeleteAuditRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUDeleteAuditRequest.json @@ -1,4 +1,4 @@ { "product_id": 324545, "out_product_id": "51514515" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUDeleteRequest.json index d8cb1eba..05a7524e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUDeleteRequest.json @@ -1,4 +1,4 @@ { "product_id": 324545, "out_product_id": "51514515" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUDelistingRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUDelistingRequest.json index d8cb1eba..05a7524e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUDelistingRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUDelistingRequest.json @@ -1,4 +1,4 @@ { "product_id": 324545, "out_product_id": "51514515" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetListRequest.json index 7cbbc814..ca9cbfd2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetListRequest.json @@ -7,4 +7,4 @@ "page": 1, "page_size": 10, "need_edit_spu": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetListResponse.json index 8b2c2efc..bd03ad8a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetListResponse.json @@ -50,4 +50,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetRequest.json index 5c94a777..225ecf3c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetRequest.json @@ -2,4 +2,4 @@ "product_id": 324545, "out_product_id": "51514515", "need_edit_spu": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetResponse.json index 6d80b4d9..13d6b691 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUGetResponse.json @@ -47,4 +47,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUListingRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUListingRequest.json index d8cb1eba..05a7524e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUListingRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUListingRequest.json @@ -1,4 +1,4 @@ { "product_id": 324545, "out_product_id": "51514515" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateRequest.json index 2f896c72..a539cd17 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateRequest.json @@ -42,4 +42,4 @@ } ], "scene_group_list": [1] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateResponse.json index bff20b3c..46aa6ac7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateResponse.json @@ -12,4 +12,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateWithoutAuditRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateWithoutAuditRequest.json index ff99d907..44fca825 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateWithoutAuditRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateWithoutAuditRequest.json @@ -12,4 +12,4 @@ "barcode": "13251454" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateWithoutAuditResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateWithoutAuditResponse.json index 8a8dd078..f5e4933a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateWithoutAuditResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/SPU/ShopSPUUpdateWithoutAuditResponse.json @@ -6,4 +6,4 @@ "out_product_id": "1234566", "update_time": "2020-03-25 12:05:25" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerBindRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerBindRequest.json index 9bbc2b46..269fd0c1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerBindRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerBindRequest.json @@ -1,3 +1,3 @@ { - "openids": [ "openid1", "openid2", "openid3" ] -} \ No newline at end of file + "openids": ["openid1", "openid2", "openid3"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerBindResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerBindResponse.json index 448e8aa8..6b63acb0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerBindResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerBindResponse.json @@ -1,7 +1,7 @@ { "errcode": 0, "errmsg": "ok", - "success_list": [ "openid1", "openid2", "openid3" ], + "success_list": ["openid1", "openid2", "openid3"], "fail_list": [], "refuse_list": [], "result_list": [ @@ -11,4 +11,4 @@ "reason_code": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerDataSummaryRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerDataSummaryRequest.json index 7d47e688..e181ebe2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerDataSummaryRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerDataSummaryRequest.json @@ -1,3 +1,3 @@ { "openid": "xxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerDataSummaryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerDataSummaryResponse.json index 94828353..a1f96a6a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerDataSummaryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerDataSummaryResponse.json @@ -4,4 +4,4 @@ "gmv": 12345, "order_cnt": "9", "user_cnt": 7 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerListRequest.json index 705087f2..6b62227e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerListRequest.json @@ -1,4 +1,4 @@ { "page": 1, "page_size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerListResponse.json index df686d24..7491c93d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerListResponse.json @@ -10,4 +10,4 @@ } ], "total_num": 20 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveOrderListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveOrderListRequest.json index 3fadb1cb..c57fdadb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveOrderListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveOrderListRequest.json @@ -3,4 +3,4 @@ "live_export_id": "LIVE_EXPORT_ID", "page": 1, "page_size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveOrderListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveOrderListResponse.json index 1a4ff739..d879a093 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveOrderListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveOrderListResponse.json @@ -55,4 +55,4 @@ } ], "total_num": 20 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveSummaryListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveSummaryListRequest.json index 223f66ce..a2b5a06a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveSummaryListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveSummaryListRequest.json @@ -2,4 +2,4 @@ "openid": "xxxxx", "page": 1, "page_size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveSummaryListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveSummaryListResponse.json index 2b6599ee..f409a584 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveSummaryListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerGetSharerLiveSummaryListResponse.json @@ -14,4 +14,4 @@ } ], "total_num": 20 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerSearchSharerRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerSearchSharerRequest.json index c28a621d..c2c3309b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerSearchSharerRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerSearchSharerRequest.json @@ -1,3 +1,3 @@ { "openid": "OPENID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerSearchSharerResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerSearchSharerResponse.json index 3431ae53..82040c48 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerSearchSharerResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerSearchSharerResponse.json @@ -5,4 +5,4 @@ "bind_time": "1624082155", "nickname": "NICKNAME", "bind_status": "1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerUnbindRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerUnbindRequest.json index 9bbc2b46..269fd0c1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerUnbindRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerUnbindRequest.json @@ -1,3 +1,3 @@ { - "openids": [ "openid1", "openid2", "openid3" ] -} \ No newline at end of file + "openids": ["openid1", "openid2", "openid3"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerUnbindResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerUnbindResponse.json index 7fd4ccd5..4d8790da 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerUnbindResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Sharer/ShopSharerUnbindResponse.json @@ -1,7 +1,7 @@ { "errcode": 0, "errmsg": "ok", - "success_list": [ "openid1", "openid2", "openid3" ], + "success_list": ["openid1", "openid2", "openid3"], "fail_list": [], "refuse_list": [] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ShopImageUploadResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ShopImageUploadResponse.json index 5aa06abd..15c0ee5a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ShopImageUploadResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/ShopImageUploadResponse.json @@ -4,4 +4,4 @@ "img_info": { "media_id": "xlvjalsdhgas" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Wxpay/ShopWxpayApplyRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Wxpay/ShopWxpayApplyRequest.json index f661dd43..0abc98b3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Wxpay/ShopWxpayApplyRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Wxpay/ShopWxpayApplyRequest.json @@ -28,4 +28,4 @@ "contact_email": "wxg@tencent.com", "mobile_phone": "15521050856" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Wxpay/ShopWxpayGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Wxpay/ShopWxpayGetResponse.json index 8d2e592f..a872d317 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Wxpay/ShopWxpayGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Shop/Wxpay/ShopWxpayGetResponse.json @@ -57,4 +57,4 @@ "out_request_no": "APPLYMENT_00000000001", "applyment_id": 2000002124775691 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/Component/SnsComponentJsCode2SessionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/Component/SnsComponentJsCode2SessionResponse.json index 9d69c112..03c96a31 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/Component/SnsComponentJsCode2SessionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/Component/SnsComponentJsCode2SessionResponse.json @@ -2,4 +2,4 @@ "openid": "OPENID", "session_key": "SESSIONKEY", "unionid": "oHAUs6LSuwgHq-mlnFrffKXw3QYM" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsJsCode2SessionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsJsCode2SessionResponse.json index d2b771bd..4ebff115 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsJsCode2SessionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsJsCode2SessionResponse.json @@ -2,4 +2,4 @@ "openid": "OPENID", "unionid": "UNIONID", "session_key": "SESSION_KEY" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsOAuth2AccessTokenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsOAuth2AccessTokenResponse.json index 6a0c7a00..597da19a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsOAuth2AccessTokenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsOAuth2AccessTokenResponse.json @@ -4,4 +4,4 @@ "refresh_token": "REFRESH_TOKEN", "openid": "OPENID", "scope": "SCOPE" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsOAuth2RefreshTokenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsOAuth2RefreshTokenResponse.json index 6a0c7a00..597da19a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsOAuth2RefreshTokenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsOAuth2RefreshTokenResponse.json @@ -4,4 +4,4 @@ "refresh_token": "REFRESH_TOKEN", "openid": "OPENID", "scope": "SCOPE" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsUserInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsUserInfoResponse.json index bd59458c..4d1974d3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsUserInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Sns/SnsUserInfoResponse.json @@ -6,6 +6,6 @@ "city": "CITY", "country": "COUNTRY", "headimgurl": "https://thirdwx.qlogo.cn/mmopen/g3MonUZtNHkdmzicIlibx6iaFqAc56vxLSUfpb6n5WKSYVY0ChQKkiaJSgQ1dZuTOgvLLrhJbERQQ4eMsv84eavHiaiceqxibJxCfHe/46", - "privilege": [ "PRIVILEGE1", "PRIVILEGE2" ], + "privilege": ["PRIVILEGE1", "PRIVILEGE2"], "unionid": "o6_bmasdasdsad6_2sgVt7hMZOPfL" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbAddDelayedFunctionTaskRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbAddDelayedFunctionTaskRequest.json index 3baa68f9..5c9de0e8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbAddDelayedFunctionTaskRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbAddDelayedFunctionTaskRequest.json @@ -3,4 +3,4 @@ "function_name": "echo", "delay_time": 10, "data": "{\"test\":true}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCheckMobileRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCheckMobileRequest.json index edd3f2d9..6ad67e90 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCheckMobileRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCheckMobileRequest.json @@ -1,3 +1,3 @@ { "push_tmpl": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCheckMobileResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCheckMobileResponse.json index 35024628..2da97cbc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCheckMobileResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCheckMobileResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "has_mobile": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCloudBaseReportRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCloudBaseReportRequest.json index 5827f401..3e51a892 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCloudBaseReportRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCloudBaseReportRequest.json @@ -6,4 +6,4 @@ "phone_count": "12345", "channel_id": "xxx", "session_id": "xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreatePressureTestTaskRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreatePressureTestTaskRequest.json index 6d85b38c..143827b8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreatePressureTestTaskRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreatePressureTestTaskRequest.json @@ -3,4 +3,4 @@ "run_count": 100, "run_time": 100, "source_type": 9 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreatePressureTestTaskResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreatePressureTestTaskResponse.json index 0bf512ca..da90e4a2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreatePressureTestTaskResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreatePressureTestTaskResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "pressure_id": 1038 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreateSendSmsTaskRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreateSendSmsTaskRequest.json index 9a5a6cb6..d3e42c3d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreateSendSmsTaskRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreateSendSmsTaskRequest.json @@ -1,4 +1,4 @@ { "env": "xxx", "file_url": "xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreateSendSmsTaskResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreateSendSmsTaskResponse.json index b39168e1..0898b4fc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreateSendSmsTaskResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbCreateSendSmsTaskResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "query_id": "xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeExtensionUploadInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeExtensionUploadInfoRequest.json index a9ceba55..3ef83dfc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeExtensionUploadInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeExtensionUploadInfoRequest.json @@ -7,4 +7,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeExtensionUploadInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeExtensionUploadInfoResponse.json index a3940ba8..0724497c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeExtensionUploadInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeExtensionUploadInfoResponse.json @@ -10,4 +10,4 @@ ], "RequestId": "83793d78-b90b-4b1e-9454-d7b4f5317f01" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeSmsRecordsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeSmsRecordsRequest.json index ba8ffebc..1cc22aa1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeSmsRecordsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeSmsRecordsRequest.json @@ -7,4 +7,4 @@ "PageNumber": 1, "PageSize": 20 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeSmsRecordsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeSmsRecordsResponse.json index 7b2599f2..8434ffeb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeSmsRecordsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbDescribeSmsRecordsResponse.json @@ -15,4 +15,4 @@ "TotalCount": 1, "RequestId": "bf34127a-35bd-48a2-86bb-ae583d2ff9ff" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetOpenDataRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetOpenDataRequest.json index 246a5707..1e0e6c99 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetOpenDataRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetOpenDataRequest.json @@ -1,3 +1,3 @@ { - "cloudid_list": [ "xxx" ] -} \ No newline at end of file + "cloudid_list": ["xxx"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetOpenDataResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetOpenDataResponse.json index f9e180ac..2b0ee6b9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetOpenDataResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetOpenDataResponse.json @@ -17,4 +17,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestReportRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestReportRequest.json index 82eb7cd4..5e3537f4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestReportRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestReportRequest.json @@ -1,3 +1,3 @@ { "pressure_id": 1038 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestReportResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestReportResponse.json index 43850d0c..8e755f8c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestReportResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestReportResponse.json @@ -52,4 +52,4 @@ "run_time": 10, "pressure_id": 1066 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestStatusRequest.json index 82eb7cd4..5e3537f4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestStatusRequest.json @@ -1,3 +1,3 @@ { "pressure_id": 1038 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestStatusResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestStatusResponse.json index bde27f2c..042e6287 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestStatusResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetPressureTestStatusResponse.json @@ -4,4 +4,4 @@ "status": "Crawling", "beg_time": 1618906859, "end_time": 1618906869 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetStatisticsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetStatisticsRequest.json index 7a154165..c16ec7e9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetStatisticsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetStatisticsRequest.json @@ -11,4 +11,4 @@ "channel_id": "xxx", "act_type": "h5" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetStatisticsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetStatisticsResponse.json index 6d6eba88..89e69b41 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetStatisticsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetStatisticsResponse.json @@ -80,4 +80,4 @@ } ], "total_num": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetVoIPSignRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetVoIPSignRequest.json index 822689b0..16ce6831 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetVoIPSignRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetVoIPSignRequest.json @@ -2,4 +2,4 @@ "group_id": "xxx", "nonce": "yyy", "timestamp": 12312312312 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetVoIPSignResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetVoIPSignResponse.json index ff9b6bfe..78d46916 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetVoIPSignResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbGetVoIPSignResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "signature": "xxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsRequest.json index 7e0be225..d9e666bd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsRequest.json @@ -1,11 +1,9 @@ { "env": "online-12345678910", - "phone_number_list": [ - "+8612345678910" - ], + "phone_number_list": ["+8612345678910"], "sms_type": "Marketing", "content": "发布了新的能力", "path": "/index.html", "template_id": "923584", - "template_param_list": [ "商品", "/index.html" ] -} \ No newline at end of file + "template_param_list": ["商品", "/index.html"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsResponse.json index 1ffeb215..59ce65b5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsResponse.json @@ -9,4 +9,4 @@ "iso_code": "" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsV2Request.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsV2Request.json index e9bd2cc5..9b436edf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsV2Request.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsV2Request.json @@ -2,8 +2,6 @@ "env": "online-12345678910", "url_link": "https://wxaurl.cn/xxxxxx", "template_id": "844110", - "template_param_list": [ "能力上新" ], - "phone_number_list": [ - "+8612345678910" - ] -} \ No newline at end of file + "template_param_list": ["能力上新"], + "phone_number_list": ["+8612345678910"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsV2Response.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsV2Response.json index 1ffeb215..59ce65b5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsV2Response.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/TcbSendSmsV2Response.json @@ -9,4 +9,4 @@ "iso_code": "" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDeleteFileRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDeleteFileRequest.json index 312bff7f..ada14766 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDeleteFileRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDeleteFileRequest.json @@ -1,6 +1,4 @@ { "env": "test2-4a89da", - "fileid_list": [ - "cloud://test2-4a89da.7465-test2-4a89da/A.png" - ] -} \ No newline at end of file + "fileid_list": ["cloud://test2-4a89da.7465-test2-4a89da/A.png"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDeleteFileResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDeleteFileResponse.json index 98178bc9..22c5d0f8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDeleteFileResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDeleteFileResponse.json @@ -8,4 +8,4 @@ "errmsg": "ok" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDownloadFileRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDownloadFileRequest.json index 0449b8d2..7821f31c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDownloadFileRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDownloadFileRequest.json @@ -6,4 +6,4 @@ "max_age": 7200 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDownloadFileResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDownloadFileResponse.json index 90a12451..5b694bb6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDownloadFileResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbBatchDownloadFileResponse.json @@ -9,4 +9,4 @@ "errmsg": "ok" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbCreateEnvironmentAndResourceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbCreateEnvironmentAndResourceResponse.json index 29a9ea43..ee31d84d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbCreateEnvironmentAndResourceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbCreateEnvironmentAndResourceResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "status": "INITIALIZING" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbCreateFunctionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbCreateFunctionRequest.json index ce7c9095..8c2ca5fe 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbCreateFunctionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbCreateFunctionRequest.json @@ -1,4 +1,4 @@ { "env": "test-777bb9", "function_name": "function1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAddRequest.json index 571b85f9..32772c4f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAddRequest.json @@ -1,4 +1,4 @@ { "env": "test2-4a89da", "query": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAddResponse.json index 8bffc655..1f1ecbff 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAddResponse.json @@ -5,4 +5,4 @@ "be62d9c4-43ec-4dc6-8ca1-30b206eeed24", "0f4b8add5cdd728a003bf5c83ed99dff" ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAggregateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAggregateRequest.json index 338d3471..61416f85 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAggregateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAggregateRequest.json @@ -1,4 +1,4 @@ { "env": "test2-4a89da", "query": "db.collection(\"test_collection\").aggregate().match({tags:\"cloud\"}).limit(10).end()" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAggregateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAggregateResponse.json index ae2b6fb8..08f2ec13 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAggregateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseAggregateResponse.json @@ -7,4 +7,4 @@ "{\"_id\":\"51f4f67e-a6a1-4c3e-a50f-827380b8da86\",\"description\":\"学习 cloud database\",\"due\":\"2019-09-09\",\"tags\":[\"cloud\",\"database\"],\"location\":{\"coordinates\":[{\"$numberDouble\":\"113.0\"},{\"$numberDouble\":\"23.0\"}],\"type\":\"Point\"},\"done\":false}", "{\"_id\":\"ee1d69da-b7ec-4e7a-bc1f-2fae31da4ce0\",\"tags\":[\"cloud\",\"database\"],\"location\":{\"type\":\"Point\",\"coordinates\":[{\"$numberDouble\":\"113.0\"},{\"$numberDouble\":\"23.0\"}]},\"done\":false,\"description\":\"学习 cloud database\",\"due\":\"2019-09-09\"}" ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionAddRequest.json index 6bd86dd5..effdb993 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionAddRequest.json @@ -1,4 +1,4 @@ { "env": "test2-4a89da", "collection_name": "test_add_collection" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionDeleteRequest.json index 899396db..d2e24fa3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionDeleteRequest.json @@ -1,4 +1,4 @@ { "env": "test2-4a89da", "collection_name": "test_delete_collection" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionGetRequest.json index a229324b..3638815a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionGetRequest.json @@ -2,4 +2,4 @@ "env": "test2-4a89da", "limit": 10, "offset": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionGetResponse.json index 758b9b3e..1896a5a3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCollectionGetResponse.json @@ -22,4 +22,4 @@ "Limit": 10, "Total": 2 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCountRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCountRequest.json index fa387a41..5cf28d7f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCountRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCountRequest.json @@ -1,4 +1,4 @@ { "env": "test2-4a89da", "query": "db.collection(\"geo\").where({done:true}).count()" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCountResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCountResponse.json index 44c55521..d4ea3af7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCountResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseCountResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "count": 3 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseDeleteRequest.json index 0a1f0cfa..55e53db7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseDeleteRequest.json @@ -1,4 +1,4 @@ { "env": "test2-4a89da", "query": "db.collection(\"geo\").where({done:false}).remove()" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseDeleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseDeleteResponse.json index 1c91c202..0e95300e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseDeleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseDeleteResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "deleted": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateExportRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateExportRequest.json index 3ccca5b4..4698a34e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateExportRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateExportRequest.json @@ -3,4 +3,4 @@ "file_path": "test_export", "file_type": 1, "query": "const Point = db.Geo.Point;db.collection(\\'geo\\').where({name: \\'x\\',age: _.gt(10).and(_.lt(20)),loc: new Point(113,23),array: [1,2]}).limit(10).skip(1).orderBy(\\'age\\',\\'asc\\').orderBy(\\'name\\', \\'desc\\').field({ name: true }).get()" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateExportResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateExportResponse.json index 897787f9..9fbcdb02 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateExportResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateExportResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "job_id": 100074947 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateImportRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateImportRequest.json index ea54541a..4a29ab1c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateImportRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateImportRequest.json @@ -5,4 +5,4 @@ "file_type": 1, "stop_on_error": false, "conflict_mode": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateImportResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateImportResponse.json index 897787f9..9fbcdb02 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateImportResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateImportResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "job_id": 100074947 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateQueryInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateQueryInfoRequest.json index f2248173..ed341230 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateQueryInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateQueryInfoRequest.json @@ -1,4 +1,4 @@ { "env": "test2-4a89da", "job_id": 100071736 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateQueryInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateQueryInfoResponse.json index c148ad8f..10129fc6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateQueryInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDatabaseMigrateQueryInfoResponse.json @@ -6,4 +6,4 @@ "record_fail": 0, "error_msg": "导出完成.", "file_url": "https://tcb-mongodb-data-1254135806.cos.ap-shanghai.myqcloud.com/..." -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDownloadFunctionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDownloadFunctionRequest.json index 47ba569b..f4652c7b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDownloadFunctionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDownloadFunctionRequest.json @@ -1,4 +1,4 @@ { "env": "test-777bb9", "function_name": "login" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDownloadFunctionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDownloadFunctionResponse.json index 920fee44..7d76a94b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDownloadFunctionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbDownloadFunctionResponse.json @@ -1,6 +1,6 @@ { "errcode": 0, "errmsg": "ok", - "url": "https:\/\/lambdash-1253665810.cos.ap-shanghai.myqcloud.com\/1258717764\/qbasetest-a5c40e\/login\/login_LATEST.zip?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKIDqbBtfGe4eSSK8CExGjmC0e8Qcnswv6yj%26q-sign-time%3D1562247164%3B1562257224%26q-key-time%3D1562247164%3B1562257224%26q-header-list%3D%26q-url-param-list%3D%26q-signature%3Dfd43be65f7381293315269dbf18cd99e143fab48&response-content-type=application\/octet-stream", + "url": "https://lambdash-1253665810.cos.ap-shanghai.myqcloud.com/1258717764/qbasetest-a5c40e/login/login_LATEST.zip?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKIDqbBtfGe4eSSK8CExGjmC0e8Qcnswv6yj%26q-sign-time%3D1562247164%3B1562257224%26q-key-time%3D1562247164%3B1562257224%26q-header-list%3D%26q-url-param-list%3D%26q-signature%3Dfd43be65f7381293315269dbf18cd99e143fab48&response-content-type=application/octet-stream", "checksum": "bf657f327e477652d137b45b08b6400ab16947b4aaf92e2b04a5fbe5a4582b46" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetAppConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetAppConfigRequest.json index 7d5b7e26..b8681617 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetAppConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetAppConfigRequest.json @@ -1,3 +1,3 @@ { "type": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetAppConfigResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetAppConfigResponse.json index 92bbdbda..cad534fa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetAppConfigResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetAppConfigResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "config": "{\"enable\":true,\"callbacks\":[{\"msgType\":\"msg\",\"event\":\"event\",\"env\":\"env\",\"functionName\":\"func\"}]}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetCallbackConfigResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetCallbackConfigResponse.json index ed9a4809..ae2616e1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetCallbackConfigResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetCallbackConfigResponse.json @@ -28,4 +28,4 @@ "text_mode": 1 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetCodeSecretResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetCodeSecretResponse.json index 59e8b69d..e7c27286 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetCodeSecretResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetCodeSecretResponse.json @@ -1,5 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "codesecret": "t44gXCQQdVCFcMWKrCsSwQ5uV94Op3HiqoZQ1H972pyMBfVgvnAeUGN2vm5Xx07\/" -} \ No newline at end of file + "codesecret": "t44gXCQQdVCFcMWKrCsSwQ5uV94Op3HiqoZQ1H972pyMBfVgvnAeUGN2vm5Xx07/" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetEnvironmentInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetEnvironmentInfoRequest.json index 45dc4e1f..0f58be52 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetEnvironmentInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetEnvironmentInfoRequest.json @@ -1,3 +1,3 @@ { "env": "test-env-0001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetEnvironmentInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetEnvironmentInfoResponse.json index cf06f659..3d8ee6fe 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetEnvironmentInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetEnvironmentInfoResponse.json @@ -12,4 +12,4 @@ "package_name": "基础版 1" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetFunctionConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetFunctionConfigRequest.json index 390c781d..e2274ce7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetFunctionConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetFunctionConfigRequest.json @@ -2,4 +2,4 @@ "type": 1, "env": "test-777bb9", "function_name": "openapi" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetFunctionConfigResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetFunctionConfigResponse.json index 55c7e52e..37f43401 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetFunctionConfigResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetFunctionConfigResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "config": "{\"permissions\":{\"openapi\":[\"wxacode.get\",\"wxacode.getUnlimited\",\"templateMessage.send\",\"templateMessage.addTemplate\",\"templateMessage.deleteTemplate\",\"templateMessage.getTemplateList\",\"templateMessage.getTemplateLibraryById\",\"templateMessage.getTemplateLibraryList\"]}}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetQCloudTokenRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetQCloudTokenRequest.json index c4e13d21..457bcf50 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetQCloudTokenRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetQCloudTokenRequest.json @@ -1,3 +1,3 @@ { "lifespan": 7200 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetQCloudTokenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetQCloudTokenResponse.json index 88591e42..08aae2e5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetQCloudTokenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetQCloudTokenResponse.json @@ -5,4 +5,4 @@ "secretkey": "SECRETKEY", "token": "TOKEN", "expired_time": 1557310488 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetUploadSignatureRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetUploadSignatureRequest.json index 766dd9d2..0c6a6ac7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetUploadSignatureRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetUploadSignatureRequest.json @@ -1,3 +1,3 @@ { "hashed_payload": "lowercase_sha256hex_payload" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetUploadSignatureResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetUploadSignatureResponse.json index 7d130f5c..a71ddc6c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetUploadSignatureResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbGetUploadSignatureResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "headers": "Authorization:TC3-HMAC-SHA256 Credential=AKIDNS5S-8S5Y7dxxv8lOPYPqu7XqNM3XUTG6QUxv2B-zkIcRG0XziWdsvpzzzzzzz/2019-05-28/scf/tc3_request, SignedHeaders=content-type;host, Signature=096dad0a5a5563381458224f38c1b8f35c8e2d5a8451950e33e36fa856fe9cd2\r\nHost:scf.tencentcloudapi.com\r\nContent-Type:application/json\r\nX-TC-Action:UpdateFunctionCode\r\nX-TC-Timestamp:1559046811\r\nX-TC-Version:2018-04-16\r\nX-TC-Region:ap-shanghai\r\nX-TC-Token:TOKEN" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbInvokeCloudFunctionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbInvokeCloudFunctionResponse.json index 2749b72c..534c5d99 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbInvokeCloudFunctionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbInvokeCloudFunctionResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "resp_data": "{\"event\":{\"userInfo\":{\"appId\":\"SAMPLE_APPID\"}},\"appid\":\"SAMPLE_APPID\"}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbListFunctionsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbListFunctionsRequest.json index 05c41b96..7efeeab2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbListFunctionsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbListFunctionsRequest.json @@ -2,4 +2,4 @@ "env": "test-777bb9", "limit": 20, "offset": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbListFunctionsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbListFunctionsResponse.json index f5b62729..14c908f8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbListFunctionsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbListFunctionsResponse.json @@ -11,4 +11,4 @@ "status": "Active" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbModifyEnvironmentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbModifyEnvironmentRequest.json index 45dc4e1f..0f58be52 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbModifyEnvironmentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbModifyEnvironmentRequest.json @@ -1,3 +1,3 @@ { "env": "test-env-0001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbSetCallbackConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbSetCallbackConfigRequest.json index e6c32dbf..eb7a3b4d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbSetCallbackConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbSetCallbackConfigRequest.json @@ -24,4 +24,4 @@ "qbase_container_path": "/container-echo", "text_mode": 1 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbShareEnvironmentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbShareEnvironmentRequest.json index 0d43afe2..c70eead7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbShareEnvironmentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbShareEnvironmentRequest.json @@ -1,4 +1,4 @@ { "appid": "wx5fe6bb43205e9e70", "env": "mytestenv-4gl1pvzp25d960df" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUpdateIndexRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUpdateIndexRequest.json index 6d016fdc..ca849799 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUpdateIndexRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUpdateIndexRequest.json @@ -18,4 +18,4 @@ "name": "del_index" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadAppConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadAppConfigRequest.json index c8fb38ef..02b69fa2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadAppConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadAppConfigRequest.json @@ -1,4 +1,4 @@ { "type": 1, "config": "{\"enable\":true,\"callbacks\":[{\"msgType\":\"msg\",\"event\":\"event\",\"env\":\"env\",\"functionName\":\"func\"}]}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadFileRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadFileRequest.json index 13c03f75..dc8ee7a6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadFileRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadFileRequest.json @@ -1,4 +1,4 @@ { "env": "test2-4a89da", "path": "this/is/a/example/file.path" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadFileResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadFileResponse.json index 38605fb0..5d6d24d1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadFileResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadFileResponse.json @@ -6,4 +6,4 @@ "authorization": "q-sign-algorithm=sha1&q-ak=AKID98EDB528Sfqerp0Z_7l23we-u4Avrx04te9VvlzGihMTseysMgu7iSdh_hxEnoAy&q-sign-time=1557307130;1557308030&q-key-time=1557307130;1557308030&q-header-list=&q-url-param-list=&q-signature=ac95227b67a04157bb5e49b435c6ac3ce88e03f2", "file_id": "cloud://test2-4a89da.7465-test2-4a89da-1258717764/testupload", "cos_file_id": "HDze32/qZENCwWi5N5akgoXSv3U8DsccKaqCxTMGs0zFgvlD28j484/VYFPJ1l2QDh0Qy8wNbQCpxs5zEsLJln1lIY9RGYn1LzRQQQYFQm+Xwvw6S4YEZN1AIwY906mwIBgiI3gKGkU2K1+1ZEnEYEM4Uh/C1JxB4Q==" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadFunctionConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadFunctionConfigRequest.json index 08b18258..4540c138 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadFunctionConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUploadFunctionConfigRequest.json @@ -3,4 +3,4 @@ "env": "env_id", "function_name": "func", "config": "{\"timeout\":5}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUseCloudAccessTokenRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUseCloudAccessTokenRequest.json index 6f974d5a..5d0d8fcb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUseCloudAccessTokenRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUseCloudAccessTokenRequest.json @@ -2,6 +2,6 @@ "action": "set", "open": true, "env": "myttest-8gu57so0bd9f9e8a", - "api_whitelist": [ "/*" ], + "api_whitelist": ["/*"], "version": 6 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUseCloudAccessTokenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUseCloudAccessTokenResponse.json index 65c4c7c5..a9e5c4d4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUseCloudAccessTokenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbUseCloudAccessTokenResponse.json @@ -2,8 +2,6 @@ "errcode": 0, "errmsg": "ok", "open": true, - "api_whitelist": [ - "/*" - ], + "api_whitelist": ["/*"], "version": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbWxpayListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbWxpayListResponse.json index 97afb7c5..09844e24 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbWxpayListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbWxpayListResponse.json @@ -27,4 +27,4 @@ "refund_auth_state": "AUTH_UNAUTHORIZED" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbWxpayOpenAuthRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbWxpayOpenAuthRequest.json index b171828d..77934f13 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbWxpayOpenAuthRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Tcb/ThirdPartyPlatforms/TcbWxpayOpenAuthRequest.json @@ -1,4 +1,4 @@ { "action": "bind", "merchant_code": "1900006511" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountAddCustomizeInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountAddCustomizeInfoRequest.json index 569b7cef..587dcaa8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountAddCustomizeInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountAddCustomizeInfoRequest.json @@ -1,4 +1,4 @@ { "unionid": "UNIONID", "customizeInfo": "customizeInfo" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountBindRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountBindRequest.json index 98d12cd2..d7232f96 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountBindRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountBindRequest.json @@ -1,3 +1,3 @@ { "openAccount": "APPID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountDeleteCustomizeInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountDeleteCustomizeInfoRequest.json index d51d373e..2262dc14 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountDeleteCustomizeInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountDeleteCustomizeInfoRequest.json @@ -1,3 +1,3 @@ { "unionid": "UNIONID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountGetCustomizeInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountGetCustomizeInfoResponse.json index 2333ffec..f5b685a1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountGetCustomizeInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountGetCustomizeInfoResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "customizeInfo": "customizeInfo" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountGetResponse.json index f78cd7e7..815a680a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/OpenAccount/UnionPromoterOpenAccountGetResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "openAccount": "APPID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Order/UnionPromoterOrderInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Order/UnionPromoterOrderInfoRequest.json index 00d669fa..77b376a9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Order/UnionPromoterOrderInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Order/UnionPromoterOrderInfoRequest.json @@ -1,3 +1,3 @@ { "orderIdList": [] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Order/UnionPromoterOrderInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Order/UnionPromoterOrderInfoResponse.json index 0ede293c..570e124a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Order/UnionPromoterOrderInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Order/UnionPromoterOrderInfoResponse.json @@ -25,4 +25,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Order/UnionPromoterOrderSearchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Order/UnionPromoterOrderSearchResponse.json index 15afa3d8..6ebc5806 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Order/UnionPromoterOrderSearchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Order/UnionPromoterOrderSearchResponse.json @@ -216,4 +216,4 @@ ], "pageSize": 10, "totalNum": 133 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductCategoryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductCategoryResponse.json index 7d5786f8..477580e9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductCategoryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductCategoryResponse.json @@ -14,4 +14,4 @@ "name": "母婴" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductGenerateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductGenerateRequest.json index 988733bc..2731e074 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductGenerateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductGenerateRequest.json @@ -6,4 +6,4 @@ "appId": "wxb82530c28" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductGenerateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductGenerateResponse.json index 2452073b..b3833f1b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductGenerateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductGenerateResponse.json @@ -23,4 +23,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductListResponse.json index 9684241e..bd691eb1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductListResponse.json @@ -131,4 +131,4 @@ } ], "total": 100 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductSelectResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductSelectResponse.json index a0cc71ab..88065f1d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductSelectResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Product/UnionPromoterProductSelectResponse.json @@ -125,4 +125,4 @@ } ], "total": 100 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionAddRequest.json index 66836af2..42f918fe 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionAddRequest.json @@ -1,3 +1,3 @@ { "promotionSourceName": "推广位名称" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionAddResponse.json index fc46e92c..1a9907ba 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionAddResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "pid": "oUkIc71zinc2mtlfC7K-NfGJxxNE_328751529" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionDeleteRequest.json index 7640989c..50228591 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionDeleteRequest.json @@ -1,4 +1,4 @@ { "promotionSourcePid": "oUnIc49z", "promotionSourceName": "推广位名称" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionListResponse.json index b84af32b..f2b7b18a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionListResponse.json @@ -13,4 +13,4 @@ ], "total": 91, "promotionMaxCnt": 100 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionUpdateRequest.json index 6b6b57c0..5c70039a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Promotion/UnionPromoterPromotionUpdateRequest.json @@ -6,4 +6,4 @@ "promotionInfo": { "promotionSourceName": "upd after22" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Target/UnionPromoterTargetApplyStatusResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Target/UnionPromoterTargetApplyStatusResponse.json index 3369a554..16dffda9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Target/UnionPromoterTargetApplyStatusResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Target/UnionPromoterTargetApplyStatusResponse.json @@ -10,4 +10,4 @@ "rejectTime": 0, "removeTime": 0 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Target/UnionPromoterTargetApplyTargetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Target/UnionPromoterTargetApplyTargetRequest.json index 846e1559..a2b9b364 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Target/UnionPromoterTargetApplyTargetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Target/UnionPromoterTargetApplyTargetRequest.json @@ -1,4 +1,4 @@ { "planId": "123LKAJSDLKJSADLKwqij21dsdsdsd312joewq=", "applyReason": "推客申请加入原因" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Target/UnionPromoterTargetPlanInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Target/UnionPromoterTargetPlanInfoResponse.json index 2fac60f3..5166ab2a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Target/UnionPromoterTargetPlanInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/UnionPromoter/Target/UnionPromoterTargetPlanInfoResponse.json @@ -66,4 +66,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Analysis/WxaBusinessPerformanceBootRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Analysis/WxaBusinessPerformanceBootRequest.json index 9ac418d6..95751a85 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Analysis/WxaBusinessPerformanceBootRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Analysis/WxaBusinessPerformanceBootRequest.json @@ -18,4 +18,4 @@ "value": "1" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Analysis/WxaBusinessPerformanceBootResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Analysis/WxaBusinessPerformanceBootResponse.json index 40a32a4c..7786733d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Analysis/WxaBusinessPerformanceBootResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Analysis/WxaBusinessPerformanceBootResponse.json @@ -44,4 +44,4 @@ "count": 2 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/HardwareDevice/WxaGetSnTicketRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/HardwareDevice/WxaGetSnTicketRequest.json index 02f44b67..2eef04fb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/HardwareDevice/WxaGetSnTicketRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/HardwareDevice/WxaGetSnTicketRequest.json @@ -1,4 +1,4 @@ { "model_id": "XXXXX", "sn": "XXXXX" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/HardwareDevice/WxaGetSnTicketResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/HardwareDevice/WxaGetSnTicketResponse.json index 5099b1af..51122e29 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/HardwareDevice/WxaGetSnTicketResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/HardwareDevice/WxaGetSnTicketResponse.json @@ -1,3 +1,3 @@ { "sn_ticket": "XXXXX" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaCreateWxaGameRoomRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaCreateWxaGameRoomRequest.json index bcdd40bf..e720e16d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaCreateWxaGameRoomRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaCreateWxaGameRoomRequest.json @@ -1,10 +1,10 @@ { "game_tick": 30, - "open_id_list": [ "OPENID" ], + "open_id_list": ["OPENID"], "udp_reliability_strategy": 3, "start_percent": 100, "need_user_info": true, "game_last_time": 1800, "room_ext_info": "", "need_game_seed": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaCreateWxaGameRoomResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaCreateWxaGameRoomResponse.json index 0da0d2fd..7e52123b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaCreateWxaGameRoomResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaCreateWxaGameRoomResponse.json @@ -4,4 +4,4 @@ "data": { "access_info": "xxx" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaGetWxaGameFrameResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaGetWxaGameFrameResponse.json index e209a47b..71bb6b32 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaGetWxaGameFrameResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaGetWxaGameFrameResponse.json @@ -9,11 +9,11 @@ "pkg_list": [ { "open_id": "OPENID", - "action_list": [ "xxx", "xxx" ], + "action_list": ["xxx", "xxx"], "b": false } ] } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaGetWxaGameIdentityInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaGetWxaGameIdentityInfoResponse.json index 5ab9d99a..3cd19d74 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaGetWxaGameIdentityInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/LockStep/WxaGetWxaGameIdentityInfoResponse.json @@ -9,4 +9,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaAddNearbyPOIRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaAddNearbyPOIRequest.json index f5adc3d5..cc8542de 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaAddNearbyPOIRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaAddNearbyPOIRequest.json @@ -9,6 +9,8 @@ "company_name": "深圳市腾讯计算机系统有限公司", "credential": "156718193518281", "address": "新疆维吾尔自治区克拉玛依市克拉玛依区碧水路15-1-8号(碧水云天广场)", - "qualification_list": [ "3LaLzqiTrQcD20DlX_o-OV1-nlYMu7sdVAL7SV2PrxVyjZFZZmB3O6LPGaYXlZWq" ], + "qualification_list": [ + "3LaLzqiTrQcD20DlX_o-OV1-nlYMu7sdVAL7SV2PrxVyjZFZZmB3O6LPGaYXlZWq" + ], "poi_id": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaAddNearbyPOIResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaAddNearbyPOIResponse.json index 7a767d35..02a10e12 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaAddNearbyPOIResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaAddNearbyPOIResponse.json @@ -1,8 +1,8 @@ { - "errcode": 0, - "errmsg": "ok", - "data": { - "audit_id": 416620525, - "poi_id": 112333 - } -} \ No newline at end of file + "errcode": 0, + "errmsg": "ok", + "data": { + "audit_id": 416620525, + "poi_id": 112333 + } +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaDeleteNearbyPOIRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaDeleteNearbyPOIRequest.json index 906f5322..13b33517 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaDeleteNearbyPOIRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaDeleteNearbyPOIRequest.json @@ -1,3 +1,3 @@ { "poi_id": "469382092" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaGetNearbyPOIListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaGetNearbyPOIListResponse.json index 786a70bc..0729f0a4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaGetNearbyPOIListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaGetNearbyPOIListResponse.json @@ -6,4 +6,4 @@ "max_apply_num": 10, "data": "{\"poi_list\": [{\"poi_id\": \"123456\",\"qualification_address\": \"广东省广州市海珠区新港中路123号\",\"qualification_num\": \"123456789-1\",\"audit_status\": 3,\"display_status\": 0,\"refuse_reason\": \"\"}]}" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaSetNearbyPOIShowStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaSetNearbyPOIShowStatusRequest.json index bb97d787..46a521c9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaSetNearbyPOIShowStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/NearybyPOI/WxaSetNearbyPOIShowStatusRequest.json @@ -1,4 +1,4 @@ { "poi_id": "469382092", "status": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevAgreeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevAgreeRequest.json index 640feaab..fd8da3bb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevAgreeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevAgreeRequest.json @@ -1,4 +1,4 @@ { "action": "dev_agree", "appid": "aaaa" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevApplyListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevApplyListRequest.json index 26516025..9db8be8c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevApplyListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevApplyListRequest.json @@ -2,4 +2,4 @@ "action": "dev_apply_list", "page": 1, "num": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevApplyListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevApplyListResponse.json index 338fd091..4d64ba6c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevApplyListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevApplyListResponse.json @@ -18,4 +18,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevDeleteRequest.json index ce59235c..7bcc084d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevDeleteRequest.json @@ -1,3 +1,3 @@ { "action": "dev_delete" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevRefuseRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevRefuseRequest.json index dab5c8d9..8d9f5210 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevRefuseRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaDevPluginDevRefuseRequest.json @@ -1,4 +1,4 @@ { "action": "dev_refuse", "reason": "refuse reason" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginApplyRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginApplyRequest.json index 660ec1d8..60489823 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginApplyRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginApplyRequest.json @@ -2,4 +2,4 @@ "action": "apply", "plugin_appid": "aaaa", "reason": "hello" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginListRequest.json index b23cde29..2fd4595e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginListRequest.json @@ -1,3 +1,3 @@ { "action": "list" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginListResponse.json index 2e02be1d..f141a3d9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginListResponse.json @@ -9,4 +9,4 @@ "headimgurl": "http://plugin.qq.com" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginUnbindRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginUnbindRequest.json index 86afd5cb..f03f4d0e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginUnbindRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Plugin/WxaPluginUnbindRequest.json @@ -1,4 +1,4 @@ { "action": "unbind", "plugin_appid": "aaaa" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/RiskControl/WxaGetUserRiskRankRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/RiskControl/WxaGetUserRiskRankRequest.json index be0081e2..58781590 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/RiskControl/WxaGetUserRiskRankRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/RiskControl/WxaGetUserRiskRankRequest.json @@ -8,4 +8,4 @@ "client_ip": "******", "email_address": "***@qq.com", "extended_info": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/RiskControl/WxaGetUserRiskRankResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/RiskControl/WxaGetUserRiskRankResponse.json index 2c54b24c..eed071a7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/RiskControl/WxaGetUserRiskRankResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/RiskControl/WxaGetUserRiskRankResponse.json @@ -3,4 +3,4 @@ "errmsg": "getuserriskrank succ", "risk_rank": 0, "unoin_id": 123456 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Search/WxaSearchWxaApiSubmitPagesRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Search/WxaSearchWxaApiSubmitPagesRequest.json index 4f159640..c577eaca 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Search/WxaSearchWxaApiSubmitPagesRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Search/WxaSearchWxaApiSubmitPagesRequest.json @@ -9,4 +9,4 @@ "query": "vid=123" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Search/WxaSiteSearchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Search/WxaSiteSearchRequest.json index 8bb37766..bbb02170 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Search/WxaSiteSearchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Search/WxaSiteSearchRequest.json @@ -1,4 +1,4 @@ { "keyword": "微信", "next_page_info": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Search/WxaSiteSearchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Search/WxaSiteSearchResponse.json index 0e9a8fc6..8dc4637f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Search/WxaSiteSearchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Search/WxaSiteSearchResponse.json @@ -18,4 +18,4 @@ "has_next_page": 1, "hit_count": 100, "next_page_info": "eyJwYWdlX3BhcmFtIjpbeyJzdWJzeXNfdHlwZSI6MTAsInNlcnZlcl9vZmZzZXQiOjAsInNlcnZlcl9saW1pdCI6MTIwLCJpbmRleF9zdGVwIjoyMCwiaW5kZXhfb2Zmc2V0IjoyMH1dLCJjbGllbnRfb2Zmc2V0IjowLCJjbGllbnRfbGltaXQiOjEwfQ==" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMediaCheckRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMediaCheckRequest.json index cff1503e..158a3554 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMediaCheckRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMediaCheckRequest.json @@ -4,4 +4,4 @@ "version": 2, "media_url": "https://developers.weixin.qq.com/miniprogram/assets/images/head_global_z_@all.png", "media_type": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMediaCheckResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMediaCheckResponse.json index 7265d44e..9ffa78e7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMediaCheckResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMediaCheckResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "trace_id": "967e945cd8a3e458f3c74dcb886068e9" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMessageSecurityCheckRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMessageSecurityCheckRequest.json index e5b99338..90e7f306 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMessageSecurityCheckRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMessageSecurityCheckRequest.json @@ -3,4 +3,4 @@ "scene": 1, "version": 2, "content": "hello world!" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMessageSecurityCheckResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMessageSecurityCheckResponse.json index abe0ae22..d3fd9a6f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMessageSecurityCheckResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Security/WxaMessageSecurityCheckResponse.json @@ -31,4 +31,4 @@ } ], "trace_id": "60ae120f-371d5872-7941a05b" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ServiceMarket/WxaServiceMarketRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ServiceMarket/WxaServiceMarketRequest.json index 34398169..2e7f6dae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ServiceMarket/WxaServiceMarketRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ServiceMarket/WxaServiceMarketRequest.json @@ -7,4 +7,4 @@ "ocr_type": 1 }, "client_msg_id": "id123" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ServiceMarket/WxaServiceMarketResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ServiceMarket/WxaServiceMarketResponse.json index 1c698beb..8b73ae1b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ServiceMarket/WxaServiceMarketResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ServiceMarket/WxaServiceMarketResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "data": "{\"idcard_res\":{\"type\":0,\"name\":{\"text\":\"abc\",\"pos\"…0312500}}},\"image_width\":480,\"image_height\":304}}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ShortLink/WxaGenerateWxaShortLinkRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ShortLink/WxaGenerateWxaShortLinkRequest.json index c1b8297e..8242ae60 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ShortLink/WxaGenerateWxaShortLinkRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ShortLink/WxaGenerateWxaShortLinkRequest.json @@ -2,4 +2,4 @@ "page_url": "/pages/publishHomework/publishHomework?query1=q1", "page_title": "Homework title", "is_permanent": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ShortLink/WxaGenerateWxaShortLinkResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ShortLink/WxaGenerateWxaShortLinkResponse.json index cbb929ff..b456d719 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ShortLink/WxaGenerateWxaShortLinkResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/ShortLink/WxaGenerateWxaShortLinkResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "link": "Short Link" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Storage/WxaRemoveUserStorageRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Storage/WxaRemoveUserStorageRequest.json index 9901884b..7e8ef39b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Storage/WxaRemoveUserStorageRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Storage/WxaRemoveUserStorageRequest.json @@ -1,3 +1,3 @@ { - "key": [ "gold", "score" ] -} \ No newline at end of file + "key": ["gold", "score"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Storage/WxaSetUserInteractiveDataRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Storage/WxaSetUserInteractiveDataRequest.json index e67b2622..e91f18aa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Storage/WxaSetUserInteractiveDataRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Storage/WxaSetUserInteractiveDataRequest.json @@ -5,4 +5,4 @@ "value": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Storage/WxaSetUserStorageRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Storage/WxaSetUserStorageRequest.json index 9327c2b5..31f523ec 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Storage/WxaSetUserStorageRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/Storage/WxaSetUserStorageRequest.json @@ -9,4 +9,4 @@ "value": "3000" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaGenerateUrlLinkRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaGenerateUrlLinkRequest.json index 50c991e1..d467162a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaGenerateUrlLinkRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaGenerateUrlLinkRequest.json @@ -10,4 +10,4 @@ "path": "/jump-wxa.html", "query": "a=1&b=2" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaGenerateUrlLinkResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaGenerateUrlLinkResponse.json index 33dc35dc..c39ec4f2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaGenerateUrlLinkResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaGenerateUrlLinkResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "url_link": "URL Link" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaQueryUrlLinkRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaQueryUrlLinkRequest.json index 1c1d7e57..9198dd98 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaQueryUrlLinkRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaQueryUrlLinkRequest.json @@ -1,3 +1,3 @@ { "url_link": "https://wxaurl.cn/BQZRrcFCPvg" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaQueryUrlLinkResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaQueryUrlLinkResponse.json index f43f1972..139186e9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaQueryUrlLinkResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlLink/WxaQueryUrlLinkResponse.json @@ -20,4 +20,4 @@ "long_time_used": 100, "long_time_limit": 100000 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaGenerateSchemeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaGenerateSchemeRequest.json index 647b040f..74442c40 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaGenerateSchemeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaGenerateSchemeRequest.json @@ -5,4 +5,4 @@ }, "is_expire": true, "expire_time": 1606737600 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaGenerateSchemeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaGenerateSchemeResponse.json index b1caa8dd..a8c4a508 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaGenerateSchemeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaGenerateSchemeResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "openlink": "Scheme" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaQuerySchemeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaQuerySchemeRequest.json index 6e08ceb1..4cce70a7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaQuerySchemeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaQuerySchemeRequest.json @@ -1,3 +1,3 @@ { "scheme": "weixin://dl/business/?t=XTSkBZlzqmn" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaQuerySchemeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaQuerySchemeResponse.json index 9f65a409..6a00b58f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaQuerySchemeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/UrlScheme/WxaQuerySchemeResponse.json @@ -13,4 +13,4 @@ "long_time_used": 100, "long_time_limit": 100000 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaCode/WxaGetWxaCodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaCode/WxaGetWxaCodeRequest.json index 81fd81a9..4216eb05 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaCode/WxaGetWxaCodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaCode/WxaGetWxaCodeRequest.json @@ -8,4 +8,4 @@ "b": 0 }, "is_hyaline": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaCode/WxaGetWxaCodeUnlimitRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaCode/WxaGetWxaCodeUnlimitRequest.json index 55a89034..d211eeba 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaCode/WxaGetWxaCodeUnlimitRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaCode/WxaGetWxaCodeUnlimitRequest.json @@ -9,4 +9,4 @@ "b": 0 }, "is_hyaline": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaGetPaidUnionIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaGetPaidUnionIdResponse.json index 2e33355c..14f1f496 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaGetPaidUnionIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaGetPaidUnionIdResponse.json @@ -2,4 +2,4 @@ "unionid": "oTmHYjg-tElZ68xxxxxxxxhy1Rgk", "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaGetPluginOpenIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaGetPluginOpenIdRequest.json index 6739c15d..da8b67fb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaGetPluginOpenIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaGetPluginOpenIdRequest.json @@ -1,3 +1,3 @@ { "code": "0c2b206443ce0c23338f6cb4d1ec15a1af0b8bcddbff26510dda4b23a433c391" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaGetPluginOpenIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaGetPluginOpenIdResponse.json index fcca7fa0..d48558bc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaGetPluginOpenIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaGetPluginOpenIdResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "openpid": "GACo74wkDIkDzEhkwRwgjGt1pqlk" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaAddStoreRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaAddStoreRequest.json index b350d401..882f8795 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaAddStoreRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaAddStoreRequest.json @@ -4,5 +4,7 @@ "pic_list": "{\"list\":[\"http://mmbiz.qpic.cn/mmbiz_jpg/tW66AWvE2K4EJxIYOVpiaGOkfg0iayibiaP2xHOChvbmKQD5uh8ymibbEKlTTPmjTdQ8ia43sULLeG1pT2psOfPic4kTw/0?wx_fmt=jpeg\"]}", "contract_phone": "1111222222", "credential": "22883878-0", - "qualification_list": [ "RTZgKZ386yFn5kQSWLTxe4bqxwgzGBjs3OE02cg9CVQk1wRVE3c8fjUFX7jvpi-P" ] -} \ No newline at end of file + "qualification_list": [ + "RTZgKZ386yFn5kQSWLTxe4bqxwgzGBjs3OE02cg9CVQk1wRVE3c8fjUFX7jvpi-P" + ] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaAddStoreResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaAddStoreResponse.json index b01f995f..e071aa64 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaAddStoreResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaAddStoreResponse.json @@ -2,6 +2,6 @@ "errcode": 0, "errmsg": "ok", "data": { - "audit_id": 111 + "audit_id": 111 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaApplyMerchantRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaApplyMerchantRequest.json index 09bf228b..abdc4d4b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaApplyMerchantRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaApplyMerchantRequest.json @@ -1,10 +1,12 @@ { "first_catid": 476, "second_catid": 477, - "qualification_list": ["RTZgKZ386yFn5kQSWLTxe4bqxwgzGBjs3OE02cg9CVQk1wRVE3c8fjUFX7jvpi-P"], + "qualification_list": [ + "RTZgKZ386yFn5kQSWLTxe4bqxwgzGBjs3OE02cg9CVQk1wRVE3c8fjUFX7jvpi-P" + ], "headimg_mediaid": "RTZgKZ386yFn5kQSWLTxe4bqxwgzGBjs3OE02cg9CVQk1wRVE3c8fjUFX7jvpi-P", "nickname": "hardenzhang308", "intro": "hardenzhangtest", "org_code": "", "other_files": [] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaCreateMapPOIRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaCreateMapPOIRequest.json index 5b6d1e1e..307bdbfb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaCreateMapPOIRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaCreateMapPOIRequest.json @@ -12,4 +12,4 @@ "license": "http://mmbiz.qpic.cn/mmbiz_png/tW66AWE2K6ECFPcyAcIZTG8RlcR0sAqBibOm8gao5xOoLfIic9ZJ6MADAktGPxZI7MZLcadZUT36b14NJ2cHRHA/0?wx_fmt=png", "introduct": "test", "districtid": 440105 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaCreateMapPOIResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaCreateMapPOIResponse.json index 73975ded..1a6d3620 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaCreateMapPOIResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaCreateMapPOIResponse.json @@ -2,4 +2,4 @@ "data": { "base_id": 42160 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaDeleteStoreRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaDeleteStoreRequest.json index a9db25b4..3d6bc76c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaDeleteStoreRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaDeleteStoreRequest.json @@ -1,3 +1,3 @@ { "poi_id": "472671857" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetDistrictResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetDistrictResponse.json index b1572b86..56288f35 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetDistrictResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetDistrictResponse.json @@ -6,18 +6,12 @@ "id": "440000", "name": "广东", "fullname": "广东省", - "pinyin": [ - "guang", - "dong" - ], + "pinyin": ["guang", "dong"], "location": { "lat": 23.13171, "lng": 113.26627 }, - "cidx": [ - 246, - 266 - ] + "cidx": [246, 266] } ], [ @@ -25,18 +19,12 @@ "id": "440100", "name": "广州", "fullname": "广州市", - "pinyin": [ - "guang", - "zhou" - ], + "pinyin": ["guang", "zhou"], "location": { "lat": 23.12908, "lng": 113.26436 }, - "cidx": [ - 1667, - 1677 - ] + "cidx": [1667, 1677] } ], [ @@ -58,4 +46,4 @@ } ] ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetMerchantAuditInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetMerchantAuditInfoResponse.json index a0ecbf4f..a3688965 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetMerchantAuditInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetMerchantAuditInfoResponse.json @@ -6,4 +6,4 @@ "status": 1, "reason": "" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetMerchantCategoryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetMerchantCategoryResponse.json index 32d9adab..c0e45829 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetMerchantCategoryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetMerchantCategoryResponse.json @@ -8,20 +8,14 @@ "id": 0, "name": "root", "level": 0, - "children": [ - 269, - 278 - ] + "children": [269, 278] }, { "id": 278, "name": "购物", "level": 1, "father": 0, - "children": [ - 279, - 280 - ] + "children": [279, 280] }, { "id": 280, @@ -45,4 +39,4 @@ ] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreInfoRequest.json index a9db25b4..3d6bc76c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreInfoRequest.json @@ -1,3 +1,3 @@ { "poi_id": "472671857" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreInfoResponse.json index e832cf14..0614f00a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreInfoResponse.json @@ -21,4 +21,4 @@ "district": "value" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreListRequest.json index 7211b54f..43a2375b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreListRequest.json @@ -1,4 +1,4 @@ { "offset": 0, "limit": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreListResponse.json index 9155a9aa..69a5f63b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaGetStoreListResponse.json @@ -44,4 +44,4 @@ } ], "total_count": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaModifyMerchantRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaModifyMerchantRequest.json index a3a39257..f1e829c3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaModifyMerchantRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaModifyMerchantRequest.json @@ -1,4 +1,4 @@ { "headimg_mediaid": "xxxxx", "intro": "x" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaSearchMapPOIRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaSearchMapPOIRequest.json index 6c55a6bd..e975d73c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaSearchMapPOIRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaSearchMapPOIRequest.json @@ -1,4 +1,4 @@ { "districtid": 440105, "keyword": "x" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaSearchMapPOIResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaSearchMapPOIResponse.json index 3559c1ad..7bbf267c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaSearchMapPOIResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaSearchMapPOIResponse.json @@ -15,4 +15,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaUpdateStoreRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaUpdateStoreRequest.json index 3afc24a6..f3bb6c8e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaUpdateStoreRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaUpdateStoreRequest.json @@ -4,4 +4,4 @@ "hour": "10:00-21:00", "contract_phone": "123456", "pic_list": "{\"list\":[\"http://mmbiz.qpic.cn/mmbiz_jpg/tW66AWvE2K4EJxIYOVpiaGOkfg0iayibiaP2xHOChvbmKQD5uh8ymibbEKlTTPmjTdQ8ia43sULLeG1pT2psOfPic4kTw/0?wx_fmt=jpeg\"]}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaUpdateStoreResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaUpdateStoreResponse.json index 77300edb..a19ec3f2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaUpdateStoreResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/Wxa/WxaStore/WxaUpdateStoreResponse.json @@ -5,4 +5,4 @@ "has_audit_id": 1, "audit_id": 1111 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGetGoodsWarehouseRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGetGoodsWarehouseRequest.json index 644ed1bd..e7e518f1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGetGoodsWarehouseRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGetGoodsWarehouseRequest.json @@ -1,3 +1,3 @@ { - "goods_ids": [ 1 ] -} \ No newline at end of file + "goods_ids": [1] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGetGoodsWarehouseResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGetGoodsWarehouseResponse.json index 2ce8668a..b2a145c2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGetGoodsWarehouseResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGetGoodsWarehouseResponse.json @@ -15,4 +15,4 @@ } ], "total": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAddRequest.json index de0f0d4d..211dc9e5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAddRequest.json @@ -7,4 +7,4 @@ "price2": 150.5, "url": "pages/index/index" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAddResponse.json index 2cab5090..481b4eed 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAddResponse.json @@ -2,4 +2,4 @@ "goodsId": 51, "auditId": 525022786, "errcode": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAuditRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAuditRequest.json index 1a609a4b..2a90854b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAuditRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAuditRequest.json @@ -1,3 +1,3 @@ { "goodsId": 9 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAuditResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAuditResponse.json index d8c32ed6..821ccc6e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAuditResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsAuditResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "auditId": 525022184 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsDeleteRequest.json index 1a609a4b..2a90854b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsDeleteRequest.json @@ -1,3 +1,3 @@ { "goodsId": 9 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsGetApprovedResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsGetApprovedResponse.json index 3d189794..6d27cb24 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsGetApprovedResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsGetApprovedResponse.json @@ -13,4 +13,4 @@ "thirdPartyTag": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsResetAuditRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsResetAuditRequest.json index b14bf599..687f2f62 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsResetAuditRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsResetAuditRequest.json @@ -1,4 +1,4 @@ { "auditId": 525022184, "goodsId": 9 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsUpdateRequest.json index e065b176..edf85c06 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Goods/WxaApiBroadcastGoodsUpdateRequest.json @@ -8,4 +8,4 @@ "url": "pages/index/index", "goodsId": 9 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Role/WxaApiBroadcastRoleAddRoleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Role/WxaApiBroadcastRoleAddRoleRequest.json index 7e9e1661..040c9629 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Role/WxaApiBroadcastRoleAddRoleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Role/WxaApiBroadcastRoleAddRoleRequest.json @@ -1,4 +1,4 @@ { "username": "test_1", "role": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Role/WxaApiBroadcastRoleDeleteRoleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Role/WxaApiBroadcastRoleDeleteRoleRequest.json index 7e9e1661..040c9629 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Role/WxaApiBroadcastRoleDeleteRoleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Role/WxaApiBroadcastRoleDeleteRoleRequest.json @@ -1,4 +1,4 @@ { "username": "test_1", "role": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Role/WxaApiBroadcastRoleGetRoleListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Role/WxaApiBroadcastRoleGetRoleListResponse.json index 41cc0e24..9ac8df01 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Role/WxaApiBroadcastRoleGetRoleListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/Role/WxaApiBroadcastRoleGetRoleListResponse.json @@ -6,9 +6,9 @@ "headingimg": "http://wx.qlogo.cn/mmhead/Q3auHgzwzM5jBhFwrHoeoaxTlhP9YzlVica7wu6lZLnGreKAj7CVicA/0", "nickname": "test1", "openid": "o7esq5MvImF2SEm7OHYohausj2o", - "roleList": [ 2, 3 ], + "roleList": [2, 3], "updateTimestamp": "1600340080", "username": "o0****0o" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomAddSubAnchorRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomAddSubAnchorRequest.json index 0aed2c7a..f1b82a0b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomAddSubAnchorRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomAddSubAnchorRequest.json @@ -1,4 +1,4 @@ { "roomId": 6827, "username": "lintest2" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomDeleteSubAnchorRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomDeleteSubAnchorRequest.json index e46056d6..a883a5f0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomDeleteSubAnchorRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomDeleteSubAnchorRequest.json @@ -1,3 +1,3 @@ { "roomId": 6491 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomGetSubAnchorResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomGetSubAnchorResponse.json index 7af53de1..297f5540 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomGetSubAnchorResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomGetSubAnchorResponse.json @@ -1,4 +1,4 @@ { "username": "testwechat", "errcode": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomModifySubAnchorRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomModifySubAnchorRequest.json index 483c1b05..5c8bcf75 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomModifySubAnchorRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAnchor/WxaApiBroadcastRoomModifySubAnchorRequest.json @@ -1,4 +1,4 @@ { "roomId": 6827, "username": "wechattest" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomAddAssistantRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomAddAssistantRequest.json index bf73cd1e..a2f0968a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomAddAssistantRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomAddAssistantRequest.json @@ -6,4 +6,4 @@ "nickname": "testnick" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomGetAssistantListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomGetAssistantListResponse.json index 98d4bd96..6ddbcb96 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomGetAssistantListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomGetAssistantListResponse.json @@ -11,4 +11,4 @@ "count": 1, "maxCount": 10, "errcode": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomModifyAssistantRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomModifyAssistantRequest.json index 3a22331a..73eff9ed 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomModifyAssistantRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomModifyAssistantRequest.json @@ -2,4 +2,4 @@ "roomId": 6474, "username": "testwechat", "nickname": "testnick" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomRemoveAssistantRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomRemoveAssistantRequest.json index 0b271d30..8ff34930 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomRemoveAssistantRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomAssistant/WxaApiBroadcastRoomRemoveAssistantRequest.json @@ -1,4 +1,4 @@ { "roomId": 6623, "username": "testwechat" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsDeleteInRoomRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsDeleteInRoomRequest.json index 319c80bd..7f562dbb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsDeleteInRoomRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsDeleteInRoomRequest.json @@ -1,4 +1,4 @@ { "roomId": 6474, "goodsId": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsGetVideoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsGetVideoRequest.json index 319c80bd..7f562dbb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsGetVideoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsGetVideoRequest.json @@ -1,4 +1,4 @@ { "roomId": 6474, "goodsId": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsGetVideoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsGetVideoResponse.json index f9478e37..b381beb5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsGetVideoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsGetVideoResponse.json @@ -1,4 +1,4 @@ { "errcode": 0, "url": "https://xx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsOnSaleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsOnSaleRequest.json index 338125cd..0e4ada12 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsOnSaleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsOnSaleRequest.json @@ -2,4 +2,4 @@ "roomId": 6474, "goodsId": 1, "onSale": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsPushRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsPushRequest.json index 319c80bd..7f562dbb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsPushRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsPushRequest.json @@ -1,4 +1,4 @@ { "roomId": 6474, "goodsId": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsSortRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsSortRequest.json index 0af8eade..8db76b61 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsSortRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastGoodsSortRequest.json @@ -1,7 +1,4 @@ { "roomId": 6474, - "goods": [ - { "goodsId": "123" }, - { "goodsId": "234" } - ] -} \ No newline at end of file + "goods": [{ "goodsId": "123" }, { "goodsId": "234" }] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastRoomAddGoodsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastRoomAddGoodsRequest.json index 7ceabb0f..22c0c864 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastRoomAddGoodsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/RoomGoods/WxaApiBroadcastRoomAddGoodsRequest.json @@ -1,4 +1,4 @@ { - "ids": [ 1150, 1111 ], + "ids": [1150, 1111], "roomId": 2554 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomCreateRequest.json index 6f61be57..ad351a5c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomCreateRequest.json @@ -17,4 +17,4 @@ "closeReplay": 1, "closeShare": 0, "closeKf": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomCreateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomCreateResponse.json index 1ea50e16..223023c5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomCreateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomCreateResponse.json @@ -2,4 +2,4 @@ "roomId": 33, "errcode": 0, "qrcode_url": "https://res.wx.qq.com/op_res/9rSix1dhHfK4rR049JL0PHJ7TpOvkuZ3mE0z7Ou_Etvjf-w1J_jVX0rZqeStLfwh" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomDeleteRoomRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomDeleteRoomRequest.json index 07fa9369..612ca503 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomDeleteRoomRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomDeleteRoomRequest.json @@ -1,3 +1,3 @@ { "id": 6491 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomEditRoomRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomEditRoomRequest.json index 761191bd..61ce27a9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomEditRoomRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomEditRoomRequest.json @@ -15,4 +15,4 @@ "closeShare": 0, "closeKf": 0, "feedsImg": "hw7zsntcr0rE-RBfBAaF553DqBk-J02UtWsP8VqrUh3tKu3jO_JwEO8n1cWTJ5TN" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomGetPushUrlResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomGetPushUrlResponse.json index b0ba2daf..15b967db 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomGetPushUrlResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomGetPushUrlResponse.json @@ -1,4 +1,4 @@ { "pushAddr": "rtmp://wxalivepush.weixin.qq.com/live/wx40f8626ddf43d362-6209?txSecret=5da4f0b7b7a6c25b238311de8c81a65a&txTime=5fc4f631", "errcode": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomGetSharedCodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomGetSharedCodeResponse.json index c2f53394..cf041074 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomGetSharedCodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomGetSharedCodeResponse.json @@ -3,4 +3,4 @@ "pagePath": "plugin-private://wx2b03c6e691cd7370/pages/live-player-plugin?room_id=6209", "posterUrl": "http://mmbiz.qpic.cn/mmbiz_jpg/dlFudV139LtQn96YNHSGtVfcUkUwQaYeR5OiaJ6bPr7OZxy3yhIK3icjxop0QeRBiaDPiaxuzENtCj15zFIM8sh7ag/0", "errcode": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateCommentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateCommentRequest.json index 1a6581b3..050f8126 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateCommentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateCommentRequest.json @@ -1,4 +1,4 @@ { "roomId": 6474, "banComment": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateFeedPublicRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateFeedPublicRequest.json index 9b1f0860..baacf8d1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateFeedPublicRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateFeedPublicRequest.json @@ -1,4 +1,4 @@ { "roomId": 6474, "isFeedsPublic": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateKfRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateKfRequest.json index 123b3062..c815f0be 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateKfRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateKfRequest.json @@ -1,4 +1,4 @@ { "roomId": 6491, "closeKf": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateReplayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateReplayRequest.json index 028f6195..5948f7ac 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateReplayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/LiveBroadcast/WxaApiBroadcastRoomUpdateReplayRequest.json @@ -1,4 +1,4 @@ { "roomId": 6474, "closeReplay": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/MiniShop/WxaApiMiniShopBusinessRespondComplaintRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/MiniShop/WxaApiMiniShopBusinessRespondComplaintRequest.json index 2969443e..343834ef 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/MiniShop/WxaApiMiniShopBusinessRespondComplaintRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/MiniShop/WxaApiMiniShopBusinessRespondComplaintRequest.json @@ -3,4 +3,4 @@ "complaintOrderId": 1212, "mediaIdList": [], "bussiHandle": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/MiniShop/WxaApiMiniShopBusinessSupplyProofRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/MiniShop/WxaApiMiniShopBusinessSupplyProofRequest.json index c487d6b4..c47c374c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/MiniShop/WxaApiMiniShopBusinessSupplyProofRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/MiniShop/WxaApiMiniShopBusinessSupplyProofRequest.json @@ -2,4 +2,4 @@ "content": "", "complaintOrderId": 1212, "mediaIdList": [] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/MiniShop/WxaApiMiniShopComplaintOrderDetailResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/MiniShop/WxaApiMiniShopComplaintOrderDetailResponse.json index 4eb376bf..46a7200b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/MiniShop/WxaApiMiniShopComplaintOrderDetailResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/MiniShop/WxaApiMiniShopComplaintOrderDetailResponse.json @@ -2,22 +2,22 @@ "errcode": 0, "errmsg": "ok", "complaintOrder": { - "complaintOrderId": 1212, - "openId": "dfasefasefase", - "createTime": 123124124, - "phoneNumber": 156222222, - "type": 12, - "status": 1, + "complaintOrderId": 1212, + "openId": "dfasefasefase", + "createTime": 123124124, + "phoneNumber": 156222222, + "type": 12, + "status": 1, "customerMaterial": { - "content": "", - "mediaIdList": [ "fsadfasdfsaf" ] + "content": "", + "mediaIdList": ["fsadfasdfsaf"] }, - "orderId": "2342", - "outTradeNo": "sdfsfd", - "productName": "sdf", + "orderId": "2342", + "outTradeNo": "sdfsfd", + "productName": "sdf", "payTime": 123123, - "totalCost": 1213, - "expireTime": 1231231 + "totalCost": 1213, + "expireTime": 1231231 }, "item": [ { @@ -25,12 +25,12 @@ "time": 1233234234, "phoneNumber": "156222222", "content": "", - "mediaIdList": [ "asdfasdf" ] + "mediaIdList": ["asdfasdf"] } ], "returnBill": { "returnId": "23234234234", - "waybillId": "adfasdf", - "orderStatus": 4 + "waybillId": "adfasdf", + "orderStatus": 4 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateAddTemplateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateAddTemplateRequest.json index 3d47181c..f4a814ce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateAddTemplateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateAddTemplateRequest.json @@ -1,5 +1,5 @@ { "tid": "401", - "kidList": [ 1, 2 ], + "kidList": [1, 2], "sceneDesc": "测试数据" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateAddTemplateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateAddTemplateResponse.json index ca218343..9607ee72 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateAddTemplateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateAddTemplateResponse.json @@ -2,4 +2,4 @@ "errmsg": "ok", "errcode": 0, "priTmplId": "9Aw5ZV1j9xdWTFEkqCpZ7jWySL7aGN6rQom4gXINfJs" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateDeleteTemplateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateDeleteTemplateRequest.json index d70f1490..be2aabab 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateDeleteTemplateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateDeleteTemplateRequest.json @@ -1,3 +1,3 @@ { "priTmplId": "9Aw5ZV1j9xdWTFEkqCpZ7jWySL7aGN6rQom4gXINfJs" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetCategoryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetCategoryResponse.json index 123dedcc..2d36f16d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetCategoryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetCategoryResponse.json @@ -7,4 +7,4 @@ "name": "公交" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetPublicTemplateKeywordsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetPublicTemplateKeywordsResponse.json index cdc2cd1e..f0fd96b1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetPublicTemplateKeywordsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetPublicTemplateKeywordsResponse.json @@ -9,4 +9,4 @@ "rule": "thing" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetPublicTemplateTitlesResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetPublicTemplateTitlesResponse.json index c21a3674..29aed64d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetPublicTemplateTitlesResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetPublicTemplateTitlesResponse.json @@ -10,4 +10,4 @@ "categoryId": "616" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetTemplateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetTemplateResponse.json index 4cc97e80..629f0659 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetTemplateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/NewTemplate/WxaApiNewTemplateGetTemplateResponse.json @@ -10,4 +10,4 @@ "type": 2 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiFeedbackListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiFeedbackListResponse.json index 07e449c5..1edf55ad 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiFeedbackListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiFeedbackListResponse.json @@ -15,4 +15,4 @@ ], "total_num": 100, "errcode": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetClientVersionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetClientVersionResponse.json index 83ebd108..2728617c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetClientVersionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetClientVersionResponse.json @@ -11,4 +11,4 @@ "client_version_list": [] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetPerformanceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetPerformanceRequest.json index 301b4f63..26bd6985 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetPerformanceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetPerformanceRequest.json @@ -6,4 +6,4 @@ "networktype": "@_all", "scene": "@_all", "is_download_code": "@_all" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetPerformanceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetPerformanceResponse.json index 94e4a76b..cb94b586 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetPerformanceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetPerformanceResponse.json @@ -2,4 +2,4 @@ "default_time_data": "{\"list\":[{\"ref_date\":\"20191029\",\"cost_time_type\":2,\"cost_time\":1533},{\"ref_date\":\"20191030\",\"cost_time_type\":2,\"cost_time\":1682}]}", "compare_time_data": "", "errcode": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetSceneResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetSceneResponse.json index 46a404ca..a2f9d4af 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetSceneResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogGetSceneResponse.json @@ -11,4 +11,4 @@ "value": 1 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorDetailRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorDetailRequest.json index 671cbdf8..4ad372cb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorDetailRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorDetailRequest.json @@ -11,4 +11,4 @@ "offset": 0, "limit": 10, "desc": "0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorDetailResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorDetailResponse.json index db9c3851..96c11049 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorDetailResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorDetailResponse.json @@ -24,4 +24,4 @@ ], "totalCount": 1, "errcode": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorListRequest.json index 4de434e8..c547f0df 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorListRequest.json @@ -9,4 +9,4 @@ "desc": "2", "offset": 0, "limit": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorListResponse.json index fcc0957a..76779c51 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiLogJsErrorListResponse.json @@ -13,4 +13,4 @@ ], "totalCount": 739, "errcode": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiUserLogSearchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiUserLogSearchResponse.json index f9e2d97a..f748d833 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiUserLogSearchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/Operation/WxaApiUserLogSearchResponse.json @@ -13,12 +13,12 @@ "msg": [ { "time": 1570852795, - "msg": [ "hello world" ], + "msg": ["hello world"], "level": 2 }, { "time": 1570852795, - "msg": [ "get msg list mig 10006" ], + "msg": ["get msg list mig 10006"], "level": 4 } ], @@ -29,4 +29,4 @@ ], "total": 1000 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedAddEmbeddedRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedAddEmbeddedRequest.json index 5690b0fc..56964b01 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedAddEmbeddedRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedAddEmbeddedRequest.json @@ -1,4 +1,4 @@ { "appid": "wxf074af703a2e9303", "apply_reason": "我要申请" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedDeleteEmbeddedRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedDeleteEmbeddedRequest.json index 2e526fe3..07ea1c26 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedDeleteEmbeddedRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedDeleteEmbeddedRequest.json @@ -1,3 +1,3 @@ { "appid": "wx8f4e64668de79225" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedGetListResponse.json index fb755fe7..2d060fdd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedGetListResponse.json @@ -19,4 +19,4 @@ "status": 2 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedGetOwnListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedGetOwnListResponse.json index 1063a967..eb70d343 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedGetOwnListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedGetOwnListResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "embedded_flag": 2, "wxa_embedded_list": [] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedSetAuthorizeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedSetAuthorizeRequest.json index 29283dca..65f0d1a3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedSetAuthorizeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaApi/WxaEmbedded/WxaApiWxaEmbeddedSetAuthorizeRequest.json @@ -1,3 +1,3 @@ { "flag": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchCreateMatchRuleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchCreateMatchRuleRequest.json index 2924fc3a..64c0d6ba 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchCreateMatchRuleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchCreateMatchRuleRequest.json @@ -10,4 +10,4 @@ "game_last_time": 1800, "need_game_seed": true } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchCreateMatchRuleResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchCreateMatchRuleResponse.json index c5b61011..c84ed2ee 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchCreateMatchRuleResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchCreateMatchRuleResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "match_id": "FD0PT4rKguEdK-L83RaJgdbchUCW8wjhSwgCku4CLQk" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchDeleteMatchRuleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchDeleteMatchRuleRequest.json index cd5f4f0b..588cf29e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchDeleteMatchRuleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchDeleteMatchRuleRequest.json @@ -1,3 +1,3 @@ { "match_id": "FD0PT4rKguEdK-L83RaJgdbchUCW8wjhSwgCku4CLQk" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchGetAllMatchRuleResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchGetAllMatchRuleResponse.json index afe60f35..96bd82f2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchGetAllMatchRuleResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchGetAllMatchRuleResponse.json @@ -18,4 +18,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchSetMatchOpenStateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchSetMatchOpenStateRequest.json index a136178d..ce1031da 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchSetMatchOpenStateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchSetMatchOpenStateRequest.json @@ -1,4 +1,4 @@ { "match_id": "FD0PT4rKguEdK-L83RaJgdbchUCW8wjhSwgCku4CLQk", "open_state": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchUpdateMatchRuleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchUpdateMatchRuleRequest.json index cefdee9c..70435de5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchUpdateMatchRuleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/GameMatch/WxaBusinessGameMatchUpdateMatchRuleRequest.json @@ -11,4 +11,4 @@ "game_last_time": 3600, "need_game_seed": true } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/Internet/WxaBusinessGetUserEncryptKeyResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/Internet/WxaBusinessGetUserEncryptKeyResponse.json index 40607113..7fed4f58 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/Internet/WxaBusinessGetUserEncryptKeyResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/Internet/WxaBusinessGetUserEncryptKeyResponse.json @@ -24,4 +24,4 @@ "create_time": 1616488061 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessApplyLiveInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessApplyLiveInfoRequest.json index 8d292807..b7fa2e4d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessApplyLiveInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessApplyLiveInfoRequest.json @@ -1,3 +1,3 @@ { "action": "apply" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessApplyLiveInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessApplyLiveInfoResponse.json index 14bde69e..fa32bfaf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessApplyLiveInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessApplyLiveInfoResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "action": "apply" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveInfoRequest.json index 46e2dc2f..9db94275 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveInfoRequest.json @@ -1,4 +1,4 @@ { "start": 0, "limit": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveInfoResponse.json index d9d6afab..a94f60ad 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveInfoResponse.json @@ -6,15 +6,15 @@ { "name": "直播房间名", "roomid": 1, - "cover_img": "http://http:\/\/mmbiz.qpic.cn\/mmbiz_jpg\/Rl1RuuhdstSfZa8EEljedAYcbtX3Ejpdl2et1tPAQ37bdicnxoVialDLCKKDcPBy8Iic0kCiaiaalXg3EbpNKoicrweQ\/0?wx_fmt=jpeg", - "share_img": "http://http:\/\/mmbiz.qpic.cn\/mmbiz_jpg\/Rl1RuuhdstSfZa8EEljedAYcbtX3Ejpdl2et1tPAQ37bdicnxoVialDLCKKDcPBy8Iic0kCiaiaalXg3EbpNKoicrweQ\/0?wx_fmt=jpeg", + "cover_img": "http://http://mmbiz.qpic.cn/mmbiz_jpg/Rl1RuuhdstSfZa8EEljedAYcbtX3Ejpdl2et1tPAQ37bdicnxoVialDLCKKDcPBy8Iic0kCiaiaalXg3EbpNKoicrweQ/0?wx_fmt=jpeg", + "share_img": "http://http://mmbiz.qpic.cn/mmbiz_jpg/Rl1RuuhdstSfZa8EEljedAYcbtX3Ejpdl2et1tPAQ37bdicnxoVialDLCKKDcPBy8Iic0kCiaiaalXg3EbpNKoicrweQ/0?wx_fmt=jpeg", "live_status": 101, "start_time": 1568128900, "end_time": 1568131200, "anchor_name": "里斯", "goods": [ { - "cover_img": "http://http:\/\/mmbiz.qpic.cn\/mmbiz_jpg\/Rl1RuuhdstSfZa8EEljedAYcbtX3Ejpdl2et1tPAQ37bdicnxoVialDLCKKDcPBy8Iic0kCiaiaalXg3EbpNKoicrweQ\/0?wx_fmt=jpeg", + "cover_img": "http://http://mmbiz.qpic.cn/mmbiz_jpg/Rl1RuuhdstSfZa8EEljedAYcbtX3Ejpdl2et1tPAQ37bdicnxoVialDLCKKDcPBy8Iic0kCiaiaalXg3EbpNKoicrweQ/0?wx_fmt=jpeg", "url": "pages/index/index.html", "name": "茶杯", "price": 1889, @@ -35,4 +35,4 @@ "feeds_img": "XXX" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveReplayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveReplayRequest.json index 1bc8b02e..b1da3f34 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveReplayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveReplayRequest.json @@ -3,4 +3,4 @@ "room_id": 354, "start": 0, "limit": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveReplayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveReplayResponse.json index 3fc05b39..788b303a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveReplayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetLiveReplayResponse.json @@ -9,4 +9,4 @@ "errcode": 0, "total": 1, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetWxaFollowersRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetWxaFollowersRequest.json index b0d16852..9e906f7b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetWxaFollowersRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetWxaFollowersRequest.json @@ -1,4 +1,4 @@ { "limit": 200, "page_break": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetWxaFollowersResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetWxaFollowersResponse.json index 5a3136ef..c9f64477 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetWxaFollowersResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessGetWxaFollowersResponse.json @@ -17,4 +17,4 @@ "page_break": 1606270612, "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessPushMessageRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessPushMessageRequest.json index fc6ab843..760d26eb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessPushMessageRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessPushMessageRequest.json @@ -1,4 +1,4 @@ { "room_id": 1, - "user_openid": [ "openid1", "openid2" ] -} \ No newline at end of file + "user_openid": ["openid1", "openid2"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessPushMessageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessPushMessageResponse.json index c07127a3..34e06dba 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessPushMessageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/LiveBroadcast/WxaBusinessPushMessageResponse.json @@ -2,4 +2,4 @@ "message_id": "message_id", "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/Runtime/WxaBusinessRuntimeAddDeviceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/Runtime/WxaBusinessRuntimeAddDeviceRequest.json index cfe318d5..39c480af 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/Runtime/WxaBusinessRuntimeAddDeviceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/Runtime/WxaBusinessRuntimeAddDeviceRequest.json @@ -1,5 +1,5 @@ { "product_id": 100000, - "device_id_list": [ "deviceid_1", "deviceid_2", "deviceid_3" ], + "device_id_list": ["deviceid_1", "deviceid_2", "deviceid_3"], "model_name": "YOUR_MODEL_NAME" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/WxaBusinessGetUserPhoneNumberRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/WxaBusinessGetUserPhoneNumberRequest.json index 0da9fd6c..179325ef 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/WxaBusinessGetUserPhoneNumberRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/WxaBusinessGetUserPhoneNumberRequest.json @@ -1,3 +1,3 @@ { "code": "e31968a7f94cc5ee25fafc2aef2773f0bb8c3937b22520eb8ee345274d00c144" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/WxaBusinessGetUserPhoneNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/WxaBusinessGetUserPhoneNumberResponse.json index 261e82bd..9e062aab 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/WxaBusinessGetUserPhoneNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaBusiness/WxaBusinessGetUserPhoneNumberResponse.json @@ -10,4 +10,4 @@ "appid": "xxxx" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaApiWxaQueryNicknameRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaApiWxaQueryNicknameRequest.json index 3978b2a0..bbef4aa2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaApiWxaQueryNicknameRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaApiWxaQueryNicknameRequest.json @@ -1,3 +1,3 @@ { "audit_id": 12345 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaApiWxaQueryNicknameResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaApiWxaQueryNicknameResponse.json index 6e923c8c..3f80cbb8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaApiWxaQueryNicknameResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaApiWxaQueryNicknameResponse.json @@ -6,4 +6,4 @@ "fail_reason": "xxx", "create_time": 1519724071, "audit_time": 1519724950 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaChangeWxaSearchStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaChangeWxaSearchStatusRequest.json index 512d27e6..ca91e707 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaChangeWxaSearchStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaChangeWxaSearchStatusRequest.json @@ -1,3 +1,3 @@ { "status": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaFetchDataSettingRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaFetchDataSettingRequest.json index aff68e81..43d0b06f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaFetchDataSettingRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaFetchDataSettingRequest.json @@ -7,4 +7,4 @@ "period_fetch_type": 1, "period_env": "test-pfyol", "period_function_name": "login" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaFetchDataSettingResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaFetchDataSettingResponse.json index c0b384ea..258482d3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaFetchDataSettingResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaFetchDataSettingResponse.json @@ -8,4 +8,4 @@ "is_period_fetch_open": true, "period_fetch_type": 0, "period_fetch_url": "https://111.qq.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaGetWxaSearchStatusResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaGetWxaSearchStatusResponse.json index 46e188f2..49de74ce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaGetWxaSearchStatusResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaGetWxaSearchStatusResponse.json @@ -2,4 +2,4 @@ "status": 1, "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaModifyDomainRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaModifyDomainRequest.json index 8081f066..c108afd5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaModifyDomainRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaModifyDomainRequest.json @@ -1,7 +1,7 @@ { "action": "add", - "requestdomain": [ "https://www.qq.com", "https://www.qq.com" ], - "wsrequestdomain": [ "wss://www.qq.com", "wss://www.qq.com" ], - "uploaddomain": [ "https://www.qq.com", "https://www.qq.com" ], - "downloaddomain": [ "https://www.qq.com", "https://www.qq.com" ] -} \ No newline at end of file + "requestdomain": ["https://www.qq.com", "https://www.qq.com"], + "wsrequestdomain": ["wss://www.qq.com", "wss://www.qq.com"], + "uploaddomain": ["https://www.qq.com", "https://www.qq.com"], + "downloaddomain": ["https://www.qq.com", "https://www.qq.com"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaModifyDomainResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaModifyDomainResponse.json index 85d9265f..adb97bd6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaModifyDomainResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaModifyDomainResponse.json @@ -1,8 +1,8 @@ { "errcode": 0, "errmsg": "ok", - "requestdomain": [ "https://www.qq.com", "https://www.qq.com" ], - "wsrequestdomain": [ "wss://www.qq.com", "wss://www.qq.com" ], - "uploaddomain": [ "https://www.qq.com", "https://www.qq.com" ], - "downloaddomain": [ "https://www.qq.com", "https://www.qq.com" ] -} \ No newline at end of file + "requestdomain": ["https://www.qq.com", "https://www.qq.com"], + "wsrequestdomain": ["wss://www.qq.com", "wss://www.qq.com"], + "uploaddomain": ["https://www.qq.com", "https://www.qq.com"], + "downloaddomain": ["https://www.qq.com", "https://www.qq.com"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetNicknameRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetNicknameRequest.json index bd372227..c987ffe5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetNicknameRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetNicknameRequest.json @@ -4,4 +4,4 @@ "license": "3LaLzqiTrQcD20DlX_o-OV22231", "naming_other_stuff_1": "3LaLzqiTrQcD20DlX_o-OV1-nlYMu7sdVAL7SV2PrxVyjZFZZmB3O6LPGaYXlZWq", "naming_other_stuff_2": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetNicknameResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetNicknameResponse.json index 9bd2fba8..f2b5bebf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetNicknameResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetNicknameResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "wording": "", "audit_id": 12345 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetWebviewDomainRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetWebviewDomainRequest.json index 53845ceb..e21fa8c8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetWebviewDomainRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetWebviewDomainRequest.json @@ -1,4 +1,4 @@ { "action": "add", - "webviewdomain": [ "https://www.qq.com", "https://m.qq.com" ] -} \ No newline at end of file + "webviewdomain": ["https://www.qq.com", "https://m.qq.com"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetWebviewDomainResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetWebviewDomainResponse.json index 892adabd..5cc26120 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetWebviewDomainResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Basic/WxaSetWebviewDomainResponse.json @@ -1,5 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "webviewdomain": [ "https://www.qq.com", "https://m.qq.com" ] -} \ No newline at end of file + "webviewdomain": ["https://www.qq.com", "https://m.qq.com"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Category/WxaGetCategoryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Category/WxaGetCategoryResponse.json index ed649c1b..c84c28d2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Category/WxaGetCategoryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Category/WxaGetCategoryResponse.json @@ -17,4 +17,4 @@ "third_id": 5 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaChangeVisitStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaChangeVisitStatusRequest.json index 90c83c05..e9ee6e1b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaChangeVisitStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaChangeVisitStatusRequest.json @@ -1,3 +1,3 @@ { "action": "close" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaCommitRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaCommitRequest.json index 9bbf2c83..fff546ff 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaCommitRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaCommitRequest.json @@ -3,4 +3,4 @@ "ext_json": "{\"extAppid\":\"\",\"ext\":{\"attr1\":\"value1\",\"attr2\":\"value2\"},\"extPages\":{\"index\":{},\"search/index\":{}},\"pages\":[\"index\",\"search/index\"],\"window\":{},\"networkTimeout\":{},\"tabBar\":{},\"plugin\":{}}", "user_version": "V1.0", "user_desc": "test" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetAuditStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetAuditStatusRequest.json index 3f9ebce7..83b58f5e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetAuditStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetAuditStatusRequest.json @@ -1,3 +1,3 @@ { "auditid": 1234567 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetAuditStatusResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetAuditStatusResponse.json index 61be6a80..b5468fc0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetAuditStatusResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetAuditStatusResponse.json @@ -4,4 +4,4 @@ "status": 1, "reason": "帐号信息不合规范", "screenshot": "xxx|yyy|zzz" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetGrayReleasePlanResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetGrayReleasePlanResponse.json index 833204ee..53323488 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetGrayReleasePlanResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetGrayReleasePlanResponse.json @@ -6,4 +6,4 @@ "create_timestamp": 1517553721, "gray_percentage": 8 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetLatestAuditStatusResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetLatestAuditStatusResponse.json index 4d7ae473..fdcfc02b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetLatestAuditStatusResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetLatestAuditStatusResponse.json @@ -5,4 +5,4 @@ "status": 1, "reason": "帐号信息不合规范", "ScreenShot": "xx|yy|zz" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetPageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetPageResponse.json index 0b236483..3d69246e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetPageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGetPageResponse.json @@ -1,5 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "page_list": [ "index", "page/list", "page/detail" ] -} \ No newline at end of file + "page_list": ["index", "page/list", "page/detail"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGrayReleaseRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGrayReleaseRequest.json index bcd0fbe0..718053bf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGrayReleaseRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaGrayReleaseRequest.json @@ -1,3 +1,3 @@ { "gray_percentage": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaQueryQuotaResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaQueryQuotaResponse.json index 11fd8f80..c359d95a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaQueryQuotaResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaQueryQuotaResponse.json @@ -5,4 +5,4 @@ "limit": 0, "speedup_rest": 0, "speedup_limit": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaRevertCodeReleaseResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaRevertCodeReleaseResponse.json index eea2c930..6a31e10b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaRevertCodeReleaseResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaRevertCodeReleaseResponse.json @@ -15,4 +15,4 @@ "app_version": 222 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaSpeedupAuditRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaSpeedupAuditRequest.json index b3ad9865..4f14da78 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaSpeedupAuditRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaSpeedupAuditRequest.json @@ -1,3 +1,3 @@ { "auditid": 12345 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaSubmitAuditRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaSubmitAuditRequest.json index 64edd96b..1e36729b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaSubmitAuditRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaSubmitAuditRequest.json @@ -24,19 +24,14 @@ "feedback_info": "blablabla", "feedback_stuff": "xx|yy|zz", "preview_info": { - "video_id_list": [ "xxxx" ], - "pic_id_list": [ "xxxx", "yyyy", "zzzz" ] + "video_id_list": ["xxxx"], + "pic_id_list": ["xxxx", "yyyy", "zzzz"] }, "version_desc": "blablabla", "ugc_declare": { - "scene": [ - 1, - 2 - ], - "method": [ - 1 - ], + "scene": [1, 2], + "method": [1], "has_audit_team": 1, "audit_desc": "blablabla" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaSubmitAuditResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaSubmitAuditResponse.json index 4225ee64..4b7eaedc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaSubmitAuditResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Code/WxaSubmitAuditResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "auditid": 1234567 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaBindTesterRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaBindTesterRequest.json index 07272a28..380d875a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaBindTesterRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaBindTesterRequest.json @@ -1,3 +1,3 @@ { "wechatid": "testid" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaBindTesterResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaBindTesterResponse.json index 27320d55..2c1f5f9a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaBindTesterResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaBindTesterResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "userstr": "xxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaMemberAuthGetExperiencerRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaMemberAuthGetExperiencerRequest.json index 2b364dbf..6026d303 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaMemberAuthGetExperiencerRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaMemberAuthGetExperiencerRequest.json @@ -1,3 +1,3 @@ { "action": "get_experiencer" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaMemberAuthGetExperiencerResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaMemberAuthGetExperiencerResponse.json index 17d79e46..14309087 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaMemberAuthGetExperiencerResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaMemberAuthGetExperiencerResponse.json @@ -9,4 +9,4 @@ "userstr": "yyyyyyyy" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaUnbindTesterRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaUnbindTesterRequest.json index bd873d84..b316e8d4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaUnbindTesterRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Member/WxaUnbindTesterRequest.json @@ -1,3 +1,3 @@ { "userstr": "testtest" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetAppealRecordsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetAppealRecordsRequest.json index 9b21c7cc..d875eaa7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetAppealRecordsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetAppealRecordsRequest.json @@ -1,3 +1,3 @@ { "illegal_record_id": "2_11100" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetAppealRecordsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetAppealRecordsResponse.json index fc1ed591..646a8f1d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetAppealRecordsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetAppealRecordsResponse.json @@ -16,10 +16,7 @@ }, "appeal_material": { "reason": "内容是正常的", - "proof_material_ids": [ - "xxxx", - "xxxx" - ] + "proof_material_ids": ["xxxx", "xxxx"] } }, { @@ -29,12 +26,10 @@ }, "appeal_material": { "reason": "内容是正常的", - "proof_material_ids": [ - "zzzz" - ] + "proof_material_ids": ["zzzz"] } } ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetIllegalRecordsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetIllegalRecordsRequest.json index bc534160..c0db3035 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetIllegalRecordsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetIllegalRecordsRequest.json @@ -1,4 +1,4 @@ { "start_time": 1600051606, "end_time": 1600053000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetIllegalRecordsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetIllegalRecordsResponse.json index c200d262..bad0854c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetIllegalRecordsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Record/WxaGetIllegalRecordsResponse.json @@ -19,4 +19,4 @@ "rule_name": "《微信小程序平台运营规范》" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentFastRegisterBetaWeappRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentFastRegisterBetaWeappRequest.json index 1f145984..c8ee402f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentFastRegisterBetaWeappRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentFastRegisterBetaWeappRequest.json @@ -1,4 +1,4 @@ { "name": "小麦烤鸡", "openid": "oK8Yg5YaUM-axuE_vVZmV_oIZxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentFastRegisterBetaWeappResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentFastRegisterBetaWeappResponse.json index 1aa22835..e58effb0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentFastRegisterBetaWeappResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentFastRegisterBetaWeappResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "unique_id": "BV8ToNpYUMSeoRgsDi7-_cyo2hMtcbJN4fDPEdOKAGSResiIK8VefChe6UkNhxOi", "authorize_url": "https://mp.weixin.qq.com/wxawap/fastregistertpbeta?action=show&create_token=BV8ToNpYUMSeoRgsDi7-_cyo2hMtcbxxxxxxxxxxxIK8VefChe6UkNhxOi#wechat_redirect" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentReuseMerchantIdFastMormalizeBetaWeappRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentReuseMerchantIdFastMormalizeBetaWeappRequest.json index a1d74706..9fc798a9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentReuseMerchantIdFastMormalizeBetaWeappRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentReuseMerchantIdFastMormalizeBetaWeappRequest.json @@ -3,4 +3,4 @@ "sub_merchant_code": "1234567890", "component_phone": "88888888", "taskid": "9e141c6158fdxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentReuseMerchantIdFastMormalizeBetaWeappResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentReuseMerchantIdFastMormalizeBetaWeappResponse.json index 1850806d..328ad62d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentReuseMerchantIdFastMormalizeBetaWeappResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaComponentReuseMerchantIdFastMormalizeBetaWeappResponse.json @@ -6,4 +6,4 @@ "authorize_appid_administrator_url": "https://mp.weixin.qq.com/publicpoc/reusemchidfastnormalizebetawxa?action=scan&tid=d836xxxxxxxxb3eb#wechat_redirect", "authorize_appid_administrator_status": "0", "taskid": "9e141c6158fdxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaGetMpAdminAuthRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaGetMpAdminAuthRequest.json index f18b214c..942a9a45 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaGetMpAdminAuthRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaGetMpAdminAuthRequest.json @@ -1,4 +1,4 @@ { "mp_appid": "wxxxxxxdre3f", "same_admin": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaGetMpAdminAuthResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaGetMpAdminAuthResponse.json index 97dffca8..fa558ee4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaGetMpAdminAuthResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaGetMpAdminAuthResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "authorize_url": "xxxxxin" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaMpVerifyBetaWeappRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaMpVerifyBetaWeappRequest.json index fb76fee6..985b62aa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaMpVerifyBetaWeappRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaMpVerifyBetaWeappRequest.json @@ -1,4 +1,4 @@ { "mp_appid": "wxxxxxxdre3f", "ticket": "xxxxxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaMpVerifyBetaWeappResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaMpVerifyBetaWeappResponse.json index 97dffca8..fa558ee4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaMpVerifyBetaWeappResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaMpVerifyBetaWeappResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "authorize_url": "xxxxxin" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaSetBetaWeappNicknameRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaSetBetaWeappNicknameRequest.json index 31aa7fa5..358157e8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaSetBetaWeappNicknameRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaSetBetaWeappNicknameRequest.json @@ -1,3 +1,3 @@ { "name": "小麦烤鸡" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaVerifyBetaWeappRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaVerifyBetaWeappRequest.json index f3a574b7..3d0e9ad9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaVerifyBetaWeappRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Register/WxaVerifyBetaWeappRequest.json @@ -8,4 +8,4 @@ "component_phone": "158173xxxxx", "legal_persona_idcard": "440881199xxxxxx" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Subscribe/WxaGetShowWxaItemResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Subscribe/WxaGetShowWxaItemResponse.json index 97bad361..1e526a8f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Subscribe/WxaGetShowWxaItemResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Subscribe/WxaGetShowWxaItemResponse.json @@ -6,4 +6,4 @@ "appid": "展示的公众号appid", "nickname": "展示的公众号nickname", "headimg": "展示的公众号头像" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Subscribe/WxaGetWxaMpLinkForShowResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Subscribe/WxaGetWxaMpLinkForShowResponse.json index 118c4c01..b7045281 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Subscribe/WxaGetWxaMpLinkForShowResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Subscribe/WxaGetWxaMpLinkForShowResponse.json @@ -9,4 +9,4 @@ "headimg": "公众号头像" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Subscribe/WxaUpdateShowWxaItemRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Subscribe/WxaUpdateShowWxaItemRequest.json index 27f5f888..cd533a6d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Subscribe/WxaUpdateShowWxaItemRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Subscribe/WxaUpdateShowWxaItemRequest.json @@ -1,4 +1,4 @@ { "wxa_subscribe_biz_flag": 1, "appid": "如果开启,需要传新的公众号appid" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaAddToTemplateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaAddToTemplateRequest.json index f3a643fd..e7cb0dc6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaAddToTemplateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaAddToTemplateRequest.json @@ -1,3 +1,3 @@ { "draft_id": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaDeleteTemplateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaDeleteTemplateRequest.json index 4ca95dc4..249c10a5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaDeleteTemplateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaDeleteTemplateRequest.json @@ -1,3 +1,3 @@ { "template_id": "0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaGetTemplateDraftListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaGetTemplateDraftListResponse.json index 1b46dd8c..fa7c13ec 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaGetTemplateDraftListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaGetTemplateDraftListResponse.json @@ -15,4 +15,4 @@ "draft_id": 4 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaGetTemplateListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaGetTemplateListResponse.json index a58fdbf9..2601afd9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaGetTemplateListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/ModelSamples/WxaComponent/Template/WxaGetTemplateListResponse.json @@ -17,4 +17,4 @@ "template_type": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/TestCase_ApiExecuteWxaApiTests.cs b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/TestCase_ApiExecuteWxaApiTests.cs index af4b77b3..ccd4438a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/TestCase_ApiExecuteWxaApiTests.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/TestCase_ApiExecuteWxaApiTests.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Threading.Tasks; using Xunit; @@ -20,7 +20,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.UnitTests Assert.True(response.IsSuccessful()); Assert.NotNull(response.DefaultTimeData); - Assert.NotEmpty(response.DefaultTimeData.DataList); + Assert.NotEmpty(response.DefaultTimeData!.DataList); } [Fact(DisplayName = "测试用例:调用 API [GET] /wxaapi/log/get_scene")] diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/TestConfigs.cs b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/TestConfigs.cs index 116cc649..b583d61b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/TestConfigs.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/TestConfigs.cs @@ -9,7 +9,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.UnitTests static TestConfigs() { // NOTICE: 请在项目根目录下按照 appsettings.json 的格式新建 appsettings.local.json 填入测试参数。 - // WARNING: 请在 DEBUG 模式下运行测试用例。 + // WARNING: 请在 DEBUG 模式下运行测试用例。 // WARNING: 敏感信息请不要提交到 git! try diff --git a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/appsettings.json b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/appsettings.json index 1caa4cdf..63ca8b7f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/appsettings.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Api.UnitTests/appsettings.json @@ -7,4 +7,4 @@ }, "WorkDirectoryForSdk": "请输入当前 SDK 项目所在的目录完整路径,如 C:\\Project\\src\\SKIT.FlurlHttpClient.Wechat.Api\\", "WorkDirectoryForTest": "请输入当前测试项目所在的目录完整路径,如 C:\\Project\\test\\SKIT.FlurlHttpClient.Wechat.Api.UnitTests\\" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/.gitignore b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/.gitignore index 63666fbf..47961c7e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/.gitignore +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/.gitignore @@ -1 +1 @@ -appsettings.local.json \ No newline at end of file +appsettings.local.json diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/EventSamples/Platform/ThirdKf/UserEnterEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/EventSamples/Platform/ThirdKf/UserEnterEvent.xml index 4c39b906..aa861ea8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/EventSamples/Platform/ThirdKf/UserEnterEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/EventSamples/Platform/ThirdKf/UserEnterEvent.xml @@ -10,4 +10,4 @@ 渠0 0 1234567890 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/EventSamples/Platform/ThirdKf/UserQuitEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/EventSamples/Platform/ThirdKf/UserQuitEvent.xml index 4bfbb88b..3166fa7d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/EventSamples/Platform/ThirdKf/UserQuitEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/EventSamples/Platform/ThirdKf/UserQuitEvent.xml @@ -7,4 +7,4 @@ 渠0 0 1234567890 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPDocumentClassifyRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPDocumentClassifyRequest.json index cacf471b..b1f154cd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPDocumentClassifyRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPDocumentClassifyRequest.json @@ -4,4 +4,4 @@ "title": "东北地区今日开启升温之旅 华南西南气温将创新低", "content": "中国天气网讯 预计今天(6日),东南一带的降水将有所收敛,但是仍有助于缓和当地的气象干旱。气温方面,东北地区今天开始将开启升温之旅,而华南、西南一带最低气温还会创新低。随后而来的周末将会是今年晴天范围最大、降水最少的周末,公众可以提前安排户外活动,迎接温暖的阳光。" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPDocumentClassifyResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPDocumentClassifyResponse.json index b6b48a8a..2f15268d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPDocumentClassifyResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPDocumentClassifyResponse.json @@ -4,4 +4,4 @@ "level2_cls": "其他", "level3_cls": "其他" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPGetSimilarQueryRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPGetSimilarQueryRequest.json index 4b0b8f8e..497d59f8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPGetSimilarQueryRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPGetSimilarQueryRequest.json @@ -3,4 +3,4 @@ "data": { "query": "你好吗" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPGetSimilarQueryResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPGetSimilarQueryResponse.json index b8e152c9..d420e832 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPGetSimilarQueryResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPGetSimilarQueryResponse.json @@ -17,4 +17,4 @@ } ], "costime": 1394 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNERRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNERRequest.json index b68faae7..6fa5ec70 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNERRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNERRequest.json @@ -3,4 +3,4 @@ "data": { "q": "帮我订两张后天上午的火车票" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNERResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNERResponse.json index 07cf9159..c7b151fb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNERResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNERResponse.json @@ -2,21 +2,15 @@ "result": [ { "type": "number", - "span": [ - 3, - 4 - ], + "span": [3, 4], "text": "两", "norm": "2" }, { "type": "datetime_interval", - "span": [ - 5, - 9 - ], + "span": [5, 9], "text": "后天上午", "norm": "2019-10-30 08:00:00~2019-10-30 11:59:59" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNewsAbstractionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNewsAbstractionRequest.json index 2787e5e6..b2bd3744 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNewsAbstractionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNewsAbstractionRequest.json @@ -6,4 +6,4 @@ "category": "娱乐", "do_news_classify": true } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNewsAbstractionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNewsAbstractionResponse.json index f5e9e12d..6e1d235e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNewsAbstractionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPNewsAbstractionResponse.json @@ -2,4 +2,4 @@ "abstraction": "新浪娱乐讯据台湾媒体报道,周杰伦今受邀出席公益篮球活动,许久没公开亮相的他坦言:“大家看我的社交网站就知道,现在玩乐和陪家人是最重要的。”他预计10月将启动全新巡演,但聊到新专辑,他笑说:“目前已经做好5首,但包括上次做好的2首。”进度严重落后,巡演前能否来得及推出仍是未知数。", "classification": true, "prob": 0.999969363213 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRankRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRankRequest.json index 41f04a0f..138a6100 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRankRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRankRequest.json @@ -8,4 +8,4 @@ { "text": "北京到上海的高铁票" } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRankResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRankResponse.json index 6fdfab53..e10455fa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRankResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRankResponse.json @@ -14,4 +14,4 @@ } ], "exact_match": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRecommendQuestionsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRecommendQuestionsRequest.json index 4b364708..820397f0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRecommendQuestionsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRecommendQuestionsRequest.json @@ -1,4 +1,4 @@ { "uid": "xjlsj33lasfaf", "data": {} -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRecommendQuestionsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRecommendQuestionsResponse.json index 7143beab..0846b8a9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRecommendQuestionsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPRecommendQuestionsResponse.json @@ -6,4 +6,4 @@ "数据查看", "微信支付商户自查违规指引" ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSensitiveRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSensitiveRequest.json index f9168b8c..9444658a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSensitiveRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSensitiveRequest.json @@ -4,4 +4,4 @@ "q": "楼主真垃圾,祝你早日死全家", "model": "cnnn" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSensitiveResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSensitiveResponse.json index 90862c7e..003a11d5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSensitiveResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSensitiveResponse.json @@ -1,20 +1,8 @@ { "result": [ - [ - "dirty_curse", - 0.9999999900000001 - ], - [ - "other", - 9.9999999E-9 - ], - [ - "dirty_politics", - 0.0 - ], - [ - "dirty_porno", - 0.0 - ] + ["dirty_curse", 0.9999999900000001], + ["other", 9.9999999e-9], + ["dirty_politics", 0.0], + ["dirty_porno", 0.0] ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSentimentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSentimentRequest.json index 0ae861d6..a7a36225 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSentimentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSentimentRequest.json @@ -4,4 +4,4 @@ "q": "恭喜小张脱单成功", "mode": "3class" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSentimentResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSentimentResponse.json index 38592281..fd66fa02 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSentimentResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPSentimentResponse.json @@ -1,16 +1,7 @@ { "result": [ - [ - "正面", - 0.9593541622161865 - ], - [ - "无情感", - 0.0400625541806221 - ], - [ - "负面", - 0.000583284127060324 - ] + ["正面", 0.9593541622161865], + ["无情感", 0.0400625541806221], + ["负面", 0.000583284127060324] ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTokenizeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTokenizeRequest.json index 63ce3ba7..d05c856b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTokenizeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTokenizeRequest.json @@ -3,4 +3,4 @@ "data": { "q": "在微信智言与微信智聆两大技术的支持下,微信AI团队推出了“微信对话开放平台”和“腾讯小微”智能硬件两大核心产品。微信支付团队最新发布的“微信青蛙Pro”在现场设置了体验区,让大家感受AI认脸的本事。" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTokenizeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTokenizeResponse.json index 79bd1232..3f1aa9f0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTokenizeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTokenizeResponse.json @@ -68,72 +68,10 @@ "。" ], "POSs": [ - 25, - 16, - 16, - 46, - 25, - 16, - 16, - 46, - 15, - 1, - 16, - 30, - 33, - 8, - 34, - 31, - 23, - 16, - 31, - 36, - 34, - 16, - 33, - 33, - 16, - 34, - 5, - 34, - 6, - 1, - 38, - 34, - 16, - 16, - 15, - 1, - 16, - 16, - 34, - 6, - 31, - 16, - 1, - 31, - 30, - 34, - 31, - 16, - 23, - 34, - 25, - 28, - 31, - 30, - 33, - 16, - 34, - 31, - 27, - 31, - 23, - 31, - 16, - 30, - 16, - 34 + 25, 16, 16, 46, 25, 16, 16, 46, 15, 1, 16, 30, 33, 8, 34, 31, 23, 16, + 31, 36, 34, 16, 33, 33, 16, 34, 5, 34, 6, 1, 38, 34, 16, 16, 15, 1, 16, + 16, 34, 6, 31, 16, 1, 31, 30, 34, 31, 16, 23, 34, 25, 28, 31, 30, 33, + 16, 34, 31, 27, 31, 23, 31, 16, 30, 16, 34 ], "words_mix": [ "在", @@ -203,80 +141,11 @@ "。" ], "POSs_mix": [ - 25, - 16, - 16, - 46, - 25, - 16, - 16, - 46, - 15, - 1, - 16, - 30, - 33, - 8, - 34, - 31, - 23, - 16, - 31, - 36, - 34, - 16, - 33, - 33, - 16, - 34, - 5, - 34, - 6, - 16, - 34, - 16, - 16, - 15, - 1, - 16, - 16, - 34, - 6, - 31, - 16, - 1, - 31, - 30, - 34, - 31, - 16, - 23, - 34, - 25, - 28, - 31, - 30, - 33, - 16, - 34, - 31, - 27, - 31, - 23, - 31, - 16, - 30, - 16, - 34 + 25, 16, 16, 46, 25, 16, 16, 46, 15, 1, 16, 30, 33, 8, 34, 31, 23, 16, + 31, 36, 34, 16, 33, 33, 16, 34, 5, 34, 6, 16, 34, 16, 16, 15, 1, 16, 16, + 34, 6, 31, 16, 1, 31, 30, 34, 31, 16, 23, 34, 25, 28, 31, 30, 33, 16, + 34, 31, 27, 31, 23, 31, 16, 30, 16, 34 ], - "entities": [ - "腾讯", - "小微", - "最新发布" - ], - "entity_types": [ - 100000013, - 0, - 0 - ] + "entities": ["腾讯", "小微", "最新发布"], + "entity_types": [100000013, 0, 0] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTranslateEnglish2ChineseRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTranslateEnglish2ChineseRequest.json index 49978f0b..36f4ff71 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTranslateEnglish2ChineseRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTranslateEnglish2ChineseRequest.json @@ -3,4 +3,4 @@ "data": { "q": "北京的天气怎么样?" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTranslateEnglish2ChineseResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTranslateEnglish2ChineseResponse.json index f93021e8..9d437b05 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTranslateEnglish2ChineseResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/Platform/NLP/NLPTranslateEnglish2ChineseResponse.json @@ -1,3 +1,3 @@ { "result": "What about the weather in Beijing?" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiGetWelcomeMessageRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiGetWelcomeMessageRequest.json index 4ce17a54..bb992f19 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiGetWelcomeMessageRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiGetWelcomeMessageRequest.json @@ -1,3 +1,3 @@ { "channelId": "sXRdXepMU58WyAV3xgT2F14PzXi4ya" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiGetWelcomeMessageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiGetWelcomeMessageResponse.json index e181cdc1..22c147f0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiGetWelcomeMessageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiGetWelcomeMessageResponse.json @@ -14,5 +14,4 @@ "total": 1 }, "request_id": "18024ec0-837e-4873-825a-922247d4e57f" - -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiSetWelcomeMessageRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiSetWelcomeMessageRequest.json index aad44b8c..1cab2ed7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiSetWelcomeMessageRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiSetWelcomeMessageRequest.json @@ -6,4 +6,4 @@ "welcomeMsg": "你好", "lableId": "", "msgId": "5500" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiSetWelcomeMessageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiSetWelcomeMessageResponse.json index c50fc1e8..48e111f3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiSetWelcomeMessageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Api/ApiSetWelcomeMessageResponse.json @@ -1,4 +1,4 @@ { "code": 0, "request_id": "f9da2eba-98f9-4b51-a68c-5bc7c537e539" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Async/AsyncFetchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Async/AsyncFetchResponse.json index fbbab33e..7140efce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Async/AsyncFetchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Async/AsyncFetchResponse.json @@ -7,4 +7,4 @@ "state": 2, "url": "http://openai-75050.gzc.vod.tencent-cloud.com/40238_knowledge1588562918359.csv" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotDeleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotDeleteResponse.json index 3059ae80..8645f484 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotDeleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotDeleteResponse.json @@ -5,4 +5,4 @@ }, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotEffectiveProgressRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotEffectiveProgressRequest.json index f39c8243..ec5af8b6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotEffectiveProgressRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotEffectiveProgressRequest.json @@ -1,3 +1,3 @@ { "env": "debug" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotEffectiveProgressResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotEffectiveProgressResponse.json index 3a9aaa2f..2a1b2c4c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotEffectiveProgressResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotEffectiveProgressResponse.json @@ -6,4 +6,4 @@ "status": 1 }, "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotExportResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotExportResponse.json index d8b0d65a..10297023 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotExportResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotExportResponse.json @@ -5,4 +5,4 @@ "task_id": "337cd9d9-210c-4a59-972e-1c8df8c18adb" }, "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotGetDetailResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotGetDetailResponse.json index 80f85ec8..68230919 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotGetDetailResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotGetDetailResponse.json @@ -16,4 +16,4 @@ }, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotGetListRequest.json index 686f9641..35259198 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotGetListRequest.json @@ -3,4 +3,4 @@ "page": 1, "size": 10, "bot_type": -1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotGetListResponse.json index 1b50091d..9c8cf7ed 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotGetListResponse.json @@ -37,4 +37,4 @@ }, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportJsonRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportJsonRequest.json index 257a5d09..e446f1fc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportJsonRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportJsonRequest.json @@ -6,14 +6,8 @@ "intent": "中午吃什么", "threshold": "0.9", "disable": false, - "questions": [ - "中午吃什么?", - "中午吃啥?" - ], - "answers": [ - "面条", - "包子" - ] + "questions": ["中午吃什么?", "中午吃啥?"], + "answers": ["面条", "包子"] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportJsonResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportJsonResponse.json index 520ef734..265d9c2c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportJsonResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportJsonResponse.json @@ -5,4 +5,4 @@ }, "msg": "", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportRequest.json index f36b3759..55585a9f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportRequest.json @@ -1,4 +1,4 @@ { "file_key": "fe48940d7310e79d6bf0a4aced56d522", "cover": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportResponse.json index d8b0d65a..10297023 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotImportResponse.json @@ -5,4 +5,4 @@ "task_id": "337cd9d9-210c-4a59-972e-1c8df8c18adb" }, "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotPublishGetRecordRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotPublishGetRecordRequest.json index 61c8c337..242805a9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotPublishGetRecordRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotPublishGetRecordRequest.json @@ -1,4 +1,4 @@ { "page": 0, "size": 8 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotPublishGetRecordResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotPublishGetRecordResponse.json index c62e3564..544d9007 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotPublishGetRecordResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotPublishGetRecordResponse.json @@ -31,4 +31,4 @@ }, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotPublishResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotPublishResponse.json index 918b8871..cb48d138 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotPublishResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotPublishResponse.json @@ -5,4 +5,4 @@ }, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotSaveRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotSaveRequest.json index 3fdeffc4..f067668d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotSaveRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotSaveRequest.json @@ -10,4 +10,4 @@ "user_feedback": true, "industry": 2, "bot_type": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotSaveResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotSaveResponse.json index 96ecf792..81cbd071 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotSaveResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotSaveResponse.json @@ -5,4 +5,4 @@ }, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotTestResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotTestResponse.json index bd6da986..f4fa4f5b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotTestResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Bot/BotTestResponse.json @@ -15,4 +15,4 @@ }, "msg": "", "request_id": "32482" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryDeleteRequest.json index 9609b62b..6181b32f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryDeleteRequest.json @@ -1,3 +1,3 @@ { - "id_list": [ 1, 2, 3 ] -} \ No newline at end of file + "id_list": [1, 2, 3] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryDeleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryDeleteResponse.json index d05d963e..298a09c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryDeleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryDeleteResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetAllListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetAllListResponse.json index 22d2a64b..4274c647 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetAllListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetAllListResponse.json @@ -29,4 +29,4 @@ }, "msg": "", "request_id": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetBuiltinListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetBuiltinListResponse.json index 3583245e..4c6d87d1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetBuiltinListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetBuiltinListResponse.json @@ -15,4 +15,4 @@ }, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetListRequest.json index a6eab472..c43e8d94 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetListRequest.json @@ -2,4 +2,4 @@ "keyword": "", "page": 1, "size": 2 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetListResponse.json index 94fbdf12..b3bcd0d3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionaryGetListResponse.json @@ -17,4 +17,4 @@ }, "msg": "", "request_id": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionarySaveRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionarySaveRequest.json index b9e2d732..7a75dc5a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionarySaveRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionarySaveRequest.json @@ -11,4 +11,4 @@ "name_ch": "测试2" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionarySaveResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionarySaveResponse.json index d05d963e..298a09c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionarySaveResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Dictionary/DictionarySaveResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/File/FileUploadResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/File/FileUploadResponse.json index 5a9515e9..41d6fe78 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/File/FileUploadResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/File/FileUploadResponse.json @@ -5,4 +5,4 @@ "data": { "file_key": "fe48940d7310e79d6bf0a4aced56d522" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigGetRequest.json index a08edfde..9e36b20e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigGetRequest.json @@ -1,3 +1,3 @@ { "intent_id": 1205882 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigGetResponse.json index f59353e5..6c738a35 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigGetResponse.json @@ -6,9 +6,9 @@ "slots": [ { "name": "城市", - "dicts": [ "建筑", "公路" ], + "dicts": ["建筑", "公路"], "keep_ask": true, - "ask_content": [ "建筑1", "公路1" ] + "ask_content": ["建筑1", "公路1"] } ], "pre": [ @@ -50,7 +50,7 @@ { "name": "", "slot": "Slot", - "ask_content": [ "111", "222" ] + "ask_content": ["111", "222"] } ], "result": [ @@ -73,7 +73,9 @@ "desc": "Inputdesc", "slot": "InputSlot", "default_value": "defa", - "ask_content": [ "ask" ] + "ask_content": [ + "ask" + ] } ], "output": [ @@ -124,4 +126,4 @@ ] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigSaveRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigSaveRequest.json index 61fc06ee..94c34c1c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigSaveRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigSaveRequest.json @@ -4,15 +4,9 @@ "slots": [ { "name": "城市", - "dicts": [ - "建筑", - "公路" - ], + "dicts": ["建筑", "公路"], "keep_ask": true, - "ask_content": [ - "建筑1", - "公路1" - ] + "ask_content": ["建筑1", "公路1"] } ], "pre": [ @@ -54,10 +48,7 @@ { "name": "", "slot": "Slot", - "ask_content": [ - "111", - "222" - ] + "ask_content": ["111", "222"] } ], "result": [ @@ -80,9 +71,7 @@ "desc": "Input desc", "slot": "Input Slot", "default_value": "defa", - "ask_content": [ - "ask" - ] + "ask_content": ["ask"] } ], "output": [ @@ -108,7 +97,6 @@ "content": "我在哪" } ] - } } ] @@ -122,4 +110,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigSaveResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigSaveResponse.json index d05d963e..298a09c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigSaveResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Config/IntentConfigSaveResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentDeleteRequest.json index 299271af..1d581665 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentDeleteRequest.json @@ -1,3 +1,3 @@ { - "id_list": [ 1205882, 1205883, 1205884 ] -} \ No newline at end of file + "id_list": [1205882, 1205883, 1205884] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentDeleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentDeleteResponse.json index a2217ea2..3466e6ce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentDeleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentDeleteResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentGetDetailRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentGetDetailRequest.json index a12b174e..85cd7858 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentGetDetailRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentGetDetailRequest.json @@ -1,3 +1,3 @@ { - "id": 6326248 -} \ No newline at end of file + "id": 6326248 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentGetDetailResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentGetDetailResponse.json index 696e6bac..ed0d912f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentGetDetailResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentGetDetailResponse.json @@ -21,4 +21,4 @@ }, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentNameExistRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentNameExistRequest.json index 142c0856..c6079ea4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentNameExistRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentNameExistRequest.json @@ -1,4 +1,4 @@ { "skill_id": 1548171, "intent_name": "温度" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentNameExistResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentNameExistResponse.json index f977ff57..bcb0b901 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentNameExistResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentNameExistResponse.json @@ -5,4 +5,4 @@ "data": { "exist": true } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSaveRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSaveRequest.json index d65b1d4a..05595df0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSaveRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSaveRequest.json @@ -17,4 +17,4 @@ "switch": true } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSaveResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSaveResponse.json index 124e1773..108aef96 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSaveResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSaveResponse.json @@ -15,4 +15,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSearchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSearchRequest.json index eb20811b..4501185f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSearchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSearchRequest.json @@ -2,4 +2,4 @@ "keyword": "测试", "page": 1, "size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSearchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSearchResponse.json index f95ab94e..c45cfc8f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSearchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSearchResponse.json @@ -25,4 +25,4 @@ }, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSwitchBatchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSwitchBatchRequest.json index a3cc4e18..39eebe54 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSwitchBatchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSwitchBatchRequest.json @@ -9,4 +9,4 @@ "switch": false } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSwitchBatchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSwitchBatchResponse.json index d05d963e..298a09c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSwitchBatchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/IntentSwitchBatchResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionDeleteRequest.json index 9609b62b..6181b32f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionDeleteRequest.json @@ -1,3 +1,3 @@ { - "id_list": [ 1, 2, 3 ] -} \ No newline at end of file + "id_list": [1, 2, 3] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionDeleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionDeleteResponse.json index a2217ea2..3466e6ce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionDeleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionDeleteResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionSaveRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionSaveRequest.json index 192ae488..0b02343b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionSaveRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionSaveRequest.json @@ -20,4 +20,4 @@ "counter_example": false } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionSaveResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionSaveResponse.json index a2217ea2..3466e6ce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionSaveResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Intent/Question/IntentQuestionSaveResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiCreateRequest.json index eb94ef09..c1acd0f6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiCreateRequest.json @@ -4,4 +4,4 @@ "wechat": "aaaa", "email": "123@qq.com", "address": "北京市海淀区中国技术交易大厦F7" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiCreateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiCreateResponse.json index 24a8af89..75cfc9eb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiCreateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiCreateResponse.json @@ -7,4 +7,4 @@ "token": "d9tvK4Z3jHp0SW3758x89550oj789k", "aes_key": "lKq5xB3W675330C6ftaLm3n3gb450Iz4ee880K2Hz16" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiGetDetailResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiGetDetailResponse.json index 24a8af89..75cfc9eb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiGetDetailResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiGetDetailResponse.json @@ -7,4 +7,4 @@ "token": "d9tvK4Z3jHp0SW3758x89550oj789k", "aes_key": "lKq5xB3W675330C6ftaLm3n3gb450Iz4ee880K2Hz16" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiResetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiResetResponse.json index 24a8af89..75cfc9eb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiResetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/OpenApi/OpenApiResetResponse.json @@ -7,4 +7,4 @@ "token": "d9tvK4Z3jHp0SW3758x89550oj789k", "aes_key": "lKq5xB3W675330C6ftaLm3n3gb450Iz4ee880K2Hz16" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillDeleteRequest.json index 46917863..cb2ec9d2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillDeleteRequest.json @@ -1,3 +1,3 @@ { - "id": [ 1205880 ] -} \ No newline at end of file + "id": [1205880] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillDeleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillDeleteResponse.json index d05d963e..298a09c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillDeleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillDeleteResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetDetailRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetDetailRequest.json index e70c79b9..722d1b0d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetDetailRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetDetailRequest.json @@ -3,4 +3,4 @@ "keyword": "", "page": 1, "size": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetDetailResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetDetailResponse.json index c2cabd5d..9d16c0ed 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetDetailResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetDetailResponse.json @@ -35,4 +35,4 @@ }, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetListRequest.json index b97a2661..e16175ba 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetListRequest.json @@ -1,4 +1,4 @@ { "skill_type": 0, "keyword": "天气" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetListResponse.json index a70d6cc5..3c827cf0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillGetListResponse.json @@ -12,15 +12,15 @@ "max_round": 10, "wake_open": true, "awaken_word": "你好", - "awaken_answer": [ "有什么可以帮忙的吗" ], + "awaken_answer": ["有什么可以帮忙的吗"], "exist_word": "再见", - "exist_answer": [ "祝您好运" ], + "exist_answer": ["祝您好运"], "cancel_intent_operation": true, - "cancel_answer": [ "已取消" ], - "no_cancel_answer": [ "没有可以取消的内容" ] + "cancel_answer": ["已取消"], + "no_cancel_answer": ["没有可以取消的内容"] } ] }, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillSaveRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillSaveRequest.json index f979230b..7add15c3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillSaveRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillSaveRequest.json @@ -5,18 +5,10 @@ "max_round": 10, "wake_open": true, "awaken_word": "你好", - "awaken_answer": [ - "有什么可以帮忙的吗" - ], + "awaken_answer": ["有什么可以帮忙的吗"], "exist_word": "再见", - "exist_answer": [ - "祝您好运" - ], + "exist_answer": ["祝您好运"], "cancel_intent_operation": true, - "cancel_answer": [ - "已取消" - ], - "no_cancel_answer": [ - "没有可以取消的内容" - ] -} \ No newline at end of file + "cancel_answer": ["已取消"], + "no_cancel_answer": ["没有可以取消的内容"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillSaveResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillSaveResponse.json index dfe7cb81..d7b77646 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillSaveResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Skill/SkillSaveResponse.json @@ -5,4 +5,4 @@ "data": { "id": 1205882 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotAcquireStateUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotAcquireStateUpdateRequest.json index 222f7b79..3607bee0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotAcquireStateUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotAcquireStateUpdateRequest.json @@ -1,3 +1,3 @@ { "skill_id": "23e21b8d4e226d046b4e" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotAcquireStateUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotAcquireStateUpdateResponse.json index a2217ea2..3466e6ce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotAcquireStateUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotAcquireStateUpdateResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotSwitchStateUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotSwitchStateUpdateRequest.json index 50205eda..ccbb0105 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotSwitchStateUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotSwitchStateUpdateRequest.json @@ -1,5 +1,11 @@ { "skill_id": "21c705957fc5af9fc32e", - "on_bot_id_list": [ "1dzcmrij0zyvexs4llblxepwclfvnq3fv", "2dzcmrij0zyvexs4llblxepwclfvnq3fv" ], - "off_bot_id_list": [ "dzcmrij0zyvexs4llblxepwclfvnq3fv", "3dzcmrij0zyvexs4llblxepwclfvnq3fv" ] + "on_bot_id_list": [ + "1dzcmrij0zyvexs4llblxepwclfvnq3fv", + "2dzcmrij0zyvexs4llblxepwclfvnq3fv" + ], + "off_bot_id_list": [ + "dzcmrij0zyvexs4llblxepwclfvnq3fv", + "3dzcmrij0zyvexs4llblxepwclfvnq3fv" + ] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotSwitchStateUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotSwitchStateUpdateResponse.json index a2217ea2..3466e6ce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotSwitchStateUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBotSwitchStateUpdateResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBuiltinSkillSwitchUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBuiltinSkillSwitchUpdateRequest.json index e6b891fd..a082f293 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBuiltinSkillSwitchUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBuiltinSkillSwitchUpdateRequest.json @@ -1,5 +1,11 @@ { "skill_name": "天气", - "on_bot_id_list": [ "1dzcmrij0zyvexs4llblxepwclfvnq3fv", "2dzcmrij0zyvexs4llblxepwclfvnq3fv" ], - "off_bot_id_list": [ "dzcmrij0zyvexs4llblxepwclfvnq3fv", "3dzcmrij0zyvexs4llblxepwclfvnq3fv" ] -} \ No newline at end of file + "on_bot_id_list": [ + "1dzcmrij0zyvexs4llblxepwclfvnq3fv", + "2dzcmrij0zyvexs4llblxepwclfvnq3fv" + ], + "off_bot_id_list": [ + "dzcmrij0zyvexs4llblxepwclfvnq3fv", + "3dzcmrij0zyvexs4llblxepwclfvnq3fv" + ] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBuiltinSkillSwitchUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBuiltinSkillSwitchUpdateResponse.json index a2217ea2..3466e6ce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBuiltinSkillSwitchUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreBuiltinSkillSwitchUpdateResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreGetListRequest.json index b4c54cb9..7337ad13 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreGetListRequest.json @@ -4,4 +4,4 @@ "order": 1, "page": 1, "size": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreGetListResponse.json index c9d87641..4e1249dc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/SkillStore/SkillStoreGetListResponse.json @@ -16,10 +16,7 @@ "skill_id": "buarvgld1evpg4faxacg", "skill_name": "小微欢乐多", "state": 0, - "statement_case_list": [ - "讲笑话", - "讲情话" - ], + "statement_case_list": ["讲笑话", "讲情话"], "switch": true, "update_time": "2020-07-29 11:38:39" } @@ -27,4 +24,4 @@ }, "msg": "success", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotDeleteRequest.json index 966e2e52..6e53e7ba 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotDeleteRequest.json @@ -1,4 +1,4 @@ { - "id_list": [ 1 ], + "id_list": [1], "auto_delete_slot": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotDeleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotDeleteResponse.json index d05d963e..298a09c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotDeleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotDeleteResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotGetListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotGetListRequest.json index 7d5b7e26..b8681617 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotGetListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotGetListRequest.json @@ -1,3 +1,3 @@ { "type": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotGetListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotGetListResponse.json index ffad4cb4..81c99a53 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotGetListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotGetListResponse.json @@ -4,14 +4,8 @@ "count": 1, "list": [ { - "ask_content": [ - "你好", - "又是愉快第一天" - ], - "dicts": [ - "test1", - "test2" - ], + "ask_content": ["你好", "又是愉快第一天"], + "dicts": ["test1", "test2"], "name": "test", "id": 1, "type": 1 @@ -20,4 +14,4 @@ }, "msg": "Request succeeded", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotSaveRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotSaveRequest.json index e72676e7..f0182ffc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotSaveRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotSaveRequest.json @@ -3,9 +3,9 @@ { "id": 1, "name": "test", - "dicts": [ "test1", "test2" ], - "ask_content": [ "你好", "又是愉快第一天" ], + "dicts": ["test1", "test2"], + "ask_content": ["你好", "又是愉快第一天"], "intent_id": 12334 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotSaveResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotSaveResponse.json index 850d6a02..e6aa29e8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotSaveResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Slot/SlotSaveResponse.json @@ -8,4 +8,4 @@ ], "msg": "", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Statistics/DialogUserSpecifiedDateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Statistics/DialogUserSpecifiedDateRequest.json index 6ebf35f6..cd136e30 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Statistics/DialogUserSpecifiedDateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Statistics/DialogUserSpecifiedDateRequest.json @@ -1,4 +1,4 @@ { "start_date": "2021-08-11", "end_date": "2021-08-18" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Statistics/DialogUserSpecifiedDateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Statistics/DialogUserSpecifiedDateResponse.json index 5d58ac5e..ec69610e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Statistics/DialogUserSpecifiedDateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Statistics/DialogUserSpecifiedDateResponse.json @@ -18,4 +18,4 @@ "count": 267 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Statistics/UserQueryYesterdayDataResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Statistics/UserQueryYesterdayDataResponse.json index cc6a7f73..ffe4ac7e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Statistics/UserQueryYesterdayDataResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Statistics/UserQueryYesterdayDataResponse.json @@ -5,10 +5,10 @@ "hit_rate": 0.94, "q_a_count": 985, "user_count": 280, - "hot_query_list": [ "我想看新闻", "好听的歌", "我想知道今天天气" ], + "hot_query_list": ["我想看新闻", "好听的歌", "我想知道今天天气"], "miss_rate": 0.06000000000000005, "new_news_count": 2021, "new_news_user_count": 605, "user_growth_rate": 0.16, "hit_growth_rate": 0.02 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Token/TokenRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Token/TokenRequest.json index 4907a33e..3859dd40 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Token/TokenRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Token/TokenRequest.json @@ -11,4 +11,4 @@ "skill_store" ], "authorization_type": "client_credentials" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Token/TokenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Token/TokenResponse.json index f52c36c9..dffbcfac 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Token/TokenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Token/TokenResponse.json @@ -5,4 +5,4 @@ }, "msg": "success", "request_id": "54ae04cf-5e95-44fd-ad3f-62e7b163836b" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassDetailRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassDetailRequest.json index febddf2b..887a901d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassDetailRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassDetailRequest.json @@ -4,4 +4,4 @@ "page_size": 10, "class_id": 12, "date": "2021-08-23" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassDetailResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassDetailResponse.json index ce262db8..a493a81c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassDetailResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassDetailResponse.json @@ -14,4 +14,4 @@ "page_size": 10, "total": 1 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassListRequest.json index 01e4279c..8b40551f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassListRequest.json @@ -3,4 +3,4 @@ "page_no": 1, "page_size": 10, "date": "2021-08-23" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassListResponse.json index b0ef2f80..ca07aec1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/UnmatchedClass/UnmatchedClassListResponse.json @@ -14,4 +14,4 @@ "page_size": 10, "total": 100 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/User/UserRegisterRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/User/UserRegisterRequest.json index e69c29bd..a41a75d9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/User/UserRegisterRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/User/UserRegisterRequest.json @@ -1,3 +1,3 @@ { "uid": "robot_2" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/User/UserRegisterResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/User/UserRegisterResponse.json index 104ed27f..82691b9c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/User/UserRegisterResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/User/UserRegisterResponse.json @@ -5,4 +5,4 @@ }, "msg": "success", "request_id": "363a6ce7-2908-4da0-a3a0-35539648eab6" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordDeleteBatchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordDeleteBatchRequest.json index 9609b62b..6181b32f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordDeleteBatchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordDeleteBatchRequest.json @@ -1,3 +1,3 @@ { - "id_list": [ 1, 2, 3 ] -} \ No newline at end of file + "id_list": [1, 2, 3] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordDeleteBatchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordDeleteBatchResponse.json index d05d963e..298a09c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordDeleteBatchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordDeleteBatchResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordExportRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordExportRequest.json index 3e258e0a..56b701ca 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordExportRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordExportRequest.json @@ -1,3 +1,3 @@ { - "dict_id": 1 -} \ No newline at end of file + "dict_id": 1 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordExportResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordExportResponse.json index d8b0d65a..10297023 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordExportResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordExportResponse.json @@ -5,4 +5,4 @@ "task_id": "337cd9d9-210c-4a59-972e-1c8df8c18adb" }, "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportJsonRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportJsonRequest.json index f7512768..4b6246f9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportJsonRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportJsonRequest.json @@ -4,7 +4,7 @@ "data": [ { "word": "AAA", - "synonyms": [ "AA", "A" ] + "synonyms": ["AA", "A"] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportJsonResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportJsonResponse.json index 520ef734..265d9c2c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportJsonResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportJsonResponse.json @@ -5,4 +5,4 @@ }, "msg": "", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportRequest.json index 5b605492..c9bfe4a0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportRequest.json @@ -2,4 +2,4 @@ "dict_id": 1, "file_key": "fe48940d7310e79d6bf0a4aced56d522", "cover": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportResponse.json index d8b0d65a..10297023 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordImportResponse.json @@ -5,4 +5,4 @@ "task_id": "337cd9d9-210c-4a59-972e-1c8df8c18adb" }, "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordUpdateBatchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordUpdateBatchRequest.json index c4ba84f9..5c9f5936 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordUpdateBatchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordUpdateBatchRequest.json @@ -6,7 +6,7 @@ "name": "test", "weight": 0.8, "switch": true, - "synonyms": [ "你好", "又是愉快第一天" ] + "synonyms": ["你好", "又是愉快第一天"] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordUpdateBatchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordUpdateBatchResponse.json index d05d963e..298a09c0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordUpdateBatchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/ModelSamples/ThirdParty/Word/WordUpdateBatchResponse.json @@ -2,4 +2,4 @@ "code": 0, "msg": "请求成功", "request_id": "255i0ug8-l9q4-3801-44ft-w7csjn9e5142" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestCase_CodeReview.cs b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestCase_CodeReview.cs index 6f95d422..a1fc06b8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestCase_CodeReview.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestCase_CodeReview.cs @@ -10,7 +10,7 @@ namespace SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests { Assert.Null(Record.Exception(() => { - CodeAnalyzerOptions options = new CodeAnalyzerOptions() + CodeAnalyzerOptions options = new CodeAnalyzerOptions() { AssemblyName = "SKIT.FlurlHttpClient.Wechat.OpenAI", WorkDirectoryForSourceCode = TestConfigs.WorkDirectoryForSdk, diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestCase_JWTUtilityTests.cs b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestCase_JWTUtilityTests.cs index 4a1f42e5..84bb29d7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestCase_JWTUtilityTests.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestCase_JWTUtilityTests.cs @@ -1,11 +1,11 @@ -using Xunit; +using Xunit; namespace SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests { public class TestCase_JwtUtilityTests { [Fact(DisplayName = "测试用例:JWT HS256 编码")] - public void TestJWTEncodeWithHS256() + public void TestJwtEncodeWithHS256() { object payload = new { diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestCase_JwtUtilityTests.cs b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestCase_JwtUtilityTests.cs index 4a1f42e5..84bb29d7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestCase_JwtUtilityTests.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestCase_JwtUtilityTests.cs @@ -1,11 +1,11 @@ -using Xunit; +using Xunit; namespace SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests { public class TestCase_JwtUtilityTests { [Fact(DisplayName = "测试用例:JWT HS256 编码")] - public void TestJWTEncodeWithHS256() + public void TestJwtEncodeWithHS256() { object payload = new { diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestConfigs.cs b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestConfigs.cs index 1ce5f913..d11688a6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestConfigs.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/TestConfigs.cs @@ -9,7 +9,7 @@ namespace SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests static TestConfigs() { // NOTICE: 请在项目根目录下按照 appsettings.json 的格式新建 appsettings.local.json 填入测试参数。 - // WARNING: 请在 DEBUG 模式下运行测试用例。 + // WARNING: 请在 DEBUG 模式下运行测试用例。 // WARNING: 敏感信息请不要提交到 git! try diff --git a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/appsettings.json b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/appsettings.json index 3d8a30ee..ef86db76 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/appsettings.json +++ b/test/SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests/appsettings.json @@ -9,4 +9,4 @@ }, "WorkDirectoryForSdk": "请输入当前 SDK 项目所在的目录完整路径,如 C:\\Project\\src\\SKIT.FlurlHttpClient.Wechat.OpenAI\\", "WorkDirectoryForTest": "请输入当前测试项目所在的目录完整路径,如 C:\\Project\\test\\SKIT.FlurlHttpClient.Wechat.OpenAI.UnitTests\\" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/.gitignore b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/.gitignore index 63666fbf..47961c7e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/.gitignore +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/.gitignore @@ -1 +1 @@ -appsettings.local.json \ No newline at end of file +appsettings.local.json diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/OrderEvent.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/OrderEvent.json index 2bbdc649..4d60dafa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/OrderEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/OrderEvent.json @@ -21,4 +21,4 @@ "coupon_id_0": "10000", "trade_type": "JSAPI", "transaction_id": "1004400740201409030005092168" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/PAPContractEvent.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/PAPContractEvent.json index 2dfcf324..6d5b8dba 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/PAPContractEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/PAPContractEvent.json @@ -10,4 +10,4 @@ "change_type": "ADD", "operate_time": "2015-07-01 10:00:00", "contract_id": "Wx15463511252015071056489715" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/PAPOrderEvent.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/PAPOrderEvent.json index 71a38b31..b657596d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/PAPOrderEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/PAPOrderEvent.json @@ -18,4 +18,4 @@ "total_fee": "1", "transaction_id": "1004400740201409030005092168", "contract_id": "Wx15463511252015071056489715" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/RefundEventRequestInfo.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/RefundEventRequestInfo.json index 88323932..0b1b4981 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/RefundEventRequestInfo.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/EventSamples/RefundEventRequestInfo.json @@ -12,4 +12,4 @@ "success_time": "2018-11-19 16:24:13", "total_fee": "3960", "transaction_id": "4200000215201811190261405420" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ConsumeDepositRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ConsumeDepositRequest.json index e4008f01..d387ba16 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ConsumeDepositRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ConsumeDepositRequest.json @@ -8,4 +8,4 @@ "total_fee": "1", "consume_fee": "0", "fee_type": "CNY" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ConsumeDepositResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ConsumeDepositResponse.json index c763e383..f071d622 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ConsumeDepositResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ConsumeDepositResponse.json @@ -11,4 +11,4 @@ "total_fee": "1", "consume_fee": "0", "fee_type": "CNY" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositFacePayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositFacePayRequest.json index 89f067f2..04ed3812 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositFacePayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositFacePayRequest.json @@ -14,4 +14,4 @@ "total_fee": "1", "sign_type": " HMAC-SHA256", "sign": "C29DB7DB1FD4136B84AE35604756362C" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositFacePayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositFacePayResponse.json index 9f668743..9a08c447 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositFacePayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositFacePayResponse.json @@ -18,4 +18,4 @@ "out_trade_no": "1415757673", "attach": "订单额外描述", "time_end": "20141111170043" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositMicroPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositMicroPayRequest.json index 232492d6..5f232bde 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositMicroPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositMicroPayRequest.json @@ -13,4 +13,4 @@ "total_fee": "1", "sign_type": " HMAC-SHA256", "sign": "C29DB7DB1FD4136B84AE35604756362C" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositMicroPayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositMicroPayResponse.json index 9f668743..9a08c447 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositMicroPayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositMicroPayResponse.json @@ -18,4 +18,4 @@ "out_trade_no": "1415757673", "attach": "订单额外描述", "time_end": "20141111170043" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositRefundRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositRefundRequest.json index c5c4d39c..dde874d3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositRefundRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositRefundRequest.json @@ -10,4 +10,4 @@ "transaction_id": "4006252001201705123297353072", "sign": "FE56DD4AA85C0EECA82C35595A69E153", "sign_type": " HMAC-SHA256" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositRefundResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositRefundResponse.json index a39c7dd9..7ba787c9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositRefundResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositRefundResponse.json @@ -11,4 +11,4 @@ "refund_id": "2008450740201411110000174436", "refund_fee": "1", "coupon_refund_fee": "0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositUnifiedOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositUnifiedOrderRequest.json index 349c287a..83e54d30 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositUnifiedOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositUnifiedOrderRequest.json @@ -13,4 +13,4 @@ "total_fee": "1", "trade_type": "JSAPI", "sign": "0CB01533B8C1EF103065174F50BCA001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositUnifiedOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositUnifiedOrderResponse.json index 347c793e..fb20dd3f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositUnifiedOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/CreateDepositUnifiedOrderResponse.json @@ -8,4 +8,4 @@ "result_code": "SUCCESS", "prepay_id": "wx201411101639507cbf6ffd8b0779950874", "trade_type": "JSAPI" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositOrderRequest.json index 4f886243..f3b9ceb6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositOrderRequest.json @@ -5,4 +5,4 @@ "transaction_id": "1008450740201411110005820873", "sign_type": " HMAC-SHA256", "sign": "FDD167FAA73459FD921B144BAF4F4CA2" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositOrderResponse.json index e0fef85b..2232fed3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositOrderResponse.json @@ -18,4 +18,4 @@ "attach": "订单额外描述", "time_end": "20141111170043", "trade_state": "SUCCESS" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositRefundRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositRefundRequest.json index 2d02bd8e..117472f7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositRefundRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositRefundRequest.json @@ -5,4 +5,4 @@ "sub_mch_id": "1900000109", "sign": "66FFB727015F450D167EF38CCC549521", "sign_type": " HMAC-SHA256" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositRefundResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositRefundResponse.json index b824e1f3..70151dfa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositRefundResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/GetDepositRefundResponse.json @@ -12,4 +12,4 @@ "return_msg": "OK", "sign": "1F2841558E233C33ABA71A961D27561C", "transaction_id": "1008450740201411110005820873" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ReverseDepositOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ReverseDepositOrderRequest.json index 7454ec9f..fb755d50 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ReverseDepositOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ReverseDepositOrderRequest.json @@ -5,4 +5,4 @@ "out_trade_no": "1415717424", "sign_type": " HMAC-SHA256", "sign": "9B2EA16C05A5CEF8E53B14D53932D012" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ReverseDepositOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ReverseDepositOrderResponse.json index 69db3868..b21eda56 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ReverseDepositOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Deposit/ReverseDepositOrderResponse.json @@ -6,4 +6,4 @@ "nonce_str": "o5bAKF3o2ypC8hwa", "sign": "6F5080EDDD196FFCDE53F786BBB93899", "result_code": "SUCCESS" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Fraud/GetRiskPublicKeyRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Fraud/GetRiskPublicKeyRequest.json index 67ba9ddf..120589a9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Fraud/GetRiskPublicKeyRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Fraud/GetRiskPublicKeyRequest.json @@ -3,4 +3,4 @@ "nonce_str": "5087e0xessefellkg", "sign": "xxxxxx", "sign_type": "MD5" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Fraud/GetRiskPublicKeyResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Fraud/GetRiskPublicKeyResponse.json index 998e7e8e..d4248466 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Fraud/GetRiskPublicKeyResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Fraud/GetRiskPublicKeyResponse.json @@ -4,4 +4,4 @@ "result_code": "SUCCESS", "mch_id": "123456", "pub_key": "-----BEGIN RSA PUBLIC KEY-----\nBASE64 ENCODED DATA\n-----END RSA PUBLIC KEY-----\n" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/CreateMerchantCustomsCustomDeclarationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/CreateMerchantCustomsCustomDeclarationRequest.json index b2e0085c..593907a1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/CreateMerchantCustomsCustomDeclarationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/CreateMerchantCustomsCustomDeclarationRequest.json @@ -11,4 +11,4 @@ "transport_fee": "0", "fee_type": "CNY", "sub_order_no": "15112496832609001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/CreateMerchantCustomsCustomDeclarationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/CreateMerchantCustomsCustomDeclarationResponse.json index 132a9acc..d4c7a72a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/CreateMerchantCustomsCustomDeclarationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/CreateMerchantCustomsCustomDeclarationResponse.json @@ -17,4 +17,4 @@ "cert_check_result": "", "verify_department": "", "verify_department_trade_id": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/QueryMerchantCustomsCustomDeclarationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/QueryMerchantCustomsCustomDeclarationRequest.json index a5d112ed..803e9173 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/QueryMerchantCustomsCustomDeclarationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/QueryMerchantCustomsCustomDeclarationRequest.json @@ -8,4 +8,4 @@ "sub_order_no": "", "sub_order_id": "", "customs": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/QueryMerchantCustomsCustomDeclarationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/QueryMerchantCustomsCustomDeclarationResponse.json index ae760565..84f644c7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/QueryMerchantCustomsCustomDeclarationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/QueryMerchantCustomsCustomDeclarationResponse.json @@ -35,4 +35,4 @@ "explanation_1": "支付单已存在并且为非退单状态1", "modify_time_1": "20091227091011", "cert_check_result_1": "UNCHECKED1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/RedeclareMerchantCustomsCustomDeclarationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/RedeclareMerchantCustomsCustomDeclarationRequest.json index df3536e6..37b0c9de 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/RedeclareMerchantCustomsCustomDeclarationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/RedeclareMerchantCustomsCustomDeclarationRequest.json @@ -5,4 +5,4 @@ "mch_id": "1900006511", "transaction_id": "4200000027201712197200279161", "sign": "5D98596798203B0B1D61445707F71F87" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/RedeclareMerchantCustomsCustomDeclarationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/RedeclareMerchantCustomsCustomDeclarationResponse.json index beff687a..751e3813 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/RedeclareMerchantCustomsCustomDeclarationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantCustoms/RedeclareMerchantCustomsCustomDeclarationResponse.json @@ -15,4 +15,4 @@ "sub_order_id": "", "modify_time": "20091227091010", "explanation": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/AddSubMerchantInstitutionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/AddSubMerchantInstitutionRequest.json index e7aabb34..04e200e3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/AddSubMerchantInstitutionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/AddSubMerchantInstitutionRequest.json @@ -20,4 +20,4 @@ "contact_phone": "+8618688886666", "contact_email": "test@163.com", "settlement_bank_number": "55558888" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/AddSubMerchantInstitutionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/AddSubMerchantInstitutionResponse.json index dde0bea3..cf1f2ebb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/AddSubMerchantInstitutionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/AddSubMerchantInstitutionResponse.json @@ -4,4 +4,4 @@ "result_code": "SUCCESS", "sign": "C380BEC2BFD727A4B6845133519F3AD6", "sub_mch_id": "013467007045764" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/GetSubMerchantInstitutionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/GetSubMerchantInstitutionRequest.json index f71d0aaa..68beb3f5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/GetSubMerchantInstitutionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/GetSubMerchantInstitutionRequest.json @@ -3,4 +3,4 @@ "mch_id": "1230000109", "sign": "C380BEC2BFD727A4B6845133519F3AD6", "sub_mch_id": "1230000109" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/GetSubMerchantInstitutionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/GetSubMerchantInstitutionResponse.json index e9ca788a..46fec039 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/GetSubMerchantInstitutionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/GetSubMerchantInstitutionResponse.json @@ -13,4 +13,4 @@ "business_category": "101", "merchant_remark": "ABC1234567", "business_website": "http://abc.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/ModifySubMerchantInstitutionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/ModifySubMerchantInstitutionRequest.json index 187a5025..2cfc8a53 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/ModifySubMerchantInstitutionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/ModifySubMerchantInstitutionRequest.json @@ -20,4 +20,4 @@ "contact_phone": "+8618688886666", "contact_email": "test@163.com", "settlement_bank_number": "55558888" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/ModifySubMerchantInstitutionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/ModifySubMerchantInstitutionResponse.json index dde0bea3..cf1f2ebb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/ModifySubMerchantInstitutionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/MerchantInstitutionSub/ModifySubMerchantInstitutionResponse.json @@ -4,4 +4,4 @@ "result_code": "SUCCESS", "sign": "C380BEC2BFD727A4B6845133519F3AD6", "sub_mch_id": "013467007045764" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/ApplyPAPPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/ApplyPAPPayRequest.json index e7ac95e8..815c74e2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/ApplyPAPPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/ApplyPAPPayRequest.json @@ -9,4 +9,4 @@ "spbill_create_ip": "8.8.8.8", "notify_url": "http://yoursite.com/wxpay.html", "contract_id": "Wx15463511252015071056489715" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/ApplyPAPPayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/ApplyPAPPayResponse.json index a0e8a5ed..30de38f9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/ApplyPAPPayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/ApplyPAPPayResponse.json @@ -6,4 +6,4 @@ "nonce_str": "IITRi8Iabbblz1Jc", "sign": "E1EE61A91C8E90F299DE6AE075D60A2D", "result_code": "SUCCESS" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/DeletePAPPayContractRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/DeletePAPPayContractRequest.json index 90144118..e7cdb906 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/DeletePAPPayContractRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/DeletePAPPayContractRequest.json @@ -6,4 +6,4 @@ "contract_code": "1234", "contract_termination_remark": "原因", "version": "1.0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/DeletePAPPayContractResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/DeletePAPPayContractResponse.json index 95b8469a..f92d76e9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/DeletePAPPayContractResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/DeletePAPPayContractResponse.json @@ -5,4 +5,4 @@ "mch_id": "10010404", "appid": "wxcbda96de0b165486", "contract_id": "100005698" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/GetPAPPayContractRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/GetPAPPayContractRequest.json index 071f3f66..74d1fe48 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/GetPAPPayContractRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/GetPAPPayContractRequest.json @@ -4,4 +4,4 @@ "appid": "wxf5b5e87a6a0fde94", "contract_id": "201509160000028648", "version": "1.0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/GetPAPPayContractResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/GetPAPPayContractResponse.json index f9df36d5..e3d5d8da 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/GetPAPPayContractResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/Contract/GetPAPPayContractResponse.json @@ -18,4 +18,4 @@ "err_code": "0", "err_code_des": " SUCCESS ", "sign": " 8FC9DACB7DDF9B48333DCCC2224E0CAC " -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/CreateContractOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/CreateContractOrderRequest.json index c6ac9c78..a98e80a5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/CreateContractOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/CreateContractOrderRequest.json @@ -18,4 +18,4 @@ "contract_display_account": "微信代扣", "contract_notify_url": "https://yoursite.com", "sign": "C380BEC2BFD727A4B6845133519F3AD6" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/CreatePAPPayPreEntrustWebRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/CreatePAPPayPreEntrustWebRequest.json index a0c3ab01..51894dff 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/CreatePAPPayPreEntrustWebRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/CreatePAPPayPreEntrustWebRequest.json @@ -10,4 +10,4 @@ "sign": "C380BEC2BFD727A4B6845133519F3AD6", "timestamp": "1414488825", "return_app": "Y" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/CreatePAPPayPreEntrustWebResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/CreatePAPPayPreEntrustWebResponse.json index a26ba116..e787abd0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/CreatePAPPayPreEntrustWebResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAP/CreatePAPPayPreEntrustWebResponse.json @@ -7,4 +7,4 @@ "nonce_str": "IITRi8Iabbblz1Jc", "sign": "E1EE61A91C8E90F299DE6AE075D60A2D", "pre_entrustweb_id": "5778aadY9nltAsZzXixCkFIGYnV2V" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/ApplyPAPPayPartnerRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/ApplyPAPPayPartnerRequest.json index 5ebc9fd9..7b07035f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/ApplyPAPPayPartnerRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/ApplyPAPPayPartnerRequest.json @@ -11,4 +11,4 @@ "spbill_create_ip": "8.8.8.8", "notify_url": "http://yoursite.com/wxpay.html", "contract_id": "Wx15463511252015071056489715" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/ApplyPAPPayPartnerResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/ApplyPAPPayPartnerResponse.json index 9f93f4a2..611c1229 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/ApplyPAPPayPartnerResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/ApplyPAPPayPartnerResponse.json @@ -7,4 +7,4 @@ "nonce_str": "IITRi8Iabbblz1Jc", "sign": "E1EE61A91C8E90F299DE6AE075D60A2D", "result_code": "SUCCESS" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/GetPAPPayPartnerContractRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/GetPAPPayPartnerContractRequest.json index badbd1e3..02b9b181 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/GetPAPPayPartnerContractRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/GetPAPPayPartnerContractRequest.json @@ -5,4 +5,4 @@ "appid": "wxf5b5e87a6a0fde94", "contract_id": "201509160000028648", "version": "1.0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/GetPAPPayPartnerContractResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/GetPAPPayPartnerContractResponse.json index 8fe0afb1..e7d29451 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/GetPAPPayPartnerContractResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/Contract/GetPAPPayPartnerContractResponse.json @@ -19,4 +19,4 @@ "err_code": "0", "err_code_des": " SUCCESS ", "sign": " 8FC9DACB7DDF9B48333DCCC2224E0CAC " -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/CreatePAPPayPartnerPreEntrustWebRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/CreatePAPPayPartnerPreEntrustWebRequest.json index 29a75dbc..b6201f41 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/CreatePAPPayPartnerPreEntrustWebRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/CreatePAPPayPartnerPreEntrustWebRequest.json @@ -12,4 +12,4 @@ "sign": "C380BEC2BFD727A4B6845133519F3AD6", "timestamp": "1414488825", "return_app": "Y" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/CreatePAPPayPartnerPreEntrustWebResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/CreatePAPPayPartnerPreEntrustWebResponse.json index 9a69f154..5b7432c1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/CreatePAPPayPartnerPreEntrustWebResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PAPPartner/CreatePAPPayPartnerPreEntrustWebResponse.json @@ -9,4 +9,4 @@ "nonce_str": "IITRi8Iabbblz1Jc", "sign": "E1EE61A91C8E90F299DE6AE075D60A2D", "pre_entrustweb_id": "5778aadY9nltAsZzXixCkFIGYnV2V" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ClosePayOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ClosePayOrderRequest.json index 422e1e6b..c08024f1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ClosePayOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ClosePayOrderRequest.json @@ -5,4 +5,4 @@ "nonce_str": "4ca93f17ddf3443ceabf72f26d64fe0e", "out_trade_no": "1415983244", "sign": "59FF1DF214B2D279A0EA7077C54DD95D" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ClosePayOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ClosePayOrderResponse.json index 097c51ed..8edd70bb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ClosePayOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ClosePayOrderResponse.json @@ -8,4 +8,4 @@ "sign": "72B321D92A7BFA0B2509F3D13C7B1631", "result_code": "SUCCESS", "result_msg": "OK" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayMicroPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayMicroPayRequest.json index e9e0b8cc..49846918 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayMicroPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayMicroPayRequest.json @@ -14,4 +14,4 @@ "total_fee": "503", "version": "1.0", "sign": "144FF79B7391FE1BD0708470B7D8A2E3" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayMicroPayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayMicroPayResponse.json index 9f668743..9a08c447 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayMicroPayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayMicroPayResponse.json @@ -18,4 +18,4 @@ "out_trade_no": "1415757673", "attach": "订单额外描述", "time_end": "20141111170043" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayRefundRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayRefundRequest.json index 987f33d6..bb9a3df5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayRefundRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayRefundRequest.json @@ -9,4 +9,4 @@ "total_fee": "1", "transaction_id": "4006252001201705123297353072", "sign": "FE56DD4AA85C0EECA82C35595A69E153" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayRefundResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayRefundResponse.json index 9759f979..71a97b4a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayRefundResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayRefundResponse.json @@ -12,4 +12,4 @@ "out_refund_no": "1415701182", "refund_id": "2008450740201411110000174436", "refund_fee": "1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayUnifiedOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayUnifiedOrderRequest.json index b0fb7544..1775e7c6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayUnifiedOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayUnifiedOrderRequest.json @@ -13,4 +13,4 @@ "total_fee": "1", "trade_type": "JSAPI", "sign": "0CB01533B8C1EF103065174F50BCA001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayUnifiedOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayUnifiedOrderResponse.json index 6689ee7b..a5b95d74 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayUnifiedOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/CreatePayUnifiedOrderResponse.json @@ -9,4 +9,4 @@ "result_code": "SUCCESS", "prepay_id": "wx201411101639507cbf6ffd8b0779950874", "trade_type": "JSAPI" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ExchangeRate/GetPayExchangeRateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ExchangeRate/GetPayExchangeRateRequest.json index c58553f7..6038737c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ExchangeRate/GetPayExchangeRateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ExchangeRate/GetPayExchangeRateRequest.json @@ -4,4 +4,4 @@ "fee_type": "CNY", "date": "20150807", "sign": "FDD167FAA73459FD921B144BAF4F4CA2" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ExchangeRate/GetPayExchangeRateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ExchangeRate/GetPayExchangeRateResponse.json index 8da6f93e..2d9543bd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ExchangeRate/GetPayExchangeRateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ExchangeRate/GetPayExchangeRateResponse.json @@ -5,4 +5,4 @@ "rate_time": "20150807", "rate": "628.1225", "sign": "FDD167FAA73459FD921B144BAF4F4CA2" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayOrderRequest.json index 531cd707..7a70e7d8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayOrderRequest.json @@ -6,4 +6,4 @@ "nonce_str": "ec2316275641faa3aacf3cc599e8730f", "transaction_id": "1008450740201411110005820873", "sign": "FDD167FAA73459FD921B144BAF4F4CA2" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayOrderResponse.json index 9f1f8a5b..485c4c1c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayOrderResponse.json @@ -23,4 +23,4 @@ "coupon_type_0": "CASH", "coupon_fee_0": 100, "detail": "{\"discount_detail\":[{\"goods_id\":\"iphone6s_16G\",\"goods_name\":\"iPhone6s 16G\",\"coupon_batch_id\":888,\"coupon_id\":666888,\"coupon_fee\":1000},{\"goods_id\":\"iphone6s_32G\",\"goods_name\":\"iPhone6s 32G\",\"coupon_batch_id\":999,\"coupon_id\":666999,\"coupon_fee\":1500}]}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayRefundRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayRefundRequest.json index 8e3b9f97..e1b0b1ff 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayRefundRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayRefundRequest.json @@ -4,4 +4,4 @@ "nonce_str": "0b9f35f484df17a732e537c37708d1d0", "out_trade_no": "1415757673", "sign": "66FFB727015F450D167EF38CCC549521" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayRefundResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayRefundResponse.json index b4e80a6e..2f794a84 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayRefundResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/GetPayRefundResponse.json @@ -12,4 +12,4 @@ "return_msg": "OK", "sign": "1F2841558E233C33ABA71A961D27561C", "transaction_id": "1008450740201411110005820873" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ReversePayOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ReversePayOrderRequest.json index 422e1e6b..c08024f1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ReversePayOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ReversePayOrderRequest.json @@ -5,4 +5,4 @@ "nonce_str": "4ca93f17ddf3443ceabf72f26d64fe0e", "out_trade_no": "1415983244", "sign": "59FF1DF214B2D279A0EA7077C54DD95D" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ReversePayOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ReversePayOrderResponse.json index 581c2897..eca81987 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ReversePayOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/ReversePayOrderResponse.json @@ -9,4 +9,4 @@ "result_code": "SUCCESS", "result_msg": "OK", "recall": "Y" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/Settlement/GetPaySettlementRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/Settlement/GetPaySettlementRequest.json index 9cf7d527..b60b8679 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/Settlement/GetPaySettlementRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/Settlement/GetPaySettlementRequest.json @@ -8,4 +8,4 @@ "date_start": "20150807", "date_end": "20150807", "sign": "FDD167FAA73459FD921B144BAF4F4CA2" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/Settlement/GetPaySettlementResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/Settlement/GetPaySettlementResponse.json index b6154ec7..62edccf0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/Settlement/GetPaySettlementResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Pay/Settlement/GetPaySettlementResponse.json @@ -17,4 +17,4 @@ "refund_fee": "0", "pay_net_fee": "1000", "poundage_fee": "0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayITIL/SubmitPayITILReportRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayITIL/SubmitPayITILReportRequest.json index 44c530da..96e538b1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayITIL/SubmitPayITILReportRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayITIL/SubmitPayITILReportRequest.json @@ -7,4 +7,4 @@ "interface_url": "https://api.mch.weixin.qq.com/pay/batchreport/micropay/total", "user_ip": "8.8.8.8", "trades": "[{\n\t\t\"out_trade_no\": \"out_trade_no_test_1\",\n\t\t\"begin_time\": \"20160602203256\",\n\t\t\"end_time\": \"20160602203257\",\n\t\t\"state\": \"OK\",\n\t\t\"err_msg\": \"\"\n\t},\n\t{\n\t\t\"out_trade_no\": \"out_trade_no_test_2\",\n\t\t\"begin_time\": \"20160602203258\",\n\t\t\"end_time\": \"20160602203259\",\n\t\t\"state\": \"FAIL\",\n\t\t\"err_msg\": \"SYSTEMERROR\"\n\t}\n]" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayITIL/SubmitPayITILReportResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayITIL/SubmitPayITILReportResponse.json index ff8382af..78a92057 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayITIL/SubmitPayITILReportResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayITIL/SubmitPayITILReportResponse.json @@ -2,4 +2,4 @@ "return_code": "SUCCESS", "return_msg": "OK", "result_code": "SUCCESS" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/GetPayMarketingTransfersRedPackInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/GetPayMarketingTransfersRedPackInfoRequest.json index a0603d47..f7ad724b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/GetPayMarketingTransfersRedPackInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/GetPayMarketingTransfersRedPackInfoRequest.json @@ -5,4 +5,4 @@ "appid": "wxe062425f740c30d8", "bill_type": "MCHT", "nonce_str": "50780e0cca98c8c8e814883e5caa672e" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/GetPayMarketingTransfersRedPackInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/GetPayMarketingTransfersRedPackInfoResponse.json index 195656be..a5523fff 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/GetPayMarketingTransfersRedPackInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/GetPayMarketingTransfersRedPackInfoResponse.json @@ -27,4 +27,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersGroupRedPackRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersGroupRedPackRequest.json index 27cd87c8..06456563 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersGroupRedPackRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersGroupRedPackRequest.json @@ -15,4 +15,4 @@ "scene_id": "PRODUCT_2", "nonce_str": "50780e0cca98c8c8e814883e5caa672e", "risk_info": "posttime%3d123123412%26clientversion%3d234134%26mobile%3d122344545%26deviceid%3dIOS" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersGroupRedPackResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersGroupRedPackResponse.json index 590a9af7..49b8ba2c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersGroupRedPackResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersGroupRedPackResponse.json @@ -9,4 +9,4 @@ "wxappid": "wx6fa7e3bab7e15415", "re_openid": "onqOjjmM1tad-3ROpncN-yUfa6uI", "total_amount": "3" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersMiniProgramRedPackRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersMiniProgramRedPackRequest.json index 38aa8532..8006e928 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersMiniProgramRedPackRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersMiniProgramRedPackRequest.json @@ -12,4 +12,4 @@ "wishing": "wishing", "wxappid": "wxd27ebc41b85ce36d", "sign": "b9dca63fe3f06bba49b6c4d6d2035b72" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersMiniProgramRedPackResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersMiniProgramRedPackResponse.json index e751c482..a5ca855e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersMiniProgramRedPackResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersMiniProgramRedPackResponse.json @@ -11,4 +11,4 @@ "total_amount": "10", "send_listid": "1000041701201609263000000204000", "package": "sendid=242e8abd163d300019b2cae74ba8e8c06e3f0e51ab84d16b3c80decd22a5b672&ver=8&sign=4110d649a5aef52dd6b95654ddf91ca7d5411ac159ace4e1a766b7d3967a1c3dfe1d256811445a4abda2d9cfa4a9b377a829258bd00d90313c6c346f2349fe5d&mchid=11475856&appid=wxd27ebc41b85ce36d" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersRedPackRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersRedPackRequest.json index e15b1c39..ac943709 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersRedPackRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersRedPackRequest.json @@ -14,4 +14,4 @@ "scene_id": "PRODUCT_2", "nonce_str": "50780e0cca98c8c8e814883e5caa672e", "risk_info": "posttime%3d123123412%26clientversion%3d234134%26mobile%3d122344545%26deviceid%3dIOS" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersRedPackResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersRedPackResponse.json index f0dfa2b3..c3020ab4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersRedPackResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersRedPack/SendPayMarketingTransfersRedPackResponse.json @@ -9,4 +9,4 @@ "wxappid": "wx6fa7e3bab7e15415", "re_openid": "onqOjjmM1tad-3ROpncN-yUfa6uI", "total_amount": "1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/CreatePayMarketingTransfersPromotionTransferRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/CreatePayMarketingTransfersPromotionTransferRequest.json index 94f20adf..784e1fa7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/CreatePayMarketingTransfersPromotionTransferRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/CreatePayMarketingTransfersPromotionTransferRequest.json @@ -10,4 +10,4 @@ "desc": "节日快乐!", "spbill_create_ip": "10.2.3.10", "sign": "C97BDBACF37622775366F38B629F45E3" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/CreatePayMarketingTransfersPromotionTransferResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/CreatePayMarketingTransfersPromotionTransferResponse.json index cf8466d9..f059c59a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/CreatePayMarketingTransfersPromotionTransferResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/CreatePayMarketingTransfersPromotionTransferResponse.json @@ -7,4 +7,4 @@ "partner_trade_no": "10013574201505191526582441", "payment_no": "1000018301201505190181489473", "payment_time": "2015-05-19 15:26:59" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/GetPayMarketingTransfersTransferInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/GetPayMarketingTransfersTransferInfoRequest.json index e369cfb7..349cb730 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/GetPayMarketingTransfersTransferInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/GetPayMarketingTransfersTransferInfoRequest.json @@ -4,4 +4,4 @@ "mch_id": "10000097", "appid": "wxe062425f740c30d8", "nonce_str": "50780e0cca98c8c8e814883e5caa672e" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/GetPayMarketingTransfersTransferInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/GetPayMarketingTransfersTransferInfoResponse.json index 5a7504c1..7c51281c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/GetPayMarketingTransfersTransferInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayMarketingTransfersTransfer/GetPayMarketingTransfersTransferInfoResponse.json @@ -12,4 +12,4 @@ "transfer_time": "2015-04-21 20:00:00", "transfer_name": "测试", "desc": "福利测试" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/CreatePayServicePartnerTransfersPayToBankRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/CreatePayServicePartnerTransfersPayToBankRequest.json index c5acf0e6..18a0ec1c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/CreatePayServicePartnerTransfersPayToBankRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/CreatePayServicePartnerTransfersPayToBankRequest.json @@ -8,4 +8,4 @@ "nonce_str": "50780e0cca98c8c8e814883e5caa672e", "partner_trade_no": "1212121221278", "sign": "1b3375482ac61d952aab56b534608971" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/CreatePayServicePartnerTransfersPayToBankResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/CreatePayServicePartnerTransfersPayToBankResponse.json index fe223290..550bfa73 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/CreatePayServicePartnerTransfersPayToBankResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/CreatePayServicePartnerTransfersPayToBankResponse.json @@ -10,4 +10,4 @@ "amount": "500", "payment_no": "10000600500852017030900000020006012", "cmms_amt": "0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/GetPayServicePartnerTransfersPayToBankInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/GetPayServicePartnerTransfersPayToBankInfoRequest.json index fec0d2bf..3b353c05 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/GetPayServicePartnerTransfersPayToBankInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/GetPayServicePartnerTransfersPayToBankInfoRequest.json @@ -3,4 +3,4 @@ "nonce_str": "50780e0cca98c8c8e814883e5caa672e", "partner_trade_no": "1212121221278", "sign": "34bf02fe5b20f117365ef6f5d0436be1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/GetPayServicePartnerTransfersPayToBankInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/GetPayServicePartnerTransfersPayToBankInfoResponse.json index a472b19f..d597005f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/GetPayServicePartnerTransfersPayToBankInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/PayServicePartnerTransfers/GetPayServicePartnerTransfersPayToBankInfoResponse.json @@ -13,4 +13,4 @@ "status": "处理中", "cmms_amt": "0", "create_time": "2017-03-09 15:04:04" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Risk/QueryRiskViolationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Risk/QueryRiskViolationRequest.json index 492bcac7..9e04a77b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Risk/QueryRiskViolationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Risk/QueryRiskViolationRequest.json @@ -5,4 +5,4 @@ "sign_type": "HMAC-SHA256", "begin_time": "2017-07-02 0:0:0", "end_time": "2017-07-29 23:59:59" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Risk/QueryRiskViolationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Risk/QueryRiskViolationResponse.json index 80a66fe7..ebd934fd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Risk/QueryRiskViolationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Risk/QueryRiskViolationResponse.json @@ -2,4 +2,4 @@ "return_code": "FAIL", "return_msg": "INVALID_REQUEST", "violation_records": "{\"total_size\":1,\"violation_records\":[{\"company_name\":\"ABC公司\",\"handle_method\":\"刷单欺诈,整改 限期 2天\",\"handle_state\":\"超时未处理\",\"illegal_type\":\"其他\",\"punish_time\":\"2018-07-24 20:12:25\",\"sub_mch_id\":\"1900012891\"}]}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/AddSubMerchantDevelopConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/AddSubMerchantDevelopConfigRequest.json index 4f851956..546e2235 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/AddSubMerchantDevelopConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/AddSubMerchantDevelopConfigRequest.json @@ -5,4 +5,4 @@ "sub_appid": "wx931386123456789e", "jsapi_path": "http://www.qq.com/wechat/", "sign": "C380BEC2BFD727A4B6845133519F3AD6" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/AddSubMerchantDevelopConfigResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/AddSubMerchantDevelopConfigResponse.json index 78870084..2e746525 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/AddSubMerchantDevelopConfigResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/AddSubMerchantDevelopConfigResponse.json @@ -5,4 +5,4 @@ "sign": "C380BEC2BFD727A4B6845133519F3AD6", "err_code": "INVALID_REQUEST", "err_code_des": "子商户号信息有误,请检查修改后重试" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/GetSubMerchantDevelopConfigRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/GetSubMerchantDevelopConfigRequest.json index 104c47f4..610d9716 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/GetSubMerchantDevelopConfigRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/GetSubMerchantDevelopConfigRequest.json @@ -3,4 +3,4 @@ "mch_id": "1451234567", "sub_mch_id": "10000101", "sign": "C380BEC2BFD727A4B6845133519F3AD6" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/GetSubMerchantDevelopConfigResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/GetSubMerchantDevelopConfigResponse.json index a68bbb0b..c3a05f83 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/GetSubMerchantDevelopConfigResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/SubMerchant/GetSubMerchantDevelopConfigResponse.json @@ -3,4 +3,4 @@ "return_msg": "签名失败", "jsapi_path_list": "{\"jsapi_path_list\":[\"http://www.qq.com/abcd/\",\"http://www.qq.com/abcdedfg/\"]}", "appid_config_list": "{\"appid_config_list\":[{\"subscribe_appid\":\"wxa9d9651ae82ec4b9\",\"sub_appid\":null},{\"subscribe_appid\":\"wxa9d9651ae82ec4b9\",\"sub_appid\":\"wxa9d9651ae82ec4b9\"}]}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Tools/ToolsAuthCodeToOpenIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Tools/ToolsAuthCodeToOpenIdRequest.json index 1f6175db..525cd4a0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Tools/ToolsAuthCodeToOpenIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Tools/ToolsAuthCodeToOpenIdRequest.json @@ -6,4 +6,4 @@ "auth_code": "", "nonce_str": "", "sign": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Tools/ToolsAuthCodeToOpenIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Tools/ToolsAuthCodeToOpenIdResponse.json index 7c3df3d9..0a0c591e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Tools/ToolsAuthCodeToOpenIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/Tools/ToolsAuthCodeToOpenIdResponse.json @@ -11,4 +11,4 @@ "err_code": "", "openid": "", "sub_openid": "" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/ApplyVehiclePartnerPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/ApplyVehiclePartnerPayRequest.json index 6f960a65..7ea85cb6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/ApplyVehiclePartnerPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/ApplyVehiclePartnerPayRequest.json @@ -13,4 +13,4 @@ "version": "3.0", "trade_scene": " PARKING", "scene_info": "{\"scene_info\":{\"start_time\":\"20170926114339\",\"end_time\":\"20170826114339\",\"charging_time\":\"3600\",\"free_time\":\"1200\",\"plate_number\":\"CB1000sdfasd\",\"car_type\":\"大型车\",\"parking_name\":\"欢乐海岸停车场\"}}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/ApplyVehiclePartnerPayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/ApplyVehiclePartnerPayResponse.json index 5ea2ad59..70c66e02 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/ApplyVehiclePartnerPayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/ApplyVehiclePartnerPayResponse.json @@ -7,4 +7,4 @@ "nonce_str": "IITRi8Iabbblz1Jc", "sign": "EE088059BBC9141264F8D14293AD6C4BB94CEA8C08AA98FBF93E262D445F8FF5", "result_code": "SUCCESS" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/GetVehiclePartnerPayStateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/GetVehiclePartnerPayStateRequest.json index cd2e30be..ad5c28c5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/GetVehiclePartnerPayStateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/GetVehiclePartnerPayStateRequest.json @@ -8,4 +8,4 @@ "sign": "EE088059BBC9141264F8D14293AD6C4BB94CEA8C08AA98FBF93E262D445F8FF5", "openid": " oUpF8uMuAJO_M2pxb1Q9zNjWeS6o", "plate_number": "粤A00000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/GetVehiclePartnerPayStateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/GetVehiclePartnerPayStateResponse.json index 21c3738e..9cebda57 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/GetVehiclePartnerPayStateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/GetVehiclePartnerPayStateResponse.json @@ -8,4 +8,4 @@ "user_state": "NORMAL", "result_code": "SUCCESS", "sign": "EE088059BBC9141264F8D14293AD6C4BB94CEA8C08AA98FBF93E262D445F8FF5" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/NotifyVehiclePartnerPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/NotifyVehiclePartnerPayRequest.json index a109242e..ebc93b03 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/NotifyVehiclePartnerPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/NotifyVehiclePartnerPayRequest.json @@ -7,4 +7,4 @@ "trade_scene": "PARKING", "sign": "EE088059BBC9141264F8D14293AD6C4BB94CEA8C08AA98FBF93E262D445F8FF5", "scene_info": "{\"scene_info\":{\"start_time\":\"20170926114339\",\"plate_number\":\"CB1000sdfasd\",\"car_type\":\"大型车\",\"parking_name\":\"欢乐海岸停车场\",\"free_time\":\"1200\"}}" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/NotifyVehiclePartnerPayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/NotifyVehiclePartnerPayResponse.json index 21c3738e..9cebda57 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/NotifyVehiclePartnerPayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/ModelSamples/VehiclePartner/NotifyVehiclePartnerPayResponse.json @@ -8,4 +8,4 @@ "user_state": "NORMAL", "result_code": "SUCCESS", "sign": "EE088059BBC9141264F8D14293AD6C4BB94CEA8C08AA98FBF93E262D445F8FF5" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestCase_EventVerificationTests.cs b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestCase_EventVerificationTests.cs index 254dbe4f..4f1c94ce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestCase_EventVerificationTests.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestCase_EventVerificationTests.cs @@ -1,5 +1,4 @@ -using System.Threading.Tasks; -using Xunit; +using Xunit; namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests { diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestCase_JsonConverterTests.cs b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestCase_JsonConverterTests.cs index afedb107..7c2369ac 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestCase_JsonConverterTests.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestCase_JsonConverterTests.cs @@ -1,5 +1,4 @@ using System; -using System.Collections.Generic; using Xunit; namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests @@ -92,4 +91,4 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests Assert.DoesNotContain("$n", unparsedJsonBySystemTextJson); } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestClients.cs b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestClients.cs index fba0559a..d6e7979c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestClients.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestClients.cs @@ -5,7 +5,7 @@ static TestClients() { Instance = new WechatTenpayClient(new WechatTenpayClientOptions() - { + { MerchantId = TestConfigs.WechatMerchantId, MerchantSecret = TestConfigs.WechatMerchantSecret, MerchantCertificateBytes = TestConfigs.WechatMerchantCertificateBytes, diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestConfigs.cs b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestConfigs.cs index 0563b181..db50ddc6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestConfigs.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/TestConfigs.cs @@ -9,7 +9,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests static TestConfigs() { // NOTICE: 请在项目根目录下按照 appsettings.json 的格式新建 appsettings.local.json 填入测试参数。 - // WARNING: 请在 DEBUG 模式下运行测试用例。 + // WARNING: 请在 DEBUG 模式下运行测试用例。 // WARNING: 敏感信息请不要提交到 git! try diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/appsettings.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/appsettings.json index 2f30945d..d115bcd5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/appsettings.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests/appsettings.json @@ -8,4 +8,4 @@ }, "WorkDirectoryForSdk": "请输入当前 SDK 项目所在的目录完整路径,如 C:\\Project\\src\\SKIT.FlurlHttpClient.Wechat.TenpayV2\\", "WorkDirectoryForTest": "请输入当前测试项目所在的目录完整路径,如 C:\\Project\\test\\SKIT.FlurlHttpClient.Wechat.TenpayV2.UnitTests\\" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/.gitignore b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/.gitignore index 63666fbf..47961c7e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/.gitignore +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/.gitignore @@ -1 +1 @@ -appsettings.local.json \ No newline at end of file +appsettings.local.json diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/BusinessCircle/MallRefundResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/BusinessCircle/MallRefundResource.json index 9794f6e5..dafe0150 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/BusinessCircle/MallRefundResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/BusinessCircle/MallRefundResource.json @@ -10,4 +10,4 @@ "refund_amount": 100, "transaction_id": "42000001217201407033233368018", "refund_id": "1217752501201407033233368999" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/BusinessCircle/MallTransactionResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/BusinessCircle/MallTransactionResource.json index 13831c9c..c4f64452 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/BusinessCircle/MallTransactionResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/BusinessCircle/MallTransactionResource.json @@ -8,4 +8,4 @@ "amount": 200, "time_end": "2020-05-20T13:29:35+08:00", "transaction_id": "1234567890" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/CombineTransactions/CombineTransactionResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/CombineTransactions/CombineTransactionResource.json index 8898b5c0..8b0c5c2a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/CombineTransactions/CombineTransactionResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/CombineTransactions/CombineTransactionResource.json @@ -26,4 +26,4 @@ "combine_payer_info": { "openid": "oUpF8uMuAJO_M2pxb1Q9zNjWeS6o" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/DiscountCard/DiscountCardResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/DiscountCard/DiscountCardResource.json index 54d0e0f7..d64e61a5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/DiscountCard/DiscountCardResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/DiscountCard/DiscountCardResource.json @@ -132,4 +132,4 @@ } ], "sharer_openid": "oUpF8uMuAJ2pxb1Q9zNjWUHsd" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKPartnerRefund/HKPartnerRefundResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKPartnerRefund/HKPartnerRefundResource.json index 37845947..01b2ca9b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKPartnerRefund/HKPartnerRefundResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKPartnerRefund/HKPartnerRefundResource.json @@ -21,4 +21,4 @@ "rate": 100000000 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKPartnerTransactions/HKPartnerTransactionResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKPartnerTransactions/HKPartnerTransactionResource.json index e38b7256..ebc25393 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKPartnerTransactions/HKPartnerTransactionResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKPartnerTransactions/HKPartnerTransactionResource.json @@ -45,4 +45,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKRefund/HKRefundResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKRefund/HKRefundResource.json index 501a6eef..45044183 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKRefund/HKRefundResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKRefund/HKRefundResource.json @@ -20,4 +20,4 @@ "rate": 100000000 } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKTransactions/HKTransactionResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKTransactions/HKTransactionResource.json index 5bf60ccb..442905bd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKTransactions/HKTransactionResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/HKTransactions/HKTransactionResource.json @@ -44,4 +44,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MarketingBusifavor/MarketingBusifavorCouponResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MarketingBusifavor/MarketingBusifavorCouponResource.json index 4cd8af80..754bd3f1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MarketingBusifavor/MarketingBusifavorCouponResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MarketingBusifavor/MarketingBusifavorCouponResource.json @@ -11,4 +11,4 @@ "transaction_id": "4200000462220200226114599", "act_code": "540358695" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MarketingFavor/MarketingFavorCouponResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MarketingFavor/MarketingFavorCouponResource.json index aeb3cc37..5bb06b93 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MarketingFavor/MarketingFavorCouponResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MarketingFavor/MarketingFavorCouponResource.json @@ -35,4 +35,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MarketingMemberCardOpen/MarketingMemberCardResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MarketingMemberCardOpen/MarketingMemberCardResource.json index 09b8e4ae..f96f4909 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MarketingMemberCardOpen/MarketingMemberCardResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MarketingMemberCardOpen/MarketingMemberCardResource.json @@ -6,4 +6,4 @@ "card_id": "paCkC00igoi8VmVpDvapnUhkN99w", "code": "289560490049", "outer_str": "sz_store_001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MerchantService/ComplaintResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MerchantService/ComplaintResource.json index c04e46d8..58441d3a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MerchantService/ComplaintResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/MerchantService/ComplaintResource.json @@ -1,4 +1,4 @@ { "complaint_id": "200201820200101080076610000", "action_type": "CREATE_COMPLAINT" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PartnerRefund/PartnerRefundResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PartnerRefund/PartnerRefundResource.json index 11924eb1..06c429a4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PartnerRefund/PartnerRefundResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PartnerRefund/PartnerRefundResource.json @@ -14,4 +14,4 @@ "payer_total": 999, "payer_refund": 999 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PartnerTransactions/PartnerTransactionResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PartnerTransactions/PartnerTransactionResource.json index 18a0c7a1..99aff493 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PartnerTransactions/PartnerTransactionResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PartnerTransactions/PartnerTransactionResource.json @@ -80,4 +80,4 @@ "scene_info": { "device_id": "013467007045764" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScorePartnerPermissions/PayScorePartnerPermissionsResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScorePartnerPermissions/PayScorePartnerPermissionsResource.json index 5dfc1ed6..b71bc53d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScorePartnerPermissions/PayScorePartnerPermissionsResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScorePartnerPermissions/PayScorePartnerPermissionsResource.json @@ -1,11 +1,11 @@ { - "appid": "wxd678efh567hg6787", - "mch_id": "1230000109", - "sub_appid": "wxd678efh567hg6786", - "sub_mch_id": "1230000109", - "service_id": "500001", - "sub_openid": "oUpF8uMuAJO_M2pxb1Q9zNjWeS6o", - "user_service_status": "USER_CLOSE_SERVICE", - "openorclose_time": "20180225112233", - "authorization_code": "4534323JKHDFE1243252" -} \ No newline at end of file + "appid": "wxd678efh567hg6787", + "mch_id": "1230000109", + "sub_appid": "wxd678efh567hg6786", + "sub_mch_id": "1230000109", + "service_id": "500001", + "sub_openid": "oUpF8uMuAJO_M2pxb1Q9zNjWeS6o", + "user_service_status": "USER_CLOSE_SERVICE", + "openorclose_time": "20180225112233", + "authorization_code": "4534323JKHDFE1243252" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScorePartnerServiceOrder/PayScorePartnerServiceOrderResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScorePartnerServiceOrder/PayScorePartnerServiceOrderResource.json index 9e2d31aa..ee0916a1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScorePartnerServiceOrder/PayScorePartnerServiceOrderResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScorePartnerServiceOrder/PayScorePartnerServiceOrderResource.json @@ -56,4 +56,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScorePermissions/PayScorePermissionsResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScorePermissions/PayScorePermissionsResource.json index 38751b1c..6aa91106 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScorePermissions/PayScorePermissionsResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScorePermissions/PayScorePermissionsResource.json @@ -1,9 +1,9 @@ { - "appid": "wxd678efh567hg6787", - "mchid": "1230000109", - "out_request_no": "1234323JKHDFE1243252", - "service_id": "500001", - "openid": "oUpF8uMuAJO_M2pxb1Q9zNjWeS6o", - "user_service_status": "USER_OPEN_SERVICE", - "openorclose_time": "20180225112233" -} \ No newline at end of file + "appid": "wxd678efh567hg6787", + "mchid": "1230000109", + "out_request_no": "1234323JKHDFE1243252", + "service_id": "500001", + "openid": "oUpF8uMuAJO_M2pxb1Q9zNjWeS6o", + "user_service_status": "USER_OPEN_SERVICE", + "openorclose_time": "20180225112233" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScoreServiceOrder/PayScoreServiceOrderResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScoreServiceOrder/PayScoreServiceOrderResource.json index dc747850..63afe2a8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScoreServiceOrder/PayScoreServiceOrderResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/PayScoreServiceOrder/PayScoreServiceOrderResource.json @@ -37,4 +37,4 @@ }, "attach": "attach", "order_id": "165461131" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/Refund/RefundResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/Refund/RefundResource.json index 8e1c9c06..e650068c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/Refund/RefundResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/Refund/RefundResource.json @@ -13,4 +13,4 @@ "payer_total": 999, "payer_refund": 999 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/Transactions/TransactionResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/Transactions/TransactionResource.json index 50f37867..ed31d2e9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/Transactions/TransactionResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/Transactions/TransactionResource.json @@ -77,4 +77,4 @@ "scene_info": { "device_id": "013467007045764" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/VehicleParking/VehicleEntranceStateChangeResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/VehicleParking/VehicleEntranceStateChangeResource.json index 7261a0dc..783d9fe9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/VehicleParking/VehicleEntranceStateChangeResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/VehicleParking/VehicleEntranceStateChangeResource.json @@ -9,4 +9,4 @@ "free_duration": 3600, "parking_state": "NORMAL", "state_update_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/VehicleParking/VehicleTransactionResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/VehicleParking/VehicleTransactionResource.json index ea6a90ce..b61343a9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/VehicleParking/VehicleTransactionResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/VehicleParking/VehicleTransactionResource.json @@ -45,4 +45,4 @@ "other_contribute": 0 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/Violation/ViolationResource.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/Violation/ViolationResource.json index 9a17d5dc..487a3a70 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/Violation/ViolationResource.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/EventSamples/Violation/ViolationResource.json @@ -7,4 +7,4 @@ "punish_description": "利用特殊行业违规经营,加重处罚", "risk_type": "ONE_YUAN_PURCHASES", "risk_description": "涉嫌一元购" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/CreateApplyForSubMerchantApplymentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/CreateApplyForSubMerchantApplymentRequest.json index 13b5b162..edda4f01 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/CreateApplyForSubMerchantApplymentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/CreateApplyForSubMerchantApplymentRequest.json @@ -1,178 +1,176 @@ { - "business_code": "1900013511_10000", - "contact_info": { - "contact_name": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg==", - "contact_id_number": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg==", - "openid": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg== 字段加密: 使用APIv3定义的方式加密", - "mobile_phone": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg==", - "contact_email": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg==" - }, - "subject_info": { - "subject_type": "SUBJECT_TYPE_ENTERPRISE", - "finance_institution": true, - "business_license_info": { - "license_copy": "47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", - "license_number": "123456789012345678", - "merchant_name": "腾讯科技有限公司", - "legal_person": "张三" - }, - "certificate_info": { - "cert_copy": "0P3ng6KTIW4-Q_l2FjKLZuhHjBWoMAjmVtCz7ScmhEIThCaV-4BBgVwtNkCHO_XXqK5dE5YdOmFJBZR9FwczhJehHhAZN6BKXQPcs-VvdSo", - "cert_type": "CERTIFICATE_TYPE_2388", - "cert_number": "111111111111", - "merchant_name": "xx公益团体", - "company_address": "广东省深圳市南山区xx路xx号", - "legal_person": "李四", - "period_begin": "2019-08-01", - "period_end": "2019-08-01" - }, - "certificate_letter_copy": "47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", - "finance_institution_info": { - "finance_type": "BANK_AGENT", - "finance_license_pics": [ - "0P3ng6KTIW4-Q_l2FjmFJBZR9FwczhJehHhAZN6BKXQPcs-VvdSo" - ] - }, - "micro_biz_info": { - "micro_biz_type": "MICRO_TYPE_STORE", - "micro_store_info": { - "micro_name": "大郎烧饼", - "micro_address_code": "440305", - "micro_address": "南山区xx大厦x层xxxx室", - "store_entrance_pic": "0P3ng6KTIW4-Q_l2FjKLZuhHFwczhJehHhAZN6BKXQPcs-VvdSo", - "micro_indoor_copy": "0P3ng6KTIW4-Q_l2FjKLZuhHjBWoMwczhJehHhAZN6BKXQPcs-VvdSo", - "store_longitude": "113.941355", - "store_latitude": "22.546245", - "address_certification": "0P3ng6KTIW4-Q_l2FjKLZuhHjBWoMAzhJehHhAZN6BKXQPcs-VvdSo" - }, - "micro_mobile_info": { - "micro_mobile_name": "早餐车", - "micro_mobile_city": "440305", - "micro_mobile_address": "无", - "micro_mobile_pics": [ - "0P3ng6KTIW4-Q_l2FjKLZuhHjBWoMAO_XXqK5dE5YdOmFJBZR9FwczhJehHhAZN6BKXQPcs-VvdSo" - ] - }, - "micro_online_info": { - "micro_online_store": "李三服装店", - "micro_ec_name": "XX购物平台", - "micro_qrcode": "https://www.qq.com", - "micro_link": "https://www.qq.com" - } - }, - "identity_info": { - "id_holder_type": "LEGAL", - "id_doc_type": "IDENTIFICATION_TYPE_IDCARD", - "authorize_letter_copy": "47ZC6GC-vnrbEny_Ie_An5-tCpqxucuxi-vByf3Gjm7KEIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", - "id_card_info": { - "id_card_copy": "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ", - "id_card_national": "47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", - "id_card_name": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg==", - "id_card_number": "AOZdYGISxo4y44/UgZ69bdu9X+tfMUJ9dl+LetjM45/zMbrYu+wWZ8gn4CTdo+D/m9MrPg+V4sm73oxqdQu/hj7aWyDl4GQtPXVdaztB9jVbVZh3QFzV+BEmytMNQp9dt1uWJktlfdDdLR3AMWyMB377xd+m9bSr/ioDTzagEcGe+vLYiKrzcroQv3OR0p3ppFYoQ3IfYeU/04S4t9rNFL+kyblK2FCCqQ11NdbbHoCrJc7NV4oASq6ZFonjTtgjjgKsadIKHXtb3JZKGZjduGdtkRJJp0/0eow96uY1Pk7Rq79Jtt7+I8juwEc4P4TG5xzchG/5IL9DBd+Z0zZXkw==", - "card_period_begin": "2026-06-06", - "card_period_end": "2026-06-06" - }, - "id_doc_info": { - "id_doc_copy": "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ", - "id_doc_name": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg==", - "id_doc_number": "AOZdYGISxo4y44/UgZ69bdu9X+tfMUJ9dl+LetjM45/zMbrYu+wWZ8gn4CTdo+D/m9MrPg+V4sm73oxqdQu/hj7aWyDl4GQtPXVdaztB9jVbVZh3QFzV+BEmytMNQp9dt1uWJktlfdDdLR3AMWyMB377xd+m9bSr/ioDTzagEcGe+vLYiKrzcroQv3OR0p3ppFYoQ3IfYeU/04S4t9rNFL+kyblK2FCCqQ11NdbbHoCrJc7NV4oASq6ZFonjTtgjjgKsadIKHXtb3JZKGZjduGdtkRJJp0/0eow96uY1Pk7Rq79Jtt7+I8juwEc4P4TG5xzchG/5IL9DBd+Z0zZXkw==", - "doc_period_begin": "2019-06-06", - "doc_period_end": "2026-06-06" - }, - "owner": true - }, - "ubo_info": { - "id_type": "IDENTIFICATION_TYPE_IDCARD", - "id_card_copy": "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ", - "id_card_national": "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ", - "id_doc_copy": "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ", - "name": "李四", - "id_number": "AOZdYGISxo4y44/UgZ69bdu9X+tfMUJ9dl+LetjM45/zMbrYu+wWZ8gn4CTdo+D/m9MrPg+V4sm73oxqdQu/hj7aWyDl4GQtPXVdaztB9jVbVZh3QFzV+BEmytMNQp9dt1uWJktlfdDdLR3AMWyMB377xd+m9bSr/ioDTzagEcGe+vLYiKrzcroQv3OR0p3ppFYoQ3IfYeU/04S4t9rNFL+kyblK2FCCqQ11NdbbHoCrJc7NV4oASq6ZFonjTtgjjgKsadIKHXtb3JZKGZjduGdtkRJJp0/0eow96uY1Pk7Rq79Jtt7+I8juwEc4P4TG5xzchG/5IL9DBd+Z0zZXkw==", - "id_period_begin": "2019-06-06", - "id_period_end": "2026-06-06" - } - }, - "business_info": { - "merchant_shortname": "张三餐饮店", - "service_phone": "0758XXXXX", - "sales_info": { - "sales_scenes_type": [ - "SALES_SCENES_STORE", - "SALES_SCENES_MP", - "SALES_SCENES_MINI_PROGRAM", - "SALES_SCENES_WEB", - "SALES_SCENES_APP", - "SALES_SCENES_WEWORK" - ], - "biz_store_info": { - "biz_store_name": "大郎烧饼", - "biz_address_code": "440305", - "biz_store_address": "南山区xx大厦x层xxxx室", - "store_entrance_pic": [ - "0P3ng6KTIW4-Q_l2FjKLZuhHjBWoMAjmVtCz7ScmhEIThCaV-4BBgVwtNkCHO_XXqK5dE5YdOmFJBZR9FwczhJehHhAZN6BKXQPcs-VvdSo" - ], - "indoor_pic": [ - "0P3ng6KTIW4-Q_l2FjKLZuhHjBWoMAjmVtCz7ScmhEIThCaV-4BBgVwtNkCHO_XXqK5dE5YdOmFJBZR9FwczhJehHhAZN6BKXQPcs-VvdSo" - ], - "biz_sub_appid": "wx1234567890123456" - }, - "mp_info": { - "mp_appid": "wx1234567890123456", - "mp_sub_appid": "wx1234567890123456", - "mp_pics": [] - }, - "mini_program_info": { - "mini_program_appid": "wx1234567890123456", - "mini_program_sub_appid": "wx1234567890123456", - "mini_program_pics": [] - }, - "app_info": { - "app_appid": "wx1234567890123456", - "app_sub_appid": "wx1234567890123456", - "app_pics": [] - }, - "web_info": { - "domain": "http://www.qq.com", - "web_authorisation": "47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", - "web_appid": "wx1234567890123456" - }, - "wework_info": { - "corp_id": "wx1234567890123456", - "sub_corp_id": "wx1234567890123456", - "wework_pics": [] - } - } - }, - "settlement_info": { - "settlement_id": "719", - "qualification_type": "餐饮", - "qualifications": [], - "activities_id": "716", - "activities_rate": "0.6%", - "activities_additions": [] - }, - "bank_account_info": { - "bank_account_type": "BANK_ACCOUNT_TYPE_CORPORATE", - "account_name": "AOZdYGISxo4y44/UgZ69bdu9X+tfMUJ9dl+LetjM45/zMbrYu+wWZ8gn4CTdo+D/m9MrPg+V4sm73oxqdQu/hj7aWyDl4GQtPXVdaztB9jVbVZh3QFzV+BEmytMNQp9dt1uWJktlfdDdLR3AMWyMB377xd+m9bSr/ioDTzagEcGe+vLYiKrzcroQv3OR0p3ppFYoQ3IfYeU/04S4t9rNFL+kyblK2FCCqQ11NdbbHoCrJc7NV4oASq6ZFonjTtgjjgKsadIKHXtb3JZKGZjduGdtkRJJp0/0eow96uY1Pk7Rq79Jtt7+I8juwEc4P4TG5xzchG/5IL9DBd+Z0zZXkw==", - "account_bank": "工商银行", - "bank_address_code": "110000", - "bank_branch_id": "402713354941", - "bank_name": "施秉县农村信用合作联社城关信用社", - "account_number": "d+xT+MQCvrLHUVDWv/8MR/dB7TkXM2YYZlokmXzFsWs35NXUot7C0NcxIrUF5FnxqCJHkNgKtxa6RxEYyba1+VBRLnqKG2fSy/Y5qDN08Ej9zHCwJjq52Wg1VG8MRugli9YMI1fI83KGBxhuXyemgS/hqFKsfYGiOkJqjTUpgY5VqjtL2N4l4z11T0ECB/aSyVXUysOFGLVfSrUxMPZy6jWWYGvT1+4P633f+R+ki1gT4WF/2KxZOYmli385ZgVhcR30mr4/G3HBcxi13zp7FnEeOsLlvBmI1PHN4C7Rsu3WL8sPndjXTd75kPkyjqnoMRrEEaYQE8ZRGYoeorwC+w==", - "account_cert_info": { - "settlement_cert_pic": "47ZC6GC-vnrbEny_Ie_An5-tCpqxucuxi-vByf3Gjm7KEIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", - "relation_cert_pic": "47ZC6GC-vnrbEny_Ie_An5-tCpqxucuxi-vByf3Gjm7KEIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", - "other_cert_pics": [ - "47ZC6GC-vnrbEny_Ie_An5-tCpqxucuxi-vByf3Gjm7KEIUv0OF4wFNIO4kqg05InE4d2I6_H7I4" - ] - } - }, - "addition_info": { - "legal_person_commitment": "47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", - "legal_person_video": "47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", - "business_addition_pics": [ - "47ZC6GC-NIO4kqg05InE4d2I6_H7I4" - ], - "business_addition_msg": "特殊情况,说明原因" - } -} \ No newline at end of file + "business_code": "1900013511_10000", + "contact_info": { + "contact_name": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg==", + "contact_id_number": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg==", + "openid": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg== 字段加密: 使用APIv3定义的方式加密", + "mobile_phone": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg==", + "contact_email": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg==" + }, + "subject_info": { + "subject_type": "SUBJECT_TYPE_ENTERPRISE", + "finance_institution": true, + "business_license_info": { + "license_copy": "47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", + "license_number": "123456789012345678", + "merchant_name": "腾讯科技有限公司", + "legal_person": "张三" + }, + "certificate_info": { + "cert_copy": "0P3ng6KTIW4-Q_l2FjKLZuhHjBWoMAjmVtCz7ScmhEIThCaV-4BBgVwtNkCHO_XXqK5dE5YdOmFJBZR9FwczhJehHhAZN6BKXQPcs-VvdSo", + "cert_type": "CERTIFICATE_TYPE_2388", + "cert_number": "111111111111", + "merchant_name": "xx公益团体", + "company_address": "广东省深圳市南山区xx路xx号", + "legal_person": "李四", + "period_begin": "2019-08-01", + "period_end": "2019-08-01" + }, + "certificate_letter_copy": "47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", + "finance_institution_info": { + "finance_type": "BANK_AGENT", + "finance_license_pics": [ + "0P3ng6KTIW4-Q_l2FjmFJBZR9FwczhJehHhAZN6BKXQPcs-VvdSo" + ] + }, + "micro_biz_info": { + "micro_biz_type": "MICRO_TYPE_STORE", + "micro_store_info": { + "micro_name": "大郎烧饼", + "micro_address_code": "440305", + "micro_address": "南山区xx大厦x层xxxx室", + "store_entrance_pic": "0P3ng6KTIW4-Q_l2FjKLZuhHFwczhJehHhAZN6BKXQPcs-VvdSo", + "micro_indoor_copy": "0P3ng6KTIW4-Q_l2FjKLZuhHjBWoMwczhJehHhAZN6BKXQPcs-VvdSo", + "store_longitude": "113.941355", + "store_latitude": "22.546245", + "address_certification": "0P3ng6KTIW4-Q_l2FjKLZuhHjBWoMAzhJehHhAZN6BKXQPcs-VvdSo" + }, + "micro_mobile_info": { + "micro_mobile_name": "早餐车", + "micro_mobile_city": "440305", + "micro_mobile_address": "无", + "micro_mobile_pics": [ + "0P3ng6KTIW4-Q_l2FjKLZuhHjBWoMAO_XXqK5dE5YdOmFJBZR9FwczhJehHhAZN6BKXQPcs-VvdSo" + ] + }, + "micro_online_info": { + "micro_online_store": "李三服装店", + "micro_ec_name": "XX购物平台", + "micro_qrcode": "https://www.qq.com", + "micro_link": "https://www.qq.com" + } + }, + "identity_info": { + "id_holder_type": "LEGAL", + "id_doc_type": "IDENTIFICATION_TYPE_IDCARD", + "authorize_letter_copy": "47ZC6GC-vnrbEny_Ie_An5-tCpqxucuxi-vByf3Gjm7KEIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", + "id_card_info": { + "id_card_copy": "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ", + "id_card_national": "47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", + "id_card_name": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg==", + "id_card_number": "AOZdYGISxo4y44/UgZ69bdu9X+tfMUJ9dl+LetjM45/zMbrYu+wWZ8gn4CTdo+D/m9MrPg+V4sm73oxqdQu/hj7aWyDl4GQtPXVdaztB9jVbVZh3QFzV+BEmytMNQp9dt1uWJktlfdDdLR3AMWyMB377xd+m9bSr/ioDTzagEcGe+vLYiKrzcroQv3OR0p3ppFYoQ3IfYeU/04S4t9rNFL+kyblK2FCCqQ11NdbbHoCrJc7NV4oASq6ZFonjTtgjjgKsadIKHXtb3JZKGZjduGdtkRJJp0/0eow96uY1Pk7Rq79Jtt7+I8juwEc4P4TG5xzchG/5IL9DBd+Z0zZXkw==", + "card_period_begin": "2026-06-06", + "card_period_end": "2026-06-06" + }, + "id_doc_info": { + "id_doc_copy": "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ", + "id_doc_name": "pVd1HJ6zyvPedzGaV+X3qtmrq9bb9tPROvwia4ibL+F6mfjbzQIzfb3HHLEjZ4YiR/cJiCrZxnAqi+pjeKIEdkwzXRAI7FUhrfPK3SNjaBTEu9GmsugMIA9r3x887Q+ODuC8HH2nzAn7NGpE/e3yiHgWhk0ps5k5DP/2qIdGdONoDzZelrxCl/NWWNUyB93K9F+jC1JX2IMttdY+aQ6zBlw0xnOiNW6Hzy7UtC+xriudjD5APomty7/mYNxLMpRSvWKIjOv/69bDnuC4EL5Kz4jBHLiCyOb+tI0m2qhZ9evAM+Jv1z0NVa8MRtelw/wDa4SzfeespQO/0kjiwfqdfg==", + "id_doc_number": "AOZdYGISxo4y44/UgZ69bdu9X+tfMUJ9dl+LetjM45/zMbrYu+wWZ8gn4CTdo+D/m9MrPg+V4sm73oxqdQu/hj7aWyDl4GQtPXVdaztB9jVbVZh3QFzV+BEmytMNQp9dt1uWJktlfdDdLR3AMWyMB377xd+m9bSr/ioDTzagEcGe+vLYiKrzcroQv3OR0p3ppFYoQ3IfYeU/04S4t9rNFL+kyblK2FCCqQ11NdbbHoCrJc7NV4oASq6ZFonjTtgjjgKsadIKHXtb3JZKGZjduGdtkRJJp0/0eow96uY1Pk7Rq79Jtt7+I8juwEc4P4TG5xzchG/5IL9DBd+Z0zZXkw==", + "doc_period_begin": "2019-06-06", + "doc_period_end": "2026-06-06" + }, + "owner": true + }, + "ubo_info": { + "id_type": "IDENTIFICATION_TYPE_IDCARD", + "id_card_copy": "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ", + "id_card_national": "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ", + "id_doc_copy": "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ", + "name": "李四", + "id_number": "AOZdYGISxo4y44/UgZ69bdu9X+tfMUJ9dl+LetjM45/zMbrYu+wWZ8gn4CTdo+D/m9MrPg+V4sm73oxqdQu/hj7aWyDl4GQtPXVdaztB9jVbVZh3QFzV+BEmytMNQp9dt1uWJktlfdDdLR3AMWyMB377xd+m9bSr/ioDTzagEcGe+vLYiKrzcroQv3OR0p3ppFYoQ3IfYeU/04S4t9rNFL+kyblK2FCCqQ11NdbbHoCrJc7NV4oASq6ZFonjTtgjjgKsadIKHXtb3JZKGZjduGdtkRJJp0/0eow96uY1Pk7Rq79Jtt7+I8juwEc4P4TG5xzchG/5IL9DBd+Z0zZXkw==", + "id_period_begin": "2019-06-06", + "id_period_end": "2026-06-06" + } + }, + "business_info": { + "merchant_shortname": "张三餐饮店", + "service_phone": "0758XXXXX", + "sales_info": { + "sales_scenes_type": [ + "SALES_SCENES_STORE", + "SALES_SCENES_MP", + "SALES_SCENES_MINI_PROGRAM", + "SALES_SCENES_WEB", + "SALES_SCENES_APP", + "SALES_SCENES_WEWORK" + ], + "biz_store_info": { + "biz_store_name": "大郎烧饼", + "biz_address_code": "440305", + "biz_store_address": "南山区xx大厦x层xxxx室", + "store_entrance_pic": [ + "0P3ng6KTIW4-Q_l2FjKLZuhHjBWoMAjmVtCz7ScmhEIThCaV-4BBgVwtNkCHO_XXqK5dE5YdOmFJBZR9FwczhJehHhAZN6BKXQPcs-VvdSo" + ], + "indoor_pic": [ + "0P3ng6KTIW4-Q_l2FjKLZuhHjBWoMAjmVtCz7ScmhEIThCaV-4BBgVwtNkCHO_XXqK5dE5YdOmFJBZR9FwczhJehHhAZN6BKXQPcs-VvdSo" + ], + "biz_sub_appid": "wx1234567890123456" + }, + "mp_info": { + "mp_appid": "wx1234567890123456", + "mp_sub_appid": "wx1234567890123456", + "mp_pics": [] + }, + "mini_program_info": { + "mini_program_appid": "wx1234567890123456", + "mini_program_sub_appid": "wx1234567890123456", + "mini_program_pics": [] + }, + "app_info": { + "app_appid": "wx1234567890123456", + "app_sub_appid": "wx1234567890123456", + "app_pics": [] + }, + "web_info": { + "domain": "http://www.qq.com", + "web_authorisation": "47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", + "web_appid": "wx1234567890123456" + }, + "wework_info": { + "corp_id": "wx1234567890123456", + "sub_corp_id": "wx1234567890123456", + "wework_pics": [] + } + } + }, + "settlement_info": { + "settlement_id": "719", + "qualification_type": "餐饮", + "qualifications": [], + "activities_id": "716", + "activities_rate": "0.6%", + "activities_additions": [] + }, + "bank_account_info": { + "bank_account_type": "BANK_ACCOUNT_TYPE_CORPORATE", + "account_name": "AOZdYGISxo4y44/UgZ69bdu9X+tfMUJ9dl+LetjM45/zMbrYu+wWZ8gn4CTdo+D/m9MrPg+V4sm73oxqdQu/hj7aWyDl4GQtPXVdaztB9jVbVZh3QFzV+BEmytMNQp9dt1uWJktlfdDdLR3AMWyMB377xd+m9bSr/ioDTzagEcGe+vLYiKrzcroQv3OR0p3ppFYoQ3IfYeU/04S4t9rNFL+kyblK2FCCqQ11NdbbHoCrJc7NV4oASq6ZFonjTtgjjgKsadIKHXtb3JZKGZjduGdtkRJJp0/0eow96uY1Pk7Rq79Jtt7+I8juwEc4P4TG5xzchG/5IL9DBd+Z0zZXkw==", + "account_bank": "工商银行", + "bank_address_code": "110000", + "bank_branch_id": "402713354941", + "bank_name": "施秉县农村信用合作联社城关信用社", + "account_number": "d+xT+MQCvrLHUVDWv/8MR/dB7TkXM2YYZlokmXzFsWs35NXUot7C0NcxIrUF5FnxqCJHkNgKtxa6RxEYyba1+VBRLnqKG2fSy/Y5qDN08Ej9zHCwJjq52Wg1VG8MRugli9YMI1fI83KGBxhuXyemgS/hqFKsfYGiOkJqjTUpgY5VqjtL2N4l4z11T0ECB/aSyVXUysOFGLVfSrUxMPZy6jWWYGvT1+4P633f+R+ki1gT4WF/2KxZOYmli385ZgVhcR30mr4/G3HBcxi13zp7FnEeOsLlvBmI1PHN4C7Rsu3WL8sPndjXTd75kPkyjqnoMRrEEaYQE8ZRGYoeorwC+w==", + "account_cert_info": { + "settlement_cert_pic": "47ZC6GC-vnrbEny_Ie_An5-tCpqxucuxi-vByf3Gjm7KEIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", + "relation_cert_pic": "47ZC6GC-vnrbEny_Ie_An5-tCpqxucuxi-vByf3Gjm7KEIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", + "other_cert_pics": [ + "47ZC6GC-vnrbEny_Ie_An5-tCpqxucuxi-vByf3Gjm7KEIUv0OF4wFNIO4kqg05InE4d2I6_H7I4" + ] + } + }, + "addition_info": { + "legal_person_commitment": "47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", + "legal_person_video": "47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4", + "business_addition_pics": ["47ZC6GC-NIO4kqg05InE4d2I6_H7I4"], + "business_addition_msg": "特殊情况,说明原因" + } +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/CreateApplyForSubMerchantApplymentResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/CreateApplyForSubMerchantApplymentResponse.json index dc6cb641..afab5445 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/CreateApplyForSubMerchantApplymentResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/CreateApplyForSubMerchantApplymentResponse.json @@ -1,3 +1,3 @@ { - "applyment_id": 2000002124775691 -} \ No newline at end of file + "applyment_id": 2000002124775691 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/GetApplyForSubMerchantApplymentByApplymentIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/GetApplyForSubMerchantApplymentByApplymentIdResponse.json index ebb18cd6..f2ae89fa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/GetApplyForSubMerchantApplymentByApplymentIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/GetApplyForSubMerchantApplymentByApplymentIdResponse.json @@ -12,4 +12,4 @@ "reject_reason": "身份证背面识别失败,请上传更清晰的身份证图片。" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/GetApplyForSubMerchantApplymentByBusinessCodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/GetApplyForSubMerchantApplymentByBusinessCodeResponse.json index ebb18cd6..f2ae89fa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/GetApplyForSubMerchantApplymentByBusinessCodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/GetApplyForSubMerchantApplymentByBusinessCodeResponse.json @@ -12,4 +12,4 @@ "reject_reason": "身份证背面识别失败,请上传更清晰的身份证图片。" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/Settlement/GetApplyForSubMerchantSettlementResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/Settlement/GetApplyForSubMerchantSettlementResponse.json index 74919eed..c4b33846 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/Settlement/GetApplyForSubMerchantSettlementResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/Settlement/GetApplyForSubMerchantSettlementResponse.json @@ -5,4 +5,4 @@ "bank_branch_id": "402713354941", "account_number": "***************8678", "verify_result": "VERIFY_SUCCESS" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/Settlement/ModifyApplyForSubMerchantSettlementRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/Settlement/ModifyApplyForSubMerchantSettlementRequest.json index d4246ad3..8015b720 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/Settlement/ModifyApplyForSubMerchantSettlementRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4SubMerchant/Settlement/ModifyApplyForSubMerchantSettlementRequest.json @@ -5,4 +5,4 @@ "bank_name": "施秉县农村信用合作联社城关信用社", "bank_branch_id": "402713354941", "account_number": "d+xT+MQCvrLHUVDWv/8MR/dB7TkXM2YYZlokmXzFsWs35NXUot7C0NcxIrUF5FnxqCJHkNgKtxa6RxEYyba1+VBRLnqKG2fSy/Y5qDN08Ej9zHCwJjq52Wg1VG8MRugli9YMI1fI83KGBxhuXyemgS/hqFKsfYGiOkJqjTUpgY5VqjtL2N4l4z11T0ECB/aSyVXUysOFGLVfSrUxMPZy6jWWYGvT1+4P633f+R+ki1gT4WF/2KxZOYmli385ZgVhcR30mr4/G3HBcxi13zp7FnEeOsLlvBmI1PHN4C7Rsu3WL8sPndjXTd75kPkyjqnoMRrEEaYQE8ZRGYoeorwC+w==" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/CreateApplyForSubjectApplymentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/CreateApplyForSubjectApplymentRequest.json index 45715d9c..03679136 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/CreateApplyForSubjectApplymentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/CreateApplyForSubjectApplymentRequest.json @@ -71,8 +71,6 @@ "ubo_id_card_valid_date": "[\"2017-10-28\",\"2037-10-28\"]" }, "addition_info": { - "confirm_mchid_list": [ - "20001113" - ] + "confirm_mchid_list": ["20001113"] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/CreateApplyForSubjectApplymentResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/CreateApplyForSubjectApplymentResponse.json index 2eb0f392..b2290bc1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/CreateApplyForSubjectApplymentResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/CreateApplyForSubjectApplymentResponse.json @@ -1,3 +1,3 @@ { "applyment_id": 20000000011111 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/GetApplyForSubjectApplymentByApplymentIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/GetApplyForSubjectApplymentByApplymentIdResponse.json index b9f83382..57c66247 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/GetApplyForSubjectApplymentByApplymentIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/GetApplyForSubjectApplymentByApplymentIdResponse.json @@ -3,4 +3,4 @@ "qrcode_data": "cGFnZXMvYXBwbHkvYXBpdzQvd2VsY29tZS93ZWxjb21lP2FwcGx5bWVudF9pZD14eHg=", "reject_param": "merchant_name", "reject_reason": "公司名称与工商局登记不一致" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/GetApplyForSubjectApplymentByBusinessCodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/GetApplyForSubjectApplymentByBusinessCodeResponse.json index b9f83382..57c66247 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/GetApplyForSubjectApplymentByBusinessCodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/GetApplyForSubjectApplymentByBusinessCodeResponse.json @@ -3,4 +3,4 @@ "qrcode_data": "cGFnZXMvYXBwbHkvYXBpdzQvd2VsY29tZS93ZWxjb21lP2FwcGx5bWVudF9pZD14eHg=", "reject_param": "merchant_name", "reject_reason": "公司名称与工商局登记不一致" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/MerchantsState/GetApplyForSubjectApplymentMerchantStateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/MerchantsState/GetApplyForSubjectApplymentMerchantStateResponse.json index 378bad7b..d319cfe3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/MerchantsState/GetApplyForSubjectApplymentMerchantStateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Apply4Subject/MerchantsState/GetApplyForSubjectApplymentMerchantStateResponse.json @@ -1,3 +1,3 @@ { "authorize_state": "AUTHORIZE_STATE_AUTHORIZED" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Bill/GetBillFundflowBillResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Bill/GetBillFundflowBillResponse.json index f82c3e75..2efe53e6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Bill/GetBillFundflowBillResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Bill/GetBillFundflowBillResponse.json @@ -2,4 +2,4 @@ "download_url": "https://api.mch.weixin.qq.com/v3/billdownload/file?token=E-bFy6HgY_ffEOQutOpiFXX-SHI3EWhUQtPKAUd1iDGBGUA6Bfbzmcc-CWdJE23-", "hash_type": "SHA1", "hash_value": "8257296d67cd621531ddb3f6d3ed10d3ea45dd09" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Bill/GetBillSubMerchantFundflowBillResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Bill/GetBillSubMerchantFundflowBillResponse.json index a14cc94d..b2b15de1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Bill/GetBillSubMerchantFundflowBillResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Bill/GetBillSubMerchantFundflowBillResponse.json @@ -10,4 +10,4 @@ "nonce": "a8607ef79034c49c" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Bill/GetBillTradeBillResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Bill/GetBillTradeBillResponse.json index f82c3e75..2efe53e6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Bill/GetBillTradeBillResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Bill/GetBillTradeBillResponse.json @@ -2,4 +2,4 @@ "download_url": "https://api.mch.weixin.qq.com/v3/billdownload/file?token=E-bFy6HgY_ffEOQutOpiFXX-SHI3EWhUQtPKAUd1iDGBGUA6Bfbzmcc-CWdJE23-", "hash_type": "SHA1", "hash_value": "8257296d67cd621531ddb3f6d3ed10d3ea45dd09" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Amounts/GetBrandProfitSharingOrderAmountsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Amounts/GetBrandProfitSharingOrderAmountsResponse.json index f3b69114..2b23c0ae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Amounts/GetBrandProfitSharingOrderAmountsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Amounts/GetBrandProfitSharingOrderAmountsResponse.json @@ -1,4 +1,4 @@ { "transaction_id": "4208450740201411110007820472", "unsplit_amount": 1000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/BrandConfigs/GetBrandProfitSharingBrandConfigsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/BrandConfigs/GetBrandProfitSharingBrandConfigsResponse.json index 8c02bf8c..54ccf611 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/BrandConfigs/GetBrandProfitSharingBrandConfigsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/BrandConfigs/GetBrandProfitSharingBrandConfigsResponse.json @@ -1,4 +1,4 @@ { "brand_mchid": "1900000109", "max_ratio": 2000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingOrderRequest.json index 9a35e796..56505634 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingOrderRequest.json @@ -14,4 +14,4 @@ } ], "finish": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingOrderResponse.json index a98acb07..d27befe6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingOrderResponse.json @@ -4,4 +4,4 @@ "transaction_id": "4208450740201411110007820472", "out_order_no": "P20150806125346", "order_id": "6754760740201411110007865434" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingReturnOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingReturnOrderRequest.json index fa366b7b..edb07b8c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingReturnOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingReturnOrderRequest.json @@ -5,4 +5,4 @@ "return_mchid": "86693852", "amount": 10, "description": "分账回退" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingReturnOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingReturnOrderResponse.json index 83138f73..7f29ba1d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingReturnOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/CreateBrandProfitSharingReturnOrderResponse.json @@ -9,4 +9,4 @@ "result": "SUCCESS", "fail_reason": "TIME_OUT_CLOSED", "finish_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/GetBrandProfitSharingOrderByOutOrderNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/GetBrandProfitSharingOrderByOutOrderNumberResponse.json index f39a118b..c3448bad 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/GetBrandProfitSharingOrderByOutOrderNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/GetBrandProfitSharingOrderByOutOrderNumberResponse.json @@ -26,4 +26,4 @@ "finish_amount": 100, "order_id": "3008450740201411110007820472", "status": "FINISHED" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/GetBrandProfitSharingReturnOrderByOrderIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/GetBrandProfitSharingReturnOrderByOrderIdResponse.json index 83138f73..7f29ba1d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/GetBrandProfitSharingReturnOrderByOrderIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/GetBrandProfitSharingReturnOrderByOrderIdResponse.json @@ -9,4 +9,4 @@ "result": "SUCCESS", "fail_reason": "TIME_OUT_CLOSED", "finish_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/GetBrandProfitSharingReturnOrderByOutOrderNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/GetBrandProfitSharingReturnOrderByOutOrderNumberResponse.json index 83138f73..7f29ba1d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/GetBrandProfitSharingReturnOrderByOutOrderNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/GetBrandProfitSharingReturnOrderByOutOrderNumberResponse.json @@ -9,4 +9,4 @@ "result": "SUCCESS", "fail_reason": "TIME_OUT_CLOSED", "finish_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/AddBrandProfitSharingReceiverRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/AddBrandProfitSharingReceiverRequest.json index 67dc3bfb..18cffce7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/AddBrandProfitSharingReceiverRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/AddBrandProfitSharingReceiverRequest.json @@ -6,4 +6,4 @@ "account": "1900000109", "name": "张三网络公司", "relation_type": "SUPPLIER" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/AddBrandProfitSharingReceiverResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/AddBrandProfitSharingReceiverResponse.json index 4191a7d3..56b86873 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/AddBrandProfitSharingReceiverResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/AddBrandProfitSharingReceiverResponse.json @@ -2,4 +2,4 @@ "brand_mchid": "1900000108", "type": "MERCHANT_ID", "account": "1900000109" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/DeleteBrandProfitSharingReceiverRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/DeleteBrandProfitSharingReceiverRequest.json index a744ed5d..e47522e3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/DeleteBrandProfitSharingReceiverRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/DeleteBrandProfitSharingReceiverRequest.json @@ -4,4 +4,4 @@ "sub_appid": "wx8888888888888889", "type": "MERCHANT_ID", "account": "1900000109" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/DeleteBrandProfitSharingReceiverResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/DeleteBrandProfitSharingReceiverResponse.json index 4191a7d3..56b86873 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/DeleteBrandProfitSharingReceiverResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/Receivers/DeleteBrandProfitSharingReceiverResponse.json @@ -2,4 +2,4 @@ "brand_mchid": "1900000108", "type": "MERCHANT_ID", "account": "1900000109" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/SetBrandProfitSharingOrderFinishRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/SetBrandProfitSharingOrderFinishRequest.json index 2c8c75d6..46d3bb78 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/SetBrandProfitSharingOrderFinishRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/SetBrandProfitSharingOrderFinishRequest.json @@ -3,4 +3,4 @@ "transaction_id": "4208450740201411110007820472", "out_order_no": "P20150806125346", "description": "分账完结" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/SetBrandProfitSharingOrderFinishResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/SetBrandProfitSharingOrderFinishResponse.json index 9acb975e..2da64591 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/SetBrandProfitSharingOrderFinishResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BrandProfitSharing/SetBrandProfitSharingOrderFinishResponse.json @@ -3,4 +3,4 @@ "transaction_id": "4208450740201411110007820472", "out_order_no": "P20150806125346", "order_id": "3008450740201411110007820472" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BusinessCircle/GetBusinessCircleUserAuthorizationByOpenIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BusinessCircle/GetBusinessCircleUserAuthorizationByOpenIdResponse.json index 439afcd1..d6c76b37 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BusinessCircle/GetBusinessCircleUserAuthorizationByOpenIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BusinessCircle/GetBusinessCircleUserAuthorizationByOpenIdResponse.json @@ -2,4 +2,4 @@ "openid": "oWmnN4xxxxxxxxxxe92NHIGf1xd8", "authorize_state": "AUTHORIZED", "authorize_time": "2020-05-20T13:29:35+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BusinessCircle/NotifyBusinessCirclePointsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BusinessCircle/NotifyBusinessCirclePointsRequest.json index 178c2da0..1095c77a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BusinessCircle/NotifyBusinessCirclePointsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/BusinessCircle/NotifyBusinessCirclePointsRequest.json @@ -7,4 +7,4 @@ "increased_points": 100, "points_update_time": "2020-05-20T13:29:35.120+08:00", "total_points": 888888 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Areas/QueryCapitalAreasCitiesResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Areas/QueryCapitalAreasCitiesResponse.json index 394880c1..099d3d3a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Areas/QueryCapitalAreasCitiesResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Areas/QueryCapitalAreasCitiesResponse.json @@ -6,4 +6,4 @@ } ], "total_count": "10" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Areas/QueryCapitalAreasProvincesResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Areas/QueryCapitalAreasProvincesResponse.json index a82ab106..f66b12e4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Areas/QueryCapitalAreasProvincesResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Areas/QueryCapitalAreasProvincesResponse.json @@ -6,4 +6,4 @@ } ], "total_count": "10" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Banks/QueryCapitalBanksBranchesResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Banks/QueryCapitalBanksBranchesResponse.json index 82ef19b4..c0627a66 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Banks/QueryCapitalBanksBranchesResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Banks/QueryCapitalBanksBranchesResponse.json @@ -11,4 +11,4 @@ "account_bank_code": 1001, "bank_alias": "工商银行深圳前海微众银行", "bank_alias_code": "1000006247" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Banks/QueryCapitalBanksByBankAccountResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Banks/QueryCapitalBanksByBankAccountResponse.json index 32d859e4..bef141e0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Banks/QueryCapitalBanksByBankAccountResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Banks/QueryCapitalBanksByBankAccountResponse.json @@ -9,4 +9,4 @@ "need_bank_branch": true } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Banks/QueryCapitalBanksPersonalBankingResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Banks/QueryCapitalBanksPersonalBankingResponse.json index 5112e946..319367a9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Banks/QueryCapitalBanksPersonalBankingResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Capital/Banks/QueryCapitalBanksPersonalBankingResponse.json @@ -10,4 +10,4 @@ } ], "offset": "0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Certificates/QueryCertificatesResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Certificates/QueryCertificatesResponse.json index 3c8b52f1..7e92bbd2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Certificates/QueryCertificatesResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Certificates/QueryCertificatesResponse.json @@ -23,4 +23,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CloseCombineTransactionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CloseCombineTransactionRequest.json index 7b7d2b33..6b30dc8d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CloseCombineTransactionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CloseCombineTransactionRequest.json @@ -7,4 +7,4 @@ "sub_mchid": "1230000109" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionAppRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionAppRequest.json index 3a049ae7..3ec006c4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionAppRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionAppRequest.json @@ -25,4 +25,4 @@ "time_start": "2019-12-31T15:59:59+08:00", "time_expire": "2019-12-31T16:59:59+08:00", "notify_url": "https://yourapp.com/notify" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionAppResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionAppResponse.json index 8e7139f0..a0c986ff 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionAppResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionAppResponse.json @@ -1,3 +1,3 @@ { "prepay_id": "wx201410272009395522657a690389285100" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionH5Request.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionH5Request.json index e13b6125..83f90c45 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionH5Request.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionH5Request.json @@ -33,4 +33,4 @@ "time_start": "2019-12-31T15:59:59+08:00", "time_expire": "2019-12-31T16:59:59+08:00", "notify_url": "https://yourapp.com/notify" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionH5Response.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionH5Response.json index 30c11776..b5abd06b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionH5Response.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionH5Response.json @@ -1,3 +1,3 @@ { "h5_url": "https://wx.tenpay.com/cgi-bin/mmpayweb-bin/checkmweb?prepay_id=wx2016121516420242444321ca0631331346&package=1405458241" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionJsapiRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionJsapiRequest.json index 3a049ae7..3ec006c4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionJsapiRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionJsapiRequest.json @@ -25,4 +25,4 @@ "time_start": "2019-12-31T15:59:59+08:00", "time_expire": "2019-12-31T16:59:59+08:00", "notify_url": "https://yourapp.com/notify" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionJsapiResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionJsapiResponse.json index 8e7139f0..a0c986ff 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionJsapiResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionJsapiResponse.json @@ -1,3 +1,3 @@ { "prepay_id": "wx201410272009395522657a690389285100" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionNativeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionNativeRequest.json index 6e256d58..0756ec15 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionNativeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionNativeRequest.json @@ -41,4 +41,4 @@ "time_start": "2000-01-23T04:56:07.000+00:00", "time_expire": "2000-01-23T04:56:07.000+00:00", "notify_url": "https://yourapp.com/notify" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionNativeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionNativeResponse.json index 457404a8..d810db36 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionNativeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/CreateCombineTransactionNativeResponse.json @@ -1,3 +1,3 @@ { "code_url": "weixin://pay.weixin.qq.com/bizpayurl/up?pr=NwY5Mz9&groupid=00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/GetCombineTransactionByCombineOutTradeNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/GetCombineTransactionByCombineOutTradeNumberResponse.json index 45a84857..9d80fab5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/GetCombineTransactionByCombineOutTradeNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/CombineTransactions/GetCombineTransactionByCombineOutTradeNumberResponse.json @@ -27,4 +27,4 @@ "device_id": "POS1:1" }, "combine_out_trade_no": "1217752501201407033233368018" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/GetDiscountCardByOutCardCodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/GetDiscountCardByOutCardCodeResponse.json index 77b64223..e59e0b16 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/GetDiscountCardByOutCardCodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/GetDiscountCardByOutCardCodeResponse.json @@ -140,4 +140,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/PrepareDiscountCardRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/PrepareDiscountCardRequest.json index 705124bb..7d6e63e9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/PrepareDiscountCardRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/PrepareDiscountCardRequest.json @@ -3,4 +3,4 @@ "card_template_id": "87789b2f25177433bcbf407e8e471f95", "appid": "wxd678efh567hg6787", "notify_url": "https://api.test.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/PrepareDiscountCardResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/PrepareDiscountCardResponse.json index e24a7f19..b0a2a1ac 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/PrepareDiscountCardResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/PrepareDiscountCardResponse.json @@ -1,3 +1,3 @@ { "prepare_card_token": "zyx53Nkey8o4bHpxTQvd8m7e92nG5mG2" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/UserRecords/AddDiscountCardUserRecordRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/UserRecords/AddDiscountCardUserRecordRequest.json index 52960d4a..90838ed8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/UserRecords/AddDiscountCardUserRecordRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/DiscountCard/UserRecords/AddDiscountCardUserRecordRequest.json @@ -32,4 +32,4 @@ "objective_id": "123456" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/CreateEcommerceApplymentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/CreateEcommerceApplymentRequest.json index 3eda41d1..b351d1f6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/CreateEcommerceApplymentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/CreateEcommerceApplymentRequest.json @@ -84,7 +84,11 @@ "qualification_type": "零售批发/生活娱乐/其他" }, "merchant_shortname": "腾讯", - "qualifications": [ "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ\",\"47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4" ], - "business_addition_pics": [ "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ\",\"47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4" ], + "qualifications": [ + "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ\",\"47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4" + ], + "business_addition_pics": [ + "jTpGmxUX3FBWVQ5NJTZvlKX_gdU4cRz7z5NxpnFuAxhBTEO_PvWkfSCJ3zVIn001D8daLC-ehEuo0BJqRTvDujqhThn4ReFxikqJ5YW6zFQ\",\"47ZC6GC-vnrbEny__Ie_An5-tCpqxucuxi-vByf3Gjm7KE53JXvGy9tqZm2XAUf-4KGprrKhpVBDIUv0OF4wFNIO4kqg05InE4d2I6_H7I4" + ], "business_addition_desc": "特殊情况,说明原因" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/CreateEcommerceApplymentResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/CreateEcommerceApplymentResponse.json index 00f1ad40..4c6069ac 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/CreateEcommerceApplymentResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/CreateEcommerceApplymentResponse.json @@ -1,4 +1,4 @@ { "applyment_id": 2000002124775691, "out_request_no": "APPLYMENT_00000000001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/GetEcommerceApplymentByApplymentIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/GetEcommerceApplymentByApplymentIdResponse.json index ea1899aa..5a3caa66 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/GetEcommerceApplymentByApplymentIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/GetEcommerceApplymentByApplymentIdResponse.json @@ -23,4 +23,4 @@ "legal_validation_url": "https://pay.weixin.qq.com/public/apply4ec_sign/s?applymentId=2000002126198476&sign=b207b673049a32c858f3aabd7d27c7ec", "out_request_no": "APPLYMENT_00000000001", "applyment_id": 2000002124775691 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/GetEcommerceApplymentByOutRequestNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/GetEcommerceApplymentByOutRequestNumberResponse.json index ea1899aa..5a3caa66 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/GetEcommerceApplymentByOutRequestNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceApplyments/GetEcommerceApplymentByOutRequestNumberResponse.json @@ -23,4 +23,4 @@ "legal_validation_url": "https://pay.weixin.qq.com/public/apply4ec_sign/s?applymentId=2000002126198476&sign=b207b673049a32c858f3aabd7d27c7ec", "out_request_no": "APPLYMENT_00000000001", "applyment_id": 2000002124775691 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceBill/GetEcommerceBillFundflowBillResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceBill/GetEcommerceBillFundflowBillResponse.json index be6470fc..a335ced1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceBill/GetEcommerceBillFundflowBillResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceBill/GetEcommerceBillFundflowBillResponse.json @@ -10,4 +10,4 @@ "nonce": "a8607ef79034c49c" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundBalance/GetEcommerceFundBalanceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundBalance/GetEcommerceFundBalanceResponse.json index cc73da89..181f4866 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundBalance/GetEcommerceFundBalanceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundBalance/GetEcommerceFundBalanceResponse.json @@ -3,4 +3,4 @@ "available_amount": 10000, "pending_amount": 0, "account_type": "BASIC" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundBalance/GetEcommerceFundDayendBalanceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundBalance/GetEcommerceFundDayendBalanceResponse.json index 368c02e4..798e72ec 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundBalance/GetEcommerceFundDayendBalanceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundBalance/GetEcommerceFundDayendBalanceResponse.json @@ -2,4 +2,4 @@ "sub_mchid": "1900000109", "available_amount": 10000, "pending_amount": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/CreateEcommerceFundWithdrawRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/CreateEcommerceFundWithdrawRequest.json index 25a50e27..b80bc6e6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/CreateEcommerceFundWithdrawRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/CreateEcommerceFundWithdrawRequest.json @@ -4,4 +4,4 @@ "amount": 1, "remark": "交易提现", "bank_memo": "微信支付提现" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/CreateEcommerceFundWithdrawResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/CreateEcommerceFundWithdrawResponse.json index 7a0080a8..7628023f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/CreateEcommerceFundWithdrawResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/CreateEcommerceFundWithdrawResponse.json @@ -2,4 +2,4 @@ "sub_mchid": "1900000109", "withdraw_id": "12321937198237912739132791732912793127931279317929791239112123", "out_request_no": "20190611222222222200000000012122" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/GetEcommerceFundWithdrawByOutRequestNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/GetEcommerceFundWithdrawByOutRequestNumberResponse.json index 2bfc2c3a..a986ea4a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/GetEcommerceFundWithdrawByOutRequestNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/GetEcommerceFundWithdrawByOutRequestNumberResponse.json @@ -14,4 +14,4 @@ "account_number": "1178", "account_bank": "招商银行", "bank_name": "中国工商银行股份有限公司深圳软件园支行" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/GetEcommerceFundWithdrawByWithdrawIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/GetEcommerceFundWithdrawByWithdrawIdResponse.json index 2bfc2c3a..a986ea4a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/GetEcommerceFundWithdrawByWithdrawIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceFundWithdraw/GetEcommerceFundWithdrawByWithdrawIdResponse.json @@ -14,4 +14,4 @@ "account_number": "1178", "account_bank": "招商银行", "bank_name": "中国工商银行股份有限公司深圳软件园支行" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Amounts/GetEcommerceProfitSharingOrderAmountsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Amounts/GetEcommerceProfitSharingOrderAmountsResponse.json index f3b69114..2b23c0ae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Amounts/GetEcommerceProfitSharingOrderAmountsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Amounts/GetEcommerceProfitSharingOrderAmountsResponse.json @@ -1,4 +1,4 @@ { "transaction_id": "4208450740201411110007820472", "unsplit_amount": 1000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingOrderRequest.json index 57f55793..0cca1678 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingOrderRequest.json @@ -12,4 +12,4 @@ } ], "finish": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingOrderResponse.json index 9acb975e..2da64591 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingOrderResponse.json @@ -3,4 +3,4 @@ "transaction_id": "4208450740201411110007820472", "out_order_no": "P20150806125346", "order_id": "3008450740201411110007820472" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingReturnOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingReturnOrderRequest.json index edec1482..b0cdfda8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingReturnOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingReturnOrderRequest.json @@ -6,4 +6,4 @@ "return_mchid": "86693852", "amount": 10, "description": "分账回退" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingReturnOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingReturnOrderResponse.json index 83138f73..7f29ba1d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingReturnOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/CreateEcommerceProfitSharingReturnOrderResponse.json @@ -9,4 +9,4 @@ "result": "SUCCESS", "fail_reason": "TIME_OUT_CLOSED", "finish_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/GetEcommerceProfitSharingOrderByOutOrderNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/GetEcommerceProfitSharingOrderByOutOrderNumberResponse.json index d1d16810..23d689f7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/GetEcommerceProfitSharingOrderByOutOrderNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/GetEcommerceProfitSharingOrderByOutOrderNumberResponse.json @@ -16,4 +16,4 @@ ], "finish_amount": 100, "finish_description": "分账完结" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/GetEcommerceProfitSharingReturnOrderByOrderIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/GetEcommerceProfitSharingReturnOrderByOrderIdResponse.json index 83138f73..7f29ba1d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/GetEcommerceProfitSharingReturnOrderByOrderIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/GetEcommerceProfitSharingReturnOrderByOrderIdResponse.json @@ -9,4 +9,4 @@ "result": "SUCCESS", "fail_reason": "TIME_OUT_CLOSED", "finish_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/GetEcommerceProfitSharingReturnOrderByOutOrderNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/GetEcommerceProfitSharingReturnOrderByOutOrderNumberResponse.json index 83138f73..7f29ba1d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/GetEcommerceProfitSharingReturnOrderByOutOrderNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/GetEcommerceProfitSharingReturnOrderByOutOrderNumberResponse.json @@ -9,4 +9,4 @@ "result": "SUCCESS", "fail_reason": "TIME_OUT_CLOSED", "finish_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/AddEcommerceProfitSharingReceiverRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/AddEcommerceProfitSharingReceiverRequest.json index a5a1f90e..d3557a08 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/AddEcommerceProfitSharingReceiverRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/AddEcommerceProfitSharingReceiverRequest.json @@ -4,4 +4,4 @@ "account": "190001001", "name": "张三网络公司", "relation_type": "SUPPLIER" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/AddEcommerceProfitSharingReceiverResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/AddEcommerceProfitSharingReceiverResponse.json index bf2c1224..8a1d2683 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/AddEcommerceProfitSharingReceiverResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/AddEcommerceProfitSharingReceiverResponse.json @@ -1,4 +1,4 @@ { "type": "MERCHANT_ID", "account": "190001001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/DeleteEcommerceProfitSharingReceiverRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/DeleteEcommerceProfitSharingReceiverRequest.json index 59dd529c..234277d5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/DeleteEcommerceProfitSharingReceiverRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/DeleteEcommerceProfitSharingReceiverRequest.json @@ -2,4 +2,4 @@ "appid": "wx8888888888888888", "type": "MERCHANT_ID", "account": "190001001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/DeleteEcommerceProfitSharingReceiverResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/DeleteEcommerceProfitSharingReceiverResponse.json index bf2c1224..8a1d2683 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/DeleteEcommerceProfitSharingReceiverResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/Receivers/DeleteEcommerceProfitSharingReceiverResponse.json @@ -1,4 +1,4 @@ { "type": "MERCHANT_ID", "account": "190001001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/SetEcommerceProfitSharingOrderFinishRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/SetEcommerceProfitSharingOrderFinishRequest.json index 2c8c75d6..46d3bb78 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/SetEcommerceProfitSharingOrderFinishRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/SetEcommerceProfitSharingOrderFinishRequest.json @@ -3,4 +3,4 @@ "transaction_id": "4208450740201411110007820472", "out_order_no": "P20150806125346", "description": "分账完结" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/SetEcommerceProfitSharingOrderFinishResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/SetEcommerceProfitSharingOrderFinishResponse.json index 9acb975e..2da64591 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/SetEcommerceProfitSharingOrderFinishResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceProfitSharing/SetEcommerceProfitSharingOrderFinishResponse.json @@ -3,4 +3,4 @@ "transaction_id": "4208450740201411110007820472", "out_order_no": "P20150806125346", "order_id": "3008450740201411110007820472" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/CreateEcommerceRefundRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/CreateEcommerceRefundRequest.json index 3be1deee..e48d43e0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/CreateEcommerceRefundRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/CreateEcommerceRefundRequest.json @@ -13,4 +13,4 @@ }, "notify_url": "https://weixin.qq.com", "refund_account": "REFUND_SOURCE_SUB_MERCHANT" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/CreateEcommerceRefundResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/CreateEcommerceRefundResponse.json index 4ea74661..74dd0b7c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/CreateEcommerceRefundResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/CreateEcommerceRefundResponse.json @@ -25,4 +25,4 @@ } ], "refund_account": "REFUND_SOURCE_SUB_MERCHANT" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/GetEcommerceRefundByOutRefundNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/GetEcommerceRefundByOutRefundNumberResponse.json index ec4e2bd5..029d8d9c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/GetEcommerceRefundByOutRefundNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/GetEcommerceRefundByOutRefundNumberResponse.json @@ -25,4 +25,4 @@ ], "refund_account": "REFUND_SOURCE_SUB_MERCHANT", "funds_account": "UNSETTLED" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/GetEcommerceRefundByRefundIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/GetEcommerceRefundByRefundIdResponse.json index ec4e2bd5..029d8d9c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/GetEcommerceRefundByRefundIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/GetEcommerceRefundByRefundIdResponse.json @@ -25,4 +25,4 @@ ], "refund_account": "REFUND_SOURCE_SUB_MERCHANT", "funds_account": "UNSETTLED" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/ReturnAdvance/CreateEcommerceRefundReturnAdvanceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/ReturnAdvance/CreateEcommerceRefundReturnAdvanceRequest.json index f0e4ec63..a4f48d7b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/ReturnAdvance/CreateEcommerceRefundReturnAdvanceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/ReturnAdvance/CreateEcommerceRefundReturnAdvanceRequest.json @@ -1,3 +1,3 @@ { "sub_mchid": "1900000109" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/ReturnAdvance/CreateEcommerceRefundReturnAdvanceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/ReturnAdvance/CreateEcommerceRefundReturnAdvanceResponse.json index e3b72d1b..70f6dc85 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/ReturnAdvance/CreateEcommerceRefundReturnAdvanceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/ReturnAdvance/CreateEcommerceRefundReturnAdvanceResponse.json @@ -8,4 +8,4 @@ "payee_account": "BASIC", "result": "SUCCESS", "success_time": "2018-06-08T10:34:56+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/ReturnAdvance/GetEcommerceRefundReturnAdvanceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/ReturnAdvance/GetEcommerceRefundReturnAdvanceResponse.json index e3b72d1b..70f6dc85 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/ReturnAdvance/GetEcommerceRefundReturnAdvanceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceRefunds/ReturnAdvance/GetEcommerceRefundReturnAdvanceResponse.json @@ -8,4 +8,4 @@ "payee_account": "BASIC", "result": "SUCCESS", "success_time": "2018-06-08T10:34:56+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CancelEcommerceSubsidyRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CancelEcommerceSubsidyRequest.json index 3191544e..2eafcada 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CancelEcommerceSubsidyRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CancelEcommerceSubsidyRequest.json @@ -2,4 +2,4 @@ "sub_mchid": "1900013401", "transaction_id": "4208450740201411110007820472", "description": "订单退款" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CancelEcommerceSubsidyResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CancelEcommerceSubsidyResponse.json index 95151fed..cb47d112 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CancelEcommerceSubsidyResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CancelEcommerceSubsidyResponse.json @@ -3,4 +3,4 @@ "transaction_id": "4208450740201411110007820472", "result": "SUCCESS", "description": "订单退款" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyRequest.json index 30ce22c9..8389da9b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyRequest.json @@ -5,4 +5,4 @@ "description": "测试备注", "refund_id": "3008450740201411110007820472", "out_subsidy_no": "P20150806125347" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyResponse.json index d3f9445d..a6392d07 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyResponse.json @@ -6,4 +6,4 @@ "amount": 10, "result": "PROCESSING", "success_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyReturnRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyReturnRequest.json index 04bca11b..ca84216a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyReturnRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyReturnRequest.json @@ -5,4 +5,4 @@ "refund_id": "3008450740201411110007820472", "amount": 10, "description": "测试备注" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyReturnResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyReturnResponse.json index 924b6f2a..e50b3caf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyReturnResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/EcommerceSubsidies/CreateEcommerceSubsidyReturnResponse.json @@ -8,4 +8,4 @@ "description": "测试备注", "result": "SUCCESS", "success_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanCustomPageStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanCustomPageStatusRequest.json index 8f19927d..eb480706 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanCustomPageStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanCustomPageStatusRequest.json @@ -1,4 +1,4 @@ { "sub_mchid": "1234567890", "operation_type": "OPEN" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanCustomPageStatusResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanCustomPageStatusResponse.json index b214ed4a..b6785392 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanCustomPageStatusResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanCustomPageStatusResponse.json @@ -1,3 +1,3 @@ { "sub_mchid": "1234567890" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanStatusRequest.json index 8f19927d..eb480706 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanStatusRequest.json @@ -1,4 +1,4 @@ { "sub_mchid": "1234567890", "operation_type": "OPEN" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanStatusResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanStatusResponse.json index b214ed4a..b6785392 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanStatusResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/ChangeGoldPlanStatusResponse.json @@ -1,3 +1,3 @@ { "sub_mchid": "1234567890" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/CloseGoldPlanAdvertisingShowRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/CloseGoldPlanAdvertisingShowRequest.json index f0e4ec63..a4f48d7b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/CloseGoldPlanAdvertisingShowRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/CloseGoldPlanAdvertisingShowRequest.json @@ -1,3 +1,3 @@ { "sub_mchid": "1900000109" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/OpenGoldPlanAdvertisingShowRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/OpenGoldPlanAdvertisingShowRequest.json index 5b21ac96..d34db4d4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/OpenGoldPlanAdvertisingShowRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/OpenGoldPlanAdvertisingShowRequest.json @@ -1,8 +1,4 @@ { "sub_mchid": "1900000109", - "advertising_industry_filters": [ - "SOFTWARE", - "SECURITY", - "LOVE_MARRIAGE" - ] -} \ No newline at end of file + "advertising_industry_filters": ["SOFTWARE", "SECURITY", "LOVE_MARRIAGE"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/SetGoldPlanAdvertisingIndustryFilterRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/SetGoldPlanAdvertisingIndustryFilterRequest.json index 5b21ac96..d34db4d4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/SetGoldPlanAdvertisingIndustryFilterRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/GoldPlan/SetGoldPlanAdvertisingIndustryFilterRequest.json @@ -1,8 +1,4 @@ { "sub_mchid": "1900000109", - "advertising_industry_filters": [ - "SOFTWARE", - "SECURITY", - "LOVE_MARRIAGE" - ] -} \ No newline at end of file + "advertising_industry_filters": ["SOFTWARE", "SECURITY", "LOVE_MARRIAGE"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/CreateHKCustomsOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/CreateHKCustomsOrderRequest.json index b254c4a2..3efc90df 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/CreateHKCustomsOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/CreateHKCustomsOrderRequest.json @@ -11,4 +11,4 @@ "order_fee": 888, "transport_fee": 888, "product_fee": 888 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/CreateHKCustomsOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/CreateHKCustomsOrderResponse.json index 19a5704a..c9e9420e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/CreateHKCustomsOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/CreateHKCustomsOrderResponse.json @@ -8,4 +8,4 @@ "sub_order_id": "20150806125346", "verify_department": "UNIONPAY", "verify_department_trade_id": "2018112288340107038204310100000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/ModifyHKCustomsOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/ModifyHKCustomsOrderRequest.json index 9c3b5723..a6023a29 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/ModifyHKCustomsOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/ModifyHKCustomsOrderRequest.json @@ -10,4 +10,4 @@ "order_fee": 888, "transport_fee": 888, "product_fee": 888 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/ModifyHKCustomsOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/ModifyHKCustomsOrderResponse.json index 484857cf..25c433ef 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/ModifyHKCustomsOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/ModifyHKCustomsOrderResponse.json @@ -9,4 +9,4 @@ "modify_time": "2015-09-01T10:00:00+08:00", "verify_department": "UNIONPAY", "verify_department_trade_id": "2018112288340107038204310100000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/QueryHKCustomsOrdersResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/QueryHKCustomsOrdersResponse.json index e9d8168f..604cb740 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/QueryHKCustomsOrdersResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/QueryHKCustomsOrdersResponse.json @@ -23,4 +23,4 @@ "modify_time": "2015-09-01T10:00:00+08:00" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/RedeclareHKCustomsOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/RedeclareHKCustomsOrderRequest.json index 1643a4aa..cba8ab6a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/RedeclareHKCustomsOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/RedeclareHKCustomsOrderRequest.json @@ -7,4 +7,4 @@ "sub_order_id": "1000320306201511078440737891", "customs": "SHANGHAI_ZS", "merchant_customs_no": "123456" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/RedeclareHKCustomsOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/RedeclareHKCustomsOrderResponse.json index 7e2d4224..244e4083 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/RedeclareHKCustomsOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/RedeclareHKCustomsOrderResponse.json @@ -8,4 +8,4 @@ "sub_order_id": "20150806125346", "modify_time": "2015-09-01T10:00:00+08:00", "explanation": "支付单已存在并且为非退单状态" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/VerifyHKCustomsCertificateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/VerifyHKCustomsCertificateRequest.json index a0061719..0ef015aa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/VerifyHKCustomsCertificateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/VerifyHKCustomsCertificateRequest.json @@ -9,4 +9,4 @@ "certificate_type": "IDCARD", "certificate_id": "330821198809085211", "certificate_name": "张三" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/VerifyHKCustomsCertificateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/VerifyHKCustomsCertificateResponse.json index cf565407..a4c3a9c7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/VerifyHKCustomsCertificateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKCustoms/VerifyHKCustomsCertificateResponse.json @@ -4,4 +4,4 @@ "out_trade_no": "20150806125346", "transaction_id": "1000320306201511078440737890", "certificate_check_result": "UNchECKED" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/AddHKSubMerchantRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/AddHKSubMerchantRequest.json index 85316aeb..202e4c30 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/AddHKSubMerchantRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/AddHKSubMerchantRequest.json @@ -24,4 +24,4 @@ "name": "Tom", "number": "1234567890" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/AddHKSubMerchantResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/AddHKSubMerchantResponse.json index c4cd59fa..ccb5dfab 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/AddHKSubMerchantResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/AddHKSubMerchantResponse.json @@ -1,3 +1,3 @@ { "sub_mchid": "20000100" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/GetHKSubMerchantResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/GetHKSubMerchantResponse.json index b520eace..50b780a3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/GetHKSubMerchantResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/GetHKSubMerchantResponse.json @@ -13,4 +13,4 @@ "name": "Bob", "number": "5555-8888" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/ModifyHKSubMerchantRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/ModifyHKSubMerchantRequest.json index d0371cd9..1385f7fe 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/ModifyHKSubMerchantRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/ModifyHKSubMerchantRequest.json @@ -25,4 +25,4 @@ "name": "Tom", "number": "1234567890" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/ModifyHKSubMerchantResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/ModifyHKSubMerchantResponse.json index c4cd59fa..ccb5dfab 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/ModifyHKSubMerchantResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKMerchants/ModifyHKSubMerchantResponse.json @@ -1,3 +1,3 @@ { "sub_mchid": "20000100" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerRefund/GetHKPartnerRefundByIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerRefund/GetHKPartnerRefundByIdResponse.json index e489a4f9..9e29e610 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerRefund/GetHKPartnerRefundByIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerRefund/GetHKPartnerRefundByIdResponse.json @@ -29,4 +29,4 @@ "fund_source": "REFUND_SOURCE_REchARGE_FUNDS", "success_time": "2018-06-08T10:34:56+08:00", "create_time": "2018-06-08T10:34:56+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerRefund/GetHKPartnerRefundByOutRefundNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerRefund/GetHKPartnerRefundByOutRefundNumberResponse.json index e489a4f9..9e29e610 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerRefund/GetHKPartnerRefundByOutRefundNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerRefund/GetHKPartnerRefundByOutRefundNumberResponse.json @@ -29,4 +29,4 @@ "fund_source": "REFUND_SOURCE_REchARGE_FUNDS", "success_time": "2018-06-08T10:34:56+08:00", "create_time": "2018-06-08T10:34:56+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionAppResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionAppResponse.json index 0193a379..44b3835e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionAppResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionAppResponse.json @@ -1,3 +1,3 @@ { "prepay_id": "wx201411101639507cbf6ffd8b0779950874" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionJsapiRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionJsapiRequest.json index e4c1470f..2ea4ee5d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionJsapiRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionJsapiRequest.json @@ -38,4 +38,4 @@ "id": "SZTX001" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionJsapiResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionJsapiResponse.json index 0193a379..44b3835e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionJsapiResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionJsapiResponse.json @@ -1,3 +1,3 @@ { "prepay_id": "wx201411101639507cbf6ffd8b0779950874" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionMWebRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionMWebRequest.json index 1c57a223..5d95b9e3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionMWebRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionMWebRequest.json @@ -38,4 +38,4 @@ "id": "SZTX001" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionMWebResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionMWebResponse.json index d331b37a..587d76c2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionMWebResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionMWebResponse.json @@ -1,3 +1,3 @@ { "mweb_url": " https://wx.tenpay.com/cgi-bin/mmpayweb-bin/checkmweb?prepay_id=wx2016121516420242444321ca0631331346&package=1405458241" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionMicroPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionMicroPayRequest.json index c3d31630..5b22efe7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionMicroPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionMicroPayRequest.json @@ -40,4 +40,4 @@ "address": "Nanshan District, Shenzhen, Guangdong" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionNativeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionNativeRequest.json index 73e256bf..93a6d20b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionNativeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionNativeRequest.json @@ -35,4 +35,4 @@ "id": "SZTX001" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionNativeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionNativeResponse.json index b946bce9..a3431940 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionNativeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/CreateHKPartnerTransactionNativeResponse.json @@ -1,3 +1,3 @@ { "code_url": "weixin://wxpay/s/An4baqw" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/GetHKPartnerTransactionByIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/GetHKPartnerTransactionByIdResponse.json index 5af04150..1167cf51 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/GetHKPartnerTransactionByIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/GetHKPartnerTransactionByIdResponse.json @@ -45,4 +45,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/GetHKPartnerTransactionByOutTradeNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/GetHKPartnerTransactionByOutTradeNumberResponse.json index 5af04150..1167cf51 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/GetHKPartnerTransactionByOutTradeNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/GetHKPartnerTransactionByOutTradeNumberResponse.json @@ -45,4 +45,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/Settlements/QueryHKSettlementsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/Settlements/QueryHKSettlementsResponse.json index a2dcfb75..318aeeb8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/Settlements/QueryHKSettlementsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKPartnerTransactions/Settlements/QueryHKSettlementsResponse.json @@ -36,4 +36,4 @@ "offset": 1, "total_count": 1234, "limit": 20 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKRefund/GetHKRefundByIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKRefund/GetHKRefundByIdResponse.json index e489a4f9..9e29e610 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKRefund/GetHKRefundByIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKRefund/GetHKRefundByIdResponse.json @@ -29,4 +29,4 @@ "fund_source": "REFUND_SOURCE_REchARGE_FUNDS", "success_time": "2018-06-08T10:34:56+08:00", "create_time": "2018-06-08T10:34:56+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKRefund/GetHKRefundByOutRefundNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKRefund/GetHKRefundByOutRefundNumberResponse.json index e489a4f9..9e29e610 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKRefund/GetHKRefundByOutRefundNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKRefund/GetHKRefundByOutRefundNumberResponse.json @@ -29,4 +29,4 @@ "fund_source": "REFUND_SOURCE_REchARGE_FUNDS", "success_time": "2018-06-08T10:34:56+08:00", "create_time": "2018-06-08T10:34:56+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionAppRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionAppRequest.json index 99ad99ee..d0461e1e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionAppRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionAppRequest.json @@ -37,4 +37,4 @@ "id": "SZTX001" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionAppResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionAppResponse.json index 0193a379..44b3835e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionAppResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionAppResponse.json @@ -1,3 +1,3 @@ { "prepay_id": "wx201411101639507cbf6ffd8b0779950874" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionJsapiRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionJsapiRequest.json index 4c6aaa1b..a9dfa7fa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionJsapiRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionJsapiRequest.json @@ -36,4 +36,4 @@ "id": "SZTX001" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionJsapiResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionJsapiResponse.json index 0193a379..44b3835e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionJsapiResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionJsapiResponse.json @@ -1,3 +1,3 @@ { "prepay_id": "wx201411101639507cbf6ffd8b0779950874" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionMWebRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionMWebRequest.json index 56660265..2a87a47b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionMWebRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionMWebRequest.json @@ -37,4 +37,4 @@ "id": "SZTX001" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionMWebResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionMWebResponse.json index d331b37a..587d76c2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionMWebResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionMWebResponse.json @@ -1,3 +1,3 @@ { "mweb_url": " https://wx.tenpay.com/cgi-bin/mmpayweb-bin/checkmweb?prepay_id=wx2016121516420242444321ca0631331346&package=1405458241" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionNativeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionNativeRequest.json index ecfe2d89..b1a297f9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionNativeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionNativeRequest.json @@ -34,4 +34,4 @@ "id": "SZTX001" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionNativeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionNativeResponse.json index b946bce9..a3431940 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionNativeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/CreateHKTransactionNativeResponse.json @@ -1,3 +1,3 @@ { "code_url": "weixin://wxpay/s/An4baqw" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/GetHKTransactionByIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/GetHKTransactionByIdResponse.json index 84a59cc7..f1ae5e0a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/GetHKTransactionByIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/GetHKTransactionByIdResponse.json @@ -44,4 +44,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/GetHKTransactionByOutTradeNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/GetHKTransactionByOutTradeNumberResponse.json index 84a59cc7..f1ae5e0a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/GetHKTransactionByOutTradeNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/HKTransactions/GetHKTransactionByOutTradeNumberResponse.json @@ -44,4 +44,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBank/UploadMarketingBankPackagesTasksRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBank/UploadMarketingBankPackagesTasksRequest.json index 79c64ce0..21c3f95c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBank/UploadMarketingBankPackagesTasksRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBank/UploadMarketingBankPackagesTasksRequest.json @@ -2,4 +2,4 @@ "bank_type": "ICBC_DEBIT", "filename": "active_user.csv", "sha256": "addca90a6a290b9642dbaccffdf01e8c22aa348940b2e96754169ba08c19e5db" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBank/UploadMarketingBankPackagesTasksResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBank/UploadMarketingBankPackagesTasksResponse.json index a2742f81..7ed383a8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBank/UploadMarketingBankPackagesTasksResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBank/UploadMarketingBankPackagesTasksResponse.json @@ -9,4 +9,4 @@ "success_user_count": 1000, "task_id": "101", "update_time": "2020-05-20T13:29:35+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Callbacks/GetMarketingBusifavorCallbackResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Callbacks/GetMarketingBusifavorCallbackResponse.json index 28c30b35..e6b17877 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Callbacks/GetMarketingBusifavorCallbackResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Callbacks/GetMarketingBusifavorCallbackResponse.json @@ -1,4 +1,4 @@ { "mchid": "10000098", "notify_url": "https://pay.weixin.qq.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Callbacks/UpdateMarketingBusifavorCallbackRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Callbacks/UpdateMarketingBusifavorCallbackRequest.json index 28c30b35..e6b17877 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Callbacks/UpdateMarketingBusifavorCallbackRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Callbacks/UpdateMarketingBusifavorCallbackRequest.json @@ -1,4 +1,4 @@ { "mchid": "10000098", "notify_url": "https://pay.weixin.qq.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Callbacks/UpdateMarketingBusifavorCallbackResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Callbacks/UpdateMarketingBusifavorCallbackResponse.json index 9e0cf4df..ee9eabf8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Callbacks/UpdateMarketingBusifavorCallbackResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Callbacks/UpdateMarketingBusifavorCallbackResponse.json @@ -2,4 +2,4 @@ "update_time": "2019-05-20T13:29:35+08:00", "notify_url": "https://pay.weixin.qq.com", "mchid": "10000098" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/AssociateMarketingBusifavorCouponRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/AssociateMarketingBusifavorCouponRequest.json index 77bb90b9..0f93e2c6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/AssociateMarketingBusifavorCouponRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/AssociateMarketingBusifavorCouponRequest.json @@ -3,4 +3,4 @@ "out_trade_no": "MCH_102233445", "stock_id": "100088", "out_request_no": "1002600620019090123143254435" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/AssociateMarketingBusifavorCouponResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/AssociateMarketingBusifavorCouponResponse.json index be7b4877..064ed5bc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/AssociateMarketingBusifavorCouponResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/AssociateMarketingBusifavorCouponResponse.json @@ -1,3 +1,3 @@ { "wechatpay_associate_time": "2015-05-20T13:29:35+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/CreateMarketingBusifavorCouponReturnRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/CreateMarketingBusifavorCouponReturnRequest.json index df32bd58..33b0d505 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/CreateMarketingBusifavorCouponReturnRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/CreateMarketingBusifavorCouponReturnRequest.json @@ -2,4 +2,4 @@ "coupon_code": "sxxe34343434", "stock_id": "1234567891", "return_request_no": "1002600620019090123143254436" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/CreateMarketingBusifavorCouponReturnResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/CreateMarketingBusifavorCouponReturnResponse.json index 28e26dc5..d076ddb9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/CreateMarketingBusifavorCouponReturnResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/CreateMarketingBusifavorCouponReturnResponse.json @@ -1,3 +1,3 @@ { "wechatpay_return_time": "2020-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DeactivateMarketingBusifavorCouponRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DeactivateMarketingBusifavorCouponRequest.json index 97b388c1..d11afb91 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DeactivateMarketingBusifavorCouponRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DeactivateMarketingBusifavorCouponRequest.json @@ -3,4 +3,4 @@ "stock_id": "1234567891", "deactivate_request_no": "1002600620019090123143254436", "deactivate_reason": "此券使用时间设置错误" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DeactivateMarketingBusifavorCouponResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DeactivateMarketingBusifavorCouponResponse.json index c364f6ab..d4d334ac 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DeactivateMarketingBusifavorCouponResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DeactivateMarketingBusifavorCouponResponse.json @@ -1,3 +1,3 @@ { "wechatpay_deactivate_time": "2020-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DisassociateMarketingBusifavorCouponRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DisassociateMarketingBusifavorCouponRequest.json index c5c2d48a..ba3a8fe9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DisassociateMarketingBusifavorCouponRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DisassociateMarketingBusifavorCouponRequest.json @@ -3,4 +3,4 @@ "out_trade_no": "treads8a9f980", "stock_id": "100088", "out_request_no": "fdsafdsafdsa231321" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DisassociateMarketingBusifavorCouponResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DisassociateMarketingBusifavorCouponResponse.json index c800cd31..5165b9d8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DisassociateMarketingBusifavorCouponResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/DisassociateMarketingBusifavorCouponResponse.json @@ -1,3 +1,3 @@ { "wechatpay_disassociate_time": "2015-05-20T13:29:35+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SendMarketingBusifavorCouponRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SendMarketingBusifavorCouponRequest.json index d94be984..f57049d9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SendMarketingBusifavorCouponRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SendMarketingBusifavorCouponRequest.json @@ -3,4 +3,4 @@ "openid": "obLatjhnqgy2syxrXVM3MJirbkdI", "appid": "wxc0b84a53ed8e8d29", "out_request_no": "oTYhjfdsahnssddj_0136" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SendMarketingBusifavorCouponResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SendMarketingBusifavorCouponResponse.json index 92960e47..c36ce4d0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SendMarketingBusifavorCouponResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SendMarketingBusifavorCouponResponse.json @@ -1,3 +1,3 @@ { "card_code": "198555211279" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SetMarketingBusifavorCouponUsedRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SetMarketingBusifavorCouponUsedRequest.json index 88e33b83..9baf46c8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SetMarketingBusifavorCouponUsedRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SetMarketingBusifavorCouponUsedRequest.json @@ -5,4 +5,4 @@ "use_time": "2015-05-20T13:29:35+08:00", "use_request_no": "1002600620019090123143254435", "openid": "xsd3434454567676" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SetMarketingBusifavorCouponUsedResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SetMarketingBusifavorCouponUsedResponse.json index 1f6d11bb..2b9f29f6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SetMarketingBusifavorCouponUsedResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Coupons/SetMarketingBusifavorCouponUsedResponse.json @@ -2,4 +2,4 @@ "stock_id": "100088", "openid": "dsadas34345454545", "wechatpay_use_time": "2015-05-20T13:29:35+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/CreateMarketingBusifavorStockRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/CreateMarketingBusifavorStockRequest.json index 3856496d..204c811c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/CreateMarketingBusifavorStockRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/CreateMarketingBusifavorStockRequest.json @@ -11,10 +11,7 @@ "available_day_after_receive": 3, "wait_days_after_receive": 7, "available_week": { - "week_day": [ - 1, - 2 - ], + "week_day": [1, 2], "available_day_time": [ { "begin_time": 3600, @@ -71,4 +68,4 @@ } }, "coupon_code_mode": "WECHATPAY_MODE" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/CreateMarketingBusifavorStockResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/CreateMarketingBusifavorStockResponse.json index ecdeaeb1..dee4c31f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/CreateMarketingBusifavorStockResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/CreateMarketingBusifavorStockResponse.json @@ -1,4 +1,4 @@ { "stock_id": "98065001", "create_time": "2015-05-20T13:29:35+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/GetMarketingBusifavorStockByStockIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/GetMarketingBusifavorStockByStockIdResponse.json index cf4d500a..da0419d3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/GetMarketingBusifavorStockByStockIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/GetMarketingBusifavorStockByStockIdResponse.json @@ -10,10 +10,7 @@ "available_end_time": "2015-05-20T13:29:35+08:00", "available_day_after_receive": 3, "available_week": { - "week_day": [ - "1", - "2" - ], + "week_day": ["1", "2"], "available_day_time": [ { "begin_time": 3600, @@ -77,4 +74,4 @@ "total_count": 100, "available_count": 50 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyPayReceiptRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyPayReceiptRequest.json index abd89e6e..a53f9e82 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyPayReceiptRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyPayReceiptRequest.json @@ -7,4 +7,4 @@ "amount": 100, "description": "20210115DESCRIPTION", "out_subsidy_no": "subsidy-abcd-12345678" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyPayReceiptResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyPayReceiptResponse.json index b045ce3b..4d62538b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyPayReceiptResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyPayReceiptResponse.json @@ -11,4 +11,4 @@ "success_time": "2021-01-20T10:29:35.120+08:00", "out_subsidy_no": "subsidy-abcd-12345678", "create_time": "2021-01-20T10:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyReturnReceiptRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyReturnReceiptRequest.json index d76c6057..1258d836 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyReturnReceiptRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyReturnReceiptRequest.json @@ -8,4 +8,4 @@ "amount": 100, "description": "20210115DESCRIPTION", "out_subsidy_return_no": "subsidy-abcd-12345678" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyReturnReceiptResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyReturnReceiptResponse.json index 6b171183..b1cec38f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyReturnReceiptResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/CreateMarketingBusifavorSubsidyReturnReceiptResponse.json @@ -13,4 +13,4 @@ "subsidy_receipt_id": "1120200119165100000000000001", "out_subsidy_return_no": "subsidy-abcd-12345678", "return_create_time": "2021-01-20T10:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/GetMarketingBusifavorSubsidyPayReceiptBySubsidyReceiptIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/GetMarketingBusifavorSubsidyPayReceiptBySubsidyReceiptIdResponse.json index b045ce3b..4d62538b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/GetMarketingBusifavorSubsidyPayReceiptBySubsidyReceiptIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/Subsidy/GetMarketingBusifavorSubsidyPayReceiptBySubsidyReceiptIdResponse.json @@ -11,4 +11,4 @@ "success_time": "2021-01-20T10:29:35.120+08:00", "out_subsidy_no": "subsidy-abcd-12345678", "create_time": "2021-01-20T10:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UpdateMarketingBusifavorStockBudgetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UpdateMarketingBusifavorStockBudgetRequest.json index c220e009..787e0af9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UpdateMarketingBusifavorStockBudgetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UpdateMarketingBusifavorStockBudgetRequest.json @@ -2,4 +2,4 @@ "target_max_coupons": 3000, "current_max_coupons": 500, "modify_budget_request_no": "1002600620019090123143254436" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UpdateMarketingBusifavorStockBudgetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UpdateMarketingBusifavorStockBudgetResponse.json index 6d4f1eb8..383d539c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UpdateMarketingBusifavorStockBudgetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UpdateMarketingBusifavorStockBudgetResponse.json @@ -1,4 +1,4 @@ { "max_coupons": 300, "max_coupons_by_day": 100 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UpdateMarketingBusifavorStockRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UpdateMarketingBusifavorStockRequest.json index 7b3a072f..d9a74a0a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UpdateMarketingBusifavorStockRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UpdateMarketingBusifavorStockRequest.json @@ -29,4 +29,4 @@ "notify_config": { "notify_appid": "wx23232232323" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UploadMarketingBusifavorStockCouponCodesRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UploadMarketingBusifavorStockCouponCodesRequest.json index 83016589..5895db30 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UploadMarketingBusifavorStockCouponCodesRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UploadMarketingBusifavorStockCouponCodesRequest.json @@ -1,7 +1,4 @@ { - "coupon_code_list": [ - "ABC9588200", - "ABC9588201" - ], + "coupon_code_list": ["ABC9588200", "ABC9588201"], "upload_request_no": "100002322019090134234sfdf" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UploadMarketingBusifavorStockCouponCodesResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UploadMarketingBusifavorStockCouponCodesResponse.json index e2f5f7c5..27570448 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UploadMarketingBusifavorStockCouponCodesResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UploadMarketingBusifavorStockCouponCodesResponse.json @@ -2,9 +2,7 @@ "stock_id": "98065001", "total_count": 500, "success_count": 20, - "success_codes": [ - "MMAA12345" - ], + "success_codes": ["MMAA12345"], "success_time": "2015-05-20T13:29:35+08:00", "fail_count": 10, "fail_codes": [ @@ -14,10 +12,6 @@ "message": "长度超过最大值32位" } ], - "exist_codes": [ - "ABCD2345" - ], - "duplicate_codes": [ - "AACC2345" - ] -} \ No newline at end of file + "exist_codes": ["ABCD2345"], + "duplicate_codes": ["AACC2345"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UserCoupons/GetMarketingBusifavorUserCouponByCouponCodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UserCoupons/GetMarketingBusifavorUserCouponByCouponCodeResponse.json index 78481855..52e22ba3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UserCoupons/GetMarketingBusifavorUserCouponByCouponCodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UserCoupons/GetMarketingBusifavorUserCouponByCouponCodeResponse.json @@ -20,10 +20,7 @@ "available_end_time": "2015-05-20T13:29:35+08:00", "available_day_after_receive": 3, "available_week": { - "week_day": [ - "1", - "2" - ], + "week_day": ["1", "2"], "available_day_time": [ { "begin_time": 3600, @@ -65,4 +62,4 @@ "send_request_no": "MCHSEND202003101234", "use_request_no": "MCHSEND202003101234", "use_time": "2019-12-30T13:29:35+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UserCoupons/QueryMarketingBusifavorUserCouponsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UserCoupons/QueryMarketingBusifavorUserCouponsResponse.json index c670b000..65550318 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UserCoupons/QueryMarketingBusifavorUserCouponsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingBusifavor/UserCoupons/QueryMarketingBusifavorUserCouponsResponse.json @@ -21,10 +21,7 @@ "available_end_time": "2015-05-20T13:29:35+08:00", "available_day_after_receive": 3, "available_week": { - "week_day": [ - "1", - "2" - ], + "week_day": ["1", "2"], "available_day_time": [ { "begin_time": 3600, @@ -71,4 +68,4 @@ "total_count": 100, "limit": 10, "offset": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/Callbacks/UpdateMarketingFavorCallbackRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/Callbacks/UpdateMarketingFavorCallbackRequest.json index 44a77c34..4f414186 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/Callbacks/UpdateMarketingFavorCallbackRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/Callbacks/UpdateMarketingFavorCallbackRequest.json @@ -1,4 +1,4 @@ { "mchid": "9856888", "notify_url": "https://pay.weixin.qq.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/Callbacks/UpdateMarketingFavorCallbackResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/Callbacks/UpdateMarketingFavorCallbackResponse.json index 92972df4..2d48ffaa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/Callbacks/UpdateMarketingFavorCallbackResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/Callbacks/UpdateMarketingFavorCallbackResponse.json @@ -1,4 +1,4 @@ { "update_time": "2015-05-20T13:29:35.120+08:00", "notify_url": "api.weixin.qq.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/CreateMarketingFavorStockRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/CreateMarketingFavorStockRequest.json index 1b384a87..ffb7b4f3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/CreateMarketingFavorStockRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/CreateMarketingFavorStockRequest.json @@ -24,22 +24,13 @@ "coupon_amount": 50, "transaction_minimum": 100 }, - "goods_tag": [ - "123321", - "123322" - ], - "trade_type": [ "OTHER", "APPPAY" ], + "goods_tag": ["123321", "123322"], + "trade_type": ["OTHER", "APPPAY"], "combine_use": false, - "available_items": [ - "123321", - "123322" - ], - "available_merchants": [ - "9856000", - "9856001" - ] + "available_items": ["123321", "123322"], + "available_merchants": ["9856000", "9856001"] }, "no_cash": false, "stock_type": "NORMAL", "out_request_no": "89560002019101000121" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/CreateMarketingFavorStockResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/CreateMarketingFavorStockResponse.json index aec8d898..099c8986 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/CreateMarketingFavorStockResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/CreateMarketingFavorStockResponse.json @@ -1,4 +1,4 @@ { "stock_id": "98065001", "create_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/GetMarketingFavorStockByStockIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/GetMarketingFavorStockByStockIdResponse.json index af089bc1..706a8cd8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/GetMarketingFavorStockByStockIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/GetMarketingFavorStockByStockIdResponse.json @@ -10,7 +10,7 @@ "max_amount": 5000, "max_amount_by_day": 400, "max_coupons_per_user": 3, - "trade_type": [ "OTHER", "APPPAY" ] + "trade_type": ["OTHER", "APPPAY"] }, "available_begin_time": "2015-05-20T13:29:35.120+08:00", "available_end_time": "2015-05-20T13:29:35.120+08:00", @@ -22,4 +22,4 @@ }, "singleitem": true, "stock_type": "NORMAL" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/GetMarketingFavorStockRefundFlowResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/GetMarketingFavorStockRefundFlowResponse.json index ec362ccf..583d5b97 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/GetMarketingFavorStockRefundFlowResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/GetMarketingFavorStockRefundFlowResponse.json @@ -2,4 +2,4 @@ "hash_type": "SHA1", "hash_value": "8ae0eb442c408d2e90d669d6f4ad6b7e6e049d6f", "url": "download://example.csv" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/GetMarketingFavorStockUseFlowResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/GetMarketingFavorStockUseFlowResponse.json index ec362ccf..583d5b97 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/GetMarketingFavorStockUseFlowResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/GetMarketingFavorStockUseFlowResponse.json @@ -2,4 +2,4 @@ "hash_type": "SHA1", "hash_value": "8ae0eb442c408d2e90d669d6f4ad6b7e6e049d6f", "url": "download://example.csv" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/PauseMarketingFavorStockRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/PauseMarketingFavorStockRequest.json index f7ccd18a..65b17de5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/PauseMarketingFavorStockRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/PauseMarketingFavorStockRequest.json @@ -1,3 +1,3 @@ { "stock_creator_mchid": "8956000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/PauseMarketingFavorStockResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/PauseMarketingFavorStockResponse.json index b7aedd4a..5cdbede7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/PauseMarketingFavorStockResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/PauseMarketingFavorStockResponse.json @@ -1,4 +1,4 @@ { "start_time": "2015-05-20T13:29:35.120+08:00", "stock_id": "8965000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/QueryMarketingFavorStockItemsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/QueryMarketingFavorStockItemsResponse.json index daf26731..0aebd510 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/QueryMarketingFavorStockItemsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/QueryMarketingFavorStockItemsResponse.json @@ -3,4 +3,4 @@ "total_count": "200", "offset": "10", "limit": "10" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/QueryMarketingFavorStockMerchantsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/QueryMarketingFavorStockMerchantsResponse.json index 6b1077eb..44ce7a9e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/QueryMarketingFavorStockMerchantsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/QueryMarketingFavorStockMerchantsResponse.json @@ -1,9 +1,7 @@ { - "data": [ - "2480248941" - ], + "data": ["2480248941"], "limit": 5, "offset": 0, "stock_id": "15019035", "total_count": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/QueryMarketingFavorStocksResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/QueryMarketingFavorStocksResponse.json index 9574a5a1..d81915fd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/QueryMarketingFavorStocksResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/QueryMarketingFavorStocksResponse.json @@ -17,7 +17,7 @@ "transaction_minimum": 100 }, "max_coupons_per_user": 3, - "trade_type": [ "OTHER", "APPPAY" ] + "trade_type": ["OTHER", "APPPAY"] }, "available_begin_time": "2015-05-20T13:29:35.120+08:00", "available_end_time": "2015-05-20T13:29:35.120+08:00", @@ -30,4 +30,3 @@ "limit": 8, "offset": 1 } - \ No newline at end of file diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/RestartMarketingFavorStockResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/RestartMarketingFavorStockResponse.json index b7aedd4a..5cdbede7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/RestartMarketingFavorStockResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/RestartMarketingFavorStockResponse.json @@ -1,4 +1,4 @@ { "start_time": "2015-05-20T13:29:35.120+08:00", "stock_id": "8965000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/StartMarketingFavorStockRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/StartMarketingFavorStockRequest.json index f7ccd18a..65b17de5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/StartMarketingFavorStockRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/StartMarketingFavorStockRequest.json @@ -1,3 +1,3 @@ { "stock_creator_mchid": "8956000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/StartMarketingFavorStockResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/StartMarketingFavorStockResponse.json index 630ff928..e24fe4b6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/StartMarketingFavorStockResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/StartMarketingFavorStockResponse.json @@ -1,4 +1,4 @@ { "start_time": "2015-05-20T13:29:35.120+08:00", "stock_id": "9865000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/GetMarketingFavorUserCouponByCouponIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/GetMarketingFavorUserCouponByCouponIdResponse.json index 5b107dfd..01428517 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/GetMarketingFavorUserCouponByCouponIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/GetMarketingFavorUserCouponByCouponIdResponse.json @@ -19,5 +19,4 @@ "coupon_amount": 100, "transaction_minimum": 100 } - -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/QueryMarketingFavorUserCouponsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/QueryMarketingFavorUserCouponsResponse.json index 406523bd..00a0147d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/QueryMarketingFavorUserCouponsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/QueryMarketingFavorUserCouponsResponse.json @@ -39,4 +39,4 @@ "total_count": 100, "limit": 10, "offset": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/SendMarketingFavorUserCouponRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/SendMarketingFavorUserCouponRequest.json index 06f1fe97..bf4a3608 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/SendMarketingFavorUserCouponRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/SendMarketingFavorUserCouponRequest.json @@ -3,4 +3,4 @@ "out_request_no": "89560002019101000121", "appid": "wx233544546545989", "stock_creator_mchid": "8956000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/SendMarketingFavorUserCouponResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/SendMarketingFavorUserCouponResponse.json index 8231e24c..61674a69 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/SendMarketingFavorUserCouponResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingFavor/UsersCoupons/SendMarketingFavorUserCouponResponse.json @@ -1,3 +1,3 @@ { "coupon_id": "9867041" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMedia/UploadMarketingMediaImageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMedia/UploadMarketingMediaImageResponse.json index 99699eaf..ebc49199 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMedia/UploadMarketingMediaImageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMedia/UploadMarketingMediaImageResponse.json @@ -1,3 +1,3 @@ { "media_url": "https://qpic.cn/xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberActivity/CreateMarketingMemberCardActivityRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberActivity/CreateMarketingMemberCardActivityRequest.json index 5d596bf6..337e3866 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberActivity/CreateMarketingMemberCardActivityRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberActivity/CreateMarketingMemberCardActivityRequest.json @@ -1,58 +1,64 @@ { - "card_id": "pbLatjvWOibDc5-TBnbUk1pD12o0", - "activity_name": "良品铺子回馈活动", - "activity_type": "NON_MEMBER_AFTERPAY", - "begin_time": "2020-01-20T13:29:35.120+08:00", - "end_time": "2020-01-29T13:29:35.120+08:00", - "award_send_period": { - "award_send_time": [{ - "begin_time": "2020-01-21T00:00:00.000+08:00", - "end_time": "2020-01-27T00:00:00.000+08:00" - }], - "award_send_day_time": [{ - "begin_day_time": { - "hours": 9, - "minutes": 34, - "seconds": 6 - }, - "end_day_time": { - "hours": 9, - "minutes": 34, - "seconds": 6 - } - }] - }, - "stock_list": [{ - "stock_creator_mchid": "10000022", - "stock_id": "98065001" - }], - "out_request_no": "100002322019090134234sfdf", - "pay_activity_setting": { - "logo_url": "https://wxpaylogo.qpic.cn/wxpaylogo/PiajxSqBRaEIPAeia7Imvtsn7sYGNcEj33YzVvJF88ECQ19LXId8ZL2Q/0", - "activity_second_title": "湖南麻辣美食券", - "mchid_list": ["10000022", "10000023"], - "activate_setting": { - "activate_type": "AUTO_ACTIVATE", - "activate_url": "https://w.url.cn/s/Ahz3p2C", - "activate_miniprogram": { - "activate_appid": "wxea9c30a90fs8d3fe", - "activate_path": "pages/activate/activate" - } - }, - "payment_setting": { - "payment_mode": { - "payment_scene_list": ["APP"] - }, - "limit_bank": "CFT", - "goods_tags": ["xxx", "yyy"] - } - }, - "miniprogram_activity_setting": { - "outer_str": ["领取渠道1", "领取渠道2"], - "award_jump_deploy": { - "mini_program_appid": "wxc0b84a53ed8e8d29", - "mini_program_path": "mall/pages/List", - "button_text": "点击" - } - } -} \ No newline at end of file + "card_id": "pbLatjvWOibDc5-TBnbUk1pD12o0", + "activity_name": "良品铺子回馈活动", + "activity_type": "NON_MEMBER_AFTERPAY", + "begin_time": "2020-01-20T13:29:35.120+08:00", + "end_time": "2020-01-29T13:29:35.120+08:00", + "award_send_period": { + "award_send_time": [ + { + "begin_time": "2020-01-21T00:00:00.000+08:00", + "end_time": "2020-01-27T00:00:00.000+08:00" + } + ], + "award_send_day_time": [ + { + "begin_day_time": { + "hours": 9, + "minutes": 34, + "seconds": 6 + }, + "end_day_time": { + "hours": 9, + "minutes": 34, + "seconds": 6 + } + } + ] + }, + "stock_list": [ + { + "stock_creator_mchid": "10000022", + "stock_id": "98065001" + } + ], + "out_request_no": "100002322019090134234sfdf", + "pay_activity_setting": { + "logo_url": "https://wxpaylogo.qpic.cn/wxpaylogo/PiajxSqBRaEIPAeia7Imvtsn7sYGNcEj33YzVvJF88ECQ19LXId8ZL2Q/0", + "activity_second_title": "湖南麻辣美食券", + "mchid_list": ["10000022", "10000023"], + "activate_setting": { + "activate_type": "AUTO_ACTIVATE", + "activate_url": "https://w.url.cn/s/Ahz3p2C", + "activate_miniprogram": { + "activate_appid": "wxea9c30a90fs8d3fe", + "activate_path": "pages/activate/activate" + } + }, + "payment_setting": { + "payment_mode": { + "payment_scene_list": ["APP"] + }, + "limit_bank": "CFT", + "goods_tags": ["xxx", "yyy"] + } + }, + "miniprogram_activity_setting": { + "outer_str": ["领取渠道1", "领取渠道2"], + "award_jump_deploy": { + "mini_program_appid": "wxc0b84a53ed8e8d29", + "mini_program_path": "mall/pages/List", + "button_text": "点击" + } + } +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberActivity/CreateMarketingMemberCardActivityResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberActivity/CreateMarketingMemberCardActivityResponse.json index bd5837d6..a48ed260 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberActivity/CreateMarketingMemberCardActivityResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberActivity/CreateMarketingMemberCardActivityResponse.json @@ -38,24 +38,24 @@ ], "out_request_no": "100002322019090134234sfdf", "pay_activity_setting": { - "logo_url": "https://wxpaylogo.qpic.cn/wxpaylogo/PiajxSqBRaEIPAeia7Imvtsn7sYGNcEj33YzVvJF88ECQ19LXId8ZL2Q/0", - "activity_second_title": "湖南麻辣美食券", - "mchid_list": ["10000022", "10000023"], - "activate_setting": { - "activate_type": "AUTO_ACTIVATE", - "activate_url": "https://w.url.cn/s/Ahz3p2C", - "activate_miniprogram": { - "activate_appid": "wxea9c30a90fs8d3fe", - "activate_path": "pages/activate/activate" - } - }, - "payment_setting": { - "payment_mode": { - "payment_scene_list": ["APP"] - }, - "limit_bank": "CFT", - "goods_tags": ["xxx", "yyy"] - } + "logo_url": "https://wxpaylogo.qpic.cn/wxpaylogo/PiajxSqBRaEIPAeia7Imvtsn7sYGNcEj33YzVvJF88ECQ19LXId8ZL2Q/0", + "activity_second_title": "湖南麻辣美食券", + "mchid_list": ["10000022", "10000023"], + "activate_setting": { + "activate_type": "AUTO_ACTIVATE", + "activate_url": "https://w.url.cn/s/Ahz3p2C", + "activate_miniprogram": { + "activate_appid": "wxea9c30a90fs8d3fe", + "activate_path": "pages/activate/activate" + } + }, + "payment_setting": { + "payment_mode": { + "payment_scene_list": ["APP"] + }, + "limit_bank": "CFT", + "goods_tags": ["xxx", "yyy"] + } }, "miniprogram_activity_setting": { "outer_str": ["领取渠道1", "领取渠道2"], diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/ActivateMarketingMemberCardOpenCardCodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/ActivateMarketingMemberCardOpenCardCodeRequest.json index 1fd3a151..9625eadf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/ActivateMarketingMemberCardOpenCardCodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/ActivateMarketingMemberCardOpenCardCodeRequest.json @@ -1,3 +1,3 @@ { "membership_number": "316510891298" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardPermissionTokenRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardPermissionTokenRequest.json index f5177685..becafd62 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardPermissionTokenRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardPermissionTokenRequest.json @@ -5,4 +5,4 @@ "activate_appid": "wxea9c30a90fs8d3fe", "activate_path": "pages/activate/activate", "outer_str": "szwxtd" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardPermissionTokenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardPermissionTokenResponse.json index e29a36b3..5bbdede0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardPermissionTokenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardPermissionTokenResponse.json @@ -1,3 +1,3 @@ { "permission_token": "EhhEF0Jt0uDLPK6Cr70KCrJmkTtfPPE222gUFsdP87CF4RqzpIdnNpDsbOD1kpsNuioecawJqEUfANcDhLrSA3xadU4pD6IJ7tpLEheA3kS1b6" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardQrcodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardQrcodeRequest.json index bc3ea657..a882b5cb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardQrcodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardQrcodeRequest.json @@ -4,4 +4,4 @@ "activate_appid": "wxea9c30a90fs8d3fe", "activate_path": "pages/activate/activate", "outer_str": "szwxtd" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardQrcodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardQrcodeResponse.json index 650a3a85..845e9196 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardQrcodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/CreateMarketingMemberCardOpenCardQrcodeResponse.json @@ -1,3 +1,3 @@ { "url": "https://w.url.cn/s/Ahz3p2C" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/GetMarketingMemberCardOpenActivateInformationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/GetMarketingMemberCardOpenActivateInformationResponse.json index d8b87e1f..b1f90c0e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/GetMarketingMemberCardOpenActivateInformationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Activation/GetMarketingMemberCardOpenActivateInformationResponse.json @@ -12,10 +12,8 @@ { "name": "喜欢的运动", "value": "篮球", - "value_list": [ - "羽毛球,足球,乒乓球" - ] + "value_list": ["羽毛球,足球,乒乓球"] } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Callback/GetMarketingMemberCardOpenCallbackResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Callback/GetMarketingMemberCardOpenCallbackResponse.json index aadae39d..6bf0ea76 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Callback/GetMarketingMemberCardOpenCallbackResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Callback/GetMarketingMemberCardOpenCallbackResponse.json @@ -1,4 +1,4 @@ { "notify_url": "https://shangjia.com", "mchid": "99999105" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Callback/UpdateMarketingMemberCardOpenCallbackRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Callback/UpdateMarketingMemberCardOpenCallbackRequest.json index c8d417fc..8322a661 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Callback/UpdateMarketingMemberCardOpenCallbackRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Callback/UpdateMarketingMemberCardOpenCallbackRequest.json @@ -1,3 +1,3 @@ { "notify_url": "https://shangjia.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Callback/UpdateMarketingMemberCardOpenCallbackResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Callback/UpdateMarketingMemberCardOpenCallbackResponse.json index aadae39d..6bf0ea76 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Callback/UpdateMarketingMemberCardOpenCallbackResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Callback/UpdateMarketingMemberCardOpenCallbackResponse.json @@ -1,4 +1,4 @@ { "notify_url": "https://shangjia.com", "mchid": "99999105" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/CreateMarketingMemberCardOpenCardRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/CreateMarketingMemberCardOpenCardRequest.json index 6a682bde..4e8b9c87 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/CreateMarketingMemberCardOpenCardRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/CreateMarketingMemberCardOpenCardRequest.json @@ -29,7 +29,12 @@ "balance_url": "https://xxx.com" }, "user_information_form": { - "common_field_list": ["USER_FORM_FLAG_MOBILE", "USER_FORM_FLAG_SEX", "USER_FORM_FLAG_NAME", "USER_FORM_FLAG_BIRTHDAY"], + "common_field_list": [ + "USER_FORM_FLAG_MOBILE", + "USER_FORM_FLAG_SEX", + "USER_FORM_FLAG_NAME", + "USER_FORM_FLAG_BIRTHDAY" + ], "custom_field_list": [ { "type": "TEXT", diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/CreateMarketingMemberCardOpenCardResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/CreateMarketingMemberCardOpenCardResponse.json index 93d76abc..ef88dd86 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/CreateMarketingMemberCardOpenCardResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/CreateMarketingMemberCardOpenCardResponse.json @@ -34,7 +34,12 @@ "balance_url": "https://xxx.com" }, "user_information_form": { - "common_field_list": ["USER_FORM_FLAG_MOBILE", "USER_FORM_FLAG_SEX", "USER_FORM_FLAG_NAME", "USER_FORM_FLAG_BIRTHDAY"], + "common_field_list": [ + "USER_FORM_FLAG_MOBILE", + "USER_FORM_FLAG_SEX", + "USER_FORM_FLAG_NAME", + "USER_FORM_FLAG_BIRTHDAY" + ], "custom_field_list": [ { "type": "TEXT", diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/GetMarketingMemberCardOpenCardByCardIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/GetMarketingMemberCardOpenCardByCardIdResponse.json index d6aa6bb0..2f19445d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/GetMarketingMemberCardOpenCardByCardIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/GetMarketingMemberCardOpenCardByCardIdResponse.json @@ -35,7 +35,12 @@ }, "user_information_form": { "can_modify_after_activate": false, - "common_field_list": ["USER_FORM_FLAG_MOBILE", "USER_FORM_FLAG_SEX", "USER_FORM_FLAG_NAME", "USER_FORM_FLAG_BIRTHDAY"], + "common_field_list": [ + "USER_FORM_FLAG_MOBILE", + "USER_FORM_FLAG_SEX", + "USER_FORM_FLAG_NAME", + "USER_FORM_FLAG_BIRTHDAY" + ], "custom_field_list": [ { "type": "TEXT", diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/QueryMarketingMemberCardOpenCardsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/QueryMarketingMemberCardOpenCardsResponse.json index 54dc456a..f349d4a5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/QueryMarketingMemberCardOpenCardsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingMemberCardOpen/Card/QueryMarketingMemberCardOpenCardsResponse.json @@ -37,7 +37,12 @@ }, "user_information_form": { "can_modify_after_activate": false, - "common_field_list": ["USER_FORM_FLAG_MOBILE", "USER_FORM_FLAG_SEX", "USER_FORM_FLAG_NAME", "USER_FORM_FLAG_BIRTHDAY"], + "common_field_list": [ + "USER_FORM_FLAG_MOBILE", + "USER_FORM_FLAG_SEX", + "USER_FORM_FLAG_NAME", + "USER_FORM_FLAG_BIRTHDAY" + ], "custom_field_list": [ { "type": "TEXT", diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/BuildMarketingPartnershipRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/BuildMarketingPartnershipRequest.json index ec300f47..b7b62678 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/BuildMarketingPartnershipRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/BuildMarketingPartnershipRequest.json @@ -7,4 +7,4 @@ "appid": "wx4e1916a585d1f4e9", "type": "APPID" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/BuildMarketingPartnershipResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/BuildMarketingPartnershipResponse.json index 2c47e210..5521ff8d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/BuildMarketingPartnershipResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/BuildMarketingPartnershipResponse.json @@ -1,7 +1,7 @@ { "authorized_data": { "business_type": "FAVOR_STOCK", - "scenarios": [ "" ], + "scenarios": [""], "stock_id": "2433405" }, "update_time": "2015-05-20T13:29:35.120+08:00", @@ -12,4 +12,4 @@ "create_time": "2015-05-20T13:29:35.120+08:00", "build_time": "2015-05-20T13:29:35.120+08:00", "state": "ESTABLISHED" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/QueryMarketingPartnershipsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/QueryMarketingPartnershipsResponse.json index c847285d..f26287a5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/QueryMarketingPartnershipsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/QueryMarketingPartnershipsResponse.json @@ -32,4 +32,4 @@ "offset": 0, "total_count": 2, "limit": 5 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/TerminateMarketingPartnershipRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/TerminateMarketingPartnershipRequest.json index ec300f47..b7b62678 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/TerminateMarketingPartnershipRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/TerminateMarketingPartnershipRequest.json @@ -7,4 +7,4 @@ "appid": "wx4e1916a585d1f4e9", "type": "APPID" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/TerminateMarketingPartnershipResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/TerminateMarketingPartnershipResponse.json index fbb54b34..c387a08b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/TerminateMarketingPartnershipResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPartnerships/TerminateMarketingPartnershipResponse.json @@ -1,3 +1,3 @@ { "terminate_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/AddMarketingPayGiftActivityMerchantRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/AddMarketingPayGiftActivityMerchantRequest.json index c70870b4..238baf94 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/AddMarketingPayGiftActivityMerchantRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/AddMarketingPayGiftActivityMerchantRequest.json @@ -1,4 +1,4 @@ { - "merchant_id_list": [ "100123456", "100123457" ], + "merchant_id_list": ["100123456", "100123457"], "add_request_no": "100002322019090134234sfdf" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/AddMarketingPayGiftActivityMerchantResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/AddMarketingPayGiftActivityMerchantResponse.json index 4a83902b..1ff8b9ed 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/AddMarketingPayGiftActivityMerchantResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/AddMarketingPayGiftActivityMerchantResponse.json @@ -11,4 +11,4 @@ } ], "add_time": "2015-05-20T13:29:35+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/CreateMarketingPayGiftActivityUniqueThresholdActivityRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/CreateMarketingPayGiftActivityUniqueThresholdActivityRequest.json index dd676ff2..640a729a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/CreateMarketingPayGiftActivityUniqueThresholdActivityRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/CreateMarketingPayGiftActivityUniqueThresholdActivityRequest.json @@ -37,17 +37,11 @@ } ], "merchant_option": "MANUAL_INPUT_MERCHANT", - "merchant_id_list": [ - "10000022", - "10000023" - ] + "merchant_id_list": ["10000022", "10000023"] }, "advanced_setting": { "delivery_user_category": "DELIVERY_MEMBER_PERSON", "merchant_member_appid": "34567890", - "goods_tags": [ - "xxx", - "yyy" - ] + "goods_tags": ["xxx", "yyy"] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/CreateMarketingPayGiftActivityUniqueThresholdActivityResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/CreateMarketingPayGiftActivityUniqueThresholdActivityResponse.json index ffaba823..c60bee75 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/CreateMarketingPayGiftActivityUniqueThresholdActivityResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/CreateMarketingPayGiftActivityUniqueThresholdActivityResponse.json @@ -1,4 +1,4 @@ { "activity_id": "10028001", "create_time": "2015-05-20T13:29:35+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/DeleteMarketingPayGiftActivityMerchantRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/DeleteMarketingPayGiftActivityMerchantRequest.json index 6982ca34..16799701 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/DeleteMarketingPayGiftActivityMerchantRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/DeleteMarketingPayGiftActivityMerchantRequest.json @@ -1,4 +1,4 @@ { - "merchant_id_list": [ "100123456", "100123457" ], + "merchant_id_list": ["100123456", "100123457"], "delete_request_no": "100002322019090134234sfdf" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/DeleteMarketingPayGiftActivityMerchantResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/DeleteMarketingPayGiftActivityMerchantResponse.json index f56c4286..5c130166 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/DeleteMarketingPayGiftActivityMerchantResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/DeleteMarketingPayGiftActivityMerchantResponse.json @@ -1,4 +1,4 @@ { "delete_time": "2015-05-20T13:29:35+08:00", "activity_id": "126002309" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/GetMarketingPayGiftActivityByActivityIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/GetMarketingPayGiftActivityByActivityIdResponse.json index 1e0c9f54..30c3b55e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/GetMarketingPayGiftActivityByActivityIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/GetMarketingPayGiftActivityByActivityIdResponse.json @@ -45,10 +45,7 @@ "advanced_setting": { "delivery_user_category": "DELIVERY_MEMBER_PERSON", "merchant_member_appid": "34567890", - "goods_tags": [ - "xxx", - "yyy" - ] + "goods_tags": ["xxx", "yyy"] }, "activity_status": "CREATE_ACT_STATUS", "creator_merchant_id": "10000022", @@ -57,4 +54,4 @@ "recovery_time": "2015-05-20T13:29:35+08:00", "create_time": "2015-05-20T13:29:35+08:00", "update_time": "2015-05-20T13:29:35+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/QueryMarketingPayGiftActivitiesResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/QueryMarketingPayGiftActivitiesResponse.json index 3adb74d2..852c1df4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/QueryMarketingPayGiftActivitiesResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/QueryMarketingPayGiftActivitiesResponse.json @@ -18,9 +18,7 @@ "activity_type": "FULL_SEND_ACT_TYPE", "advanced_setting": { "delivery_user_category": "DELIVERY_ALL_PERSON", - "goods_tags": [ - "0602-1047-99" - ] + "goods_tags": ["0602-1047-99"] }, "award_send_rule": { "full_send_rule": { @@ -61,9 +59,7 @@ "activity_type": "FULL_SEND_ACT_TYPE", "advanced_setting": { "delivery_user_category": "DELIVERY_ALL_PERSON", - "goods_tags": [ - "0601-1147-99" - ] + "goods_tags": ["0601-1147-99"] }, "award_send_rule": { "full_send_rule": { @@ -90,4 +86,4 @@ "total_count": 2, "offset": 1, "limit": 20 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/QueryMarketingPayGiftActivityGoodsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/QueryMarketingPayGiftActivityGoodsResponse.json index 30a31367..51eb826e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/QueryMarketingPayGiftActivityGoodsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/QueryMarketingPayGiftActivityGoodsResponse.json @@ -10,4 +10,4 @@ "offset": 4, "limit": 20, "activity_id": "10028001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/QueryMarketingPayGiftActivityMerchantsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/QueryMarketingPayGiftActivityMerchantsResponse.json index 930b8ed0..380862f8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/QueryMarketingPayGiftActivityMerchantsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/QueryMarketingPayGiftActivityMerchantsResponse.json @@ -11,4 +11,4 @@ "offset": 4, "limit": 20, "activity_id": "126002309" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/TerminateMarketingPayGiftActivityResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/TerminateMarketingPayGiftActivityResponse.json index c159a91c..f5bc8f7a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/TerminateMarketingPayGiftActivityResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MarketingPayGiftActivity/TerminateMarketingPayGiftActivityResponse.json @@ -1,4 +1,4 @@ { "terminate_time": "2015-05-20T13:29:35+08:00", "activity_id": "10028001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundBalance/GetMerchantFundBalanceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundBalance/GetMerchantFundBalanceResponse.json index fd9a9a08..5a7e1d20 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundBalance/GetMerchantFundBalanceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundBalance/GetMerchantFundBalanceResponse.json @@ -1,4 +1,4 @@ { "available_amount": 10000, "pending_amount": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundBalance/GetMerchantFundDayendBalanceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundBalance/GetMerchantFundDayendBalanceResponse.json index fd9a9a08..5a7e1d20 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundBalance/GetMerchantFundDayendBalanceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundBalance/GetMerchantFundDayendBalanceResponse.json @@ -1,4 +1,4 @@ { "available_amount": 10000, "pending_amount": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundIncomeRecords/QueryMerchantFundMerchantIncomeRecordsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundIncomeRecords/QueryMerchantFundMerchantIncomeRecordsResponse.json index 6ebcaaa4..76c22df6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundIncomeRecords/QueryMerchantFundMerchantIncomeRecordsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundIncomeRecords/QueryMerchantFundMerchantIncomeRecordsResponse.json @@ -15,4 +15,4 @@ "bank_account_number": "****6473" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundIncomeRecords/QueryMerchantFundPartnerIncomeRecordsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundIncomeRecords/QueryMerchantFundPartnerIncomeRecordsResponse.json index 28f6a57f..64befb17 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundIncomeRecords/QueryMerchantFundPartnerIncomeRecordsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundIncomeRecords/QueryMerchantFundPartnerIncomeRecordsResponse.json @@ -15,4 +15,4 @@ "bank_account_number": "****6473" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/Bill/GetMerchantFundWithdrawBillResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/Bill/GetMerchantFundWithdrawBillResponse.json index bc958bce..1915cf58 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/Bill/GetMerchantFundWithdrawBillResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/Bill/GetMerchantFundWithdrawBillResponse.json @@ -2,4 +2,4 @@ "hash_type": "SHA1", "hash_value": "79bb0f45fc4c42234a918000b2668d689e2bde04", "download_url": "https://xxxx.xxx.xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/CreateMerchantFundWithdrawRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/CreateMerchantFundWithdrawRequest.json index 30222e8c..863891fc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/CreateMerchantFundWithdrawRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/CreateMerchantFundWithdrawRequest.json @@ -4,4 +4,4 @@ "remark": "交易提现", "bank_memo": "xx平台提现", "account_type": "BASIC" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/CreateMerchantFundWithdrawResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/CreateMerchantFundWithdrawResponse.json index ebe0dc10..bbee0355 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/CreateMerchantFundWithdrawResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/CreateMerchantFundWithdrawResponse.json @@ -1,4 +1,4 @@ { "withdraw_id": "123219371982379127391327917929791239112123", "out_request_no": "2019061122220000012122" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/GetMerchantFundWithdrawByOutRequestNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/GetMerchantFundWithdrawByOutRequestNumberResponse.json index 0afa9b6f..c8ee8718 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/GetMerchantFundWithdrawByOutRequestNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/GetMerchantFundWithdrawByOutRequestNumberResponse.json @@ -13,4 +13,4 @@ "account_number": "1178", "account_bank": "招商银行", "bank_name": "中国工商银行股份有限公司深圳软件园支行" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/GetMerchantFundWithdrawByWithdrawIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/GetMerchantFundWithdrawByWithdrawIdResponse.json index 0afa9b6f..c8ee8718 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/GetMerchantFundWithdrawByWithdrawIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantFundWithdraw/GetMerchantFundWithdrawByWithdrawIdResponse.json @@ -13,4 +13,4 @@ "account_number": "1178", "account_bank": "招商银行", "bank_name": "中国工商银行股份有限公司深圳软件园支行" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantMedia/UploadMerchantMediaImageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantMedia/UploadMerchantMediaImageResponse.json index 3b134421..bfe6b341 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantMedia/UploadMerchantMediaImageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantMedia/UploadMerchantMediaImageResponse.json @@ -1,3 +1,3 @@ { "media_id": "H1ihR9JUtVj-J7CJqBUY5ZOrG_Je75H-rKhTG7FUmg9sxNTbRN54dFiUHnhgrBQ6EKeHoGcHTJMHn5TAuLVjHUQDBInSWXcIHYXOeRa2OHA " -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantMedia/UploadMerchantMediaVideoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantMedia/UploadMerchantMediaVideoResponse.json index 3b134421..bfe6b341 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantMedia/UploadMerchantMediaVideoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantMedia/UploadMerchantMediaVideoResponse.json @@ -1,3 +1,3 @@ { "media_id": "H1ihR9JUtVj-J7CJqBUY5ZOrG_Je75H-rKhTG7FUmg9sxNTbRN54dFiUHnhgrBQ6EKeHoGcHTJMHn5TAuLVjHUQDBInSWXcIHYXOeRa2OHA " -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/CreateMerchantRiskManageViolationNotificationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/CreateMerchantRiskManageViolationNotificationRequest.json index 0bde8cd9..d900fa8b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/CreateMerchantRiskManageViolationNotificationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/CreateMerchantRiskManageViolationNotificationRequest.json @@ -1,3 +1,3 @@ { "notify_url": "https://www.weixin.qq.com/wxpay/pay.php" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/CreateMerchantRiskManageViolationNotificationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/CreateMerchantRiskManageViolationNotificationResponse.json index 0bde8cd9..d900fa8b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/CreateMerchantRiskManageViolationNotificationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/CreateMerchantRiskManageViolationNotificationResponse.json @@ -1,3 +1,3 @@ { "notify_url": "https://www.weixin.qq.com/wxpay/pay.php" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/GetMerchantRiskManageViolationNotificationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/GetMerchantRiskManageViolationNotificationResponse.json index 0bde8cd9..d900fa8b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/GetMerchantRiskManageViolationNotificationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/GetMerchantRiskManageViolationNotificationResponse.json @@ -1,3 +1,3 @@ { "notify_url": "https://www.weixin.qq.com/wxpay/pay.php" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/UpdateMerchantRiskManageViolationNotificationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/UpdateMerchantRiskManageViolationNotificationRequest.json index 0bde8cd9..d900fa8b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/UpdateMerchantRiskManageViolationNotificationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/UpdateMerchantRiskManageViolationNotificationRequest.json @@ -1,3 +1,3 @@ { "notify_url": "https://www.weixin.qq.com/wxpay/pay.php" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/UpdateMerchantRiskManageViolationNotificationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/UpdateMerchantRiskManageViolationNotificationResponse.json index 0bde8cd9..d900fa8b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/UpdateMerchantRiskManageViolationNotificationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantRiskManage/UpdateMerchantRiskManageViolationNotificationResponse.json @@ -1,3 +1,3 @@ { "notify_url": "https://www.weixin.qq.com/wxpay/pay.php" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/CreateMerchantServiceComplaintNotificationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/CreateMerchantServiceComplaintNotificationRequest.json index 9adfb481..c432d88e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/CreateMerchantServiceComplaintNotificationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/CreateMerchantServiceComplaintNotificationRequest.json @@ -1,3 +1,3 @@ { "url": "https://www.xxx.com/notify" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/CreateMerchantServiceComplaintNotificationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/CreateMerchantServiceComplaintNotificationResponse.json index bdbcf083..62ab0c80 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/CreateMerchantServiceComplaintNotificationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/CreateMerchantServiceComplaintNotificationResponse.json @@ -1,4 +1,4 @@ { "mchid": "1900012181", "url": "https://www.xxx.com/notify" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/GetMerchantServiceComplaintNotificationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/GetMerchantServiceComplaintNotificationResponse.json index bdbcf083..62ab0c80 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/GetMerchantServiceComplaintNotificationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/GetMerchantServiceComplaintNotificationResponse.json @@ -1,4 +1,4 @@ { "mchid": "1900012181", "url": "https://www.xxx.com/notify" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/UpdateMerchantServiceComplaintNotificationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/UpdateMerchantServiceComplaintNotificationRequest.json index 9adfb481..c432d88e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/UpdateMerchantServiceComplaintNotificationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/UpdateMerchantServiceComplaintNotificationRequest.json @@ -1,3 +1,3 @@ { "url": "https://www.xxx.com/notify" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/UpdateMerchantServiceComplaintNotificationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/UpdateMerchantServiceComplaintNotificationResponse.json index bdbcf083..62ab0c80 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/UpdateMerchantServiceComplaintNotificationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintNotifications/UpdateMerchantServiceComplaintNotificationResponse.json @@ -1,4 +1,4 @@ { "mchid": "1900012181", "url": "https://www.xxx.com/notify" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/CreateMerchantServiceComplaintResponseRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/CreateMerchantServiceComplaintResponseRequest.json index 626dfec8..3caec025 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/CreateMerchantServiceComplaintResponseRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/CreateMerchantServiceComplaintResponseRequest.json @@ -3,7 +3,5 @@ "response_content": "已与用户沟通解决", "jump_url": "https://www.xxx.com/notify", "jump_url_text": "查看订单详情", - "response_images": [ - "file23578_21798531.jpg" - ] -} \ No newline at end of file + "response_images": ["file23578_21798531.jpg"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/GetMerchantServiceComplaintByComplaintIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/GetMerchantServiceComplaintByComplaintIdResponse.json index 8202e78d..8bf16fa9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/GetMerchantServiceComplaintByComplaintIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/GetMerchantServiceComplaintByComplaintIdResponse.json @@ -25,4 +25,4 @@ "incoming_user_response": true, "problem_description": "不满意商家服务", "user_complaint_times": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/QueryMerchantServiceComplaintNegotiationHistoriesResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/QueryMerchantServiceComplaintNegotiationHistoriesResponse.json index d0861a3e..e3f91912 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/QueryMerchantServiceComplaintNegotiationHistoriesResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/QueryMerchantServiceComplaintNegotiationHistoriesResponse.json @@ -14,12 +14,10 @@ "operate_time": "2015-05-20T13:29:35.120+08:00", "operate_type": "USER_CREATE_COMPLAINT", "operate_details": "已与用户电话沟通解决", - "image_list": [ - "https://qpic.cn/xxx" - ] + "image_list": ["https://qpic.cn/xxx"] } ], "limit": 10, "offset": 50, "total_count": 1000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/QueryMerchantServiceComplaintsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/QueryMerchantServiceComplaintsResponse.json index 4da11e0b..b32ec245 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/QueryMerchantServiceComplaintsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/QueryMerchantServiceComplaintsResponse.json @@ -35,4 +35,4 @@ "limit": 5, "offset": 10, "total_count": 1000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/SetMerchantServiceComplaintCompleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/SetMerchantServiceComplaintCompleteRequest.json index 9cb1135d..ec631d00 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/SetMerchantServiceComplaintCompleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/SetMerchantServiceComplaintCompleteRequest.json @@ -1,3 +1,3 @@ { "complainted_mchid": "1900012181" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/UpdateMerchantServiceComplaintRefundProgressRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/UpdateMerchantServiceComplaintRefundProgressRequest.json index 9fcdae6f..dce96e94 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/UpdateMerchantServiceComplaintRefundProgressRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/ComplaintsV2/UpdateMerchantServiceComplaintRefundProgressRequest.json @@ -1,7 +1,7 @@ { "action": "REJECT", "launch_refund_day": 3, - "reject_media_list": [ "file23578_21798531.jpg" ], + "reject_media_list": ["file23578_21798531.jpg"], "reject_reason": "拒绝退款", "remark": "不同意退款" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/UploadMerchantServiceImageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/UploadMerchantServiceImageResponse.json index 99fed1ff..e782667a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/UploadMerchantServiceImageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/MerchantService/UploadMerchantServiceImageResponse.json @@ -1,3 +1,3 @@ { "media_id": "BB04A5DEEFEA18D4F2554C1EDD3B610B.bmp" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PAPPay/NotifyPAPPayContractsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PAPPay/NotifyPAPPayContractsRequest.json index 9044f0cb..bc0b0681 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PAPPay/NotifyPAPPayContractsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PAPPay/NotifyPAPPayContractsRequest.json @@ -5,4 +5,4 @@ "amount": 1, "currency": "CNY" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerPAPPay/NotifyPartnerPAPPayContractsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerPAPPay/NotifyPartnerPAPPayContractsRequest.json index 1340bbb0..e7dec808 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerPAPPay/NotifyPartnerPAPPayContractsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerPAPPay/NotifyPartnerPAPPayContractsRequest.json @@ -7,4 +7,4 @@ }, "sub_mchid": "12345512", "sub_appid": "wxd678efh567hg6787" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/CreatePartnerTransferBatchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/CreatePartnerTransferBatchRequest.json index f26a835a..99682906 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/CreatePartnerTransferBatchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/CreatePartnerTransferBatchRequest.json @@ -18,4 +18,4 @@ ], "sp_appid": "wxf636efh567hg4388", "transfer_purpose": "COMMISSION" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/CreatePartnerTransferBatchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/CreatePartnerTransferBatchResponse.json index 57ba85e0..5d093ded 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/CreatePartnerTransferBatchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/CreatePartnerTransferBatchResponse.json @@ -2,4 +2,4 @@ "out_batch_no": "plfk2020042013", "batch_id": "1030000071100999991182020050700019480001", "create_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchByBatchIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchByBatchIdResponse.json index 195bae4c..e68d9094 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchByBatchIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchByBatchIdResponse.json @@ -26,4 +26,4 @@ } ], "transfer_purpose": "COMMISSION" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchByOutBatchNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchByOutBatchNumberResponse.json index 195bae4c..e68d9094 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchByOutBatchNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchByOutBatchNumberResponse.json @@ -26,4 +26,4 @@ } ], "transfer_purpose": "COMMISSION" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchDetailByDetailIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchDetailByDetailIdResponse.json index 9a221567..743e3e50 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchDetailByDetailIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchDetailByDetailIdResponse.json @@ -13,4 +13,4 @@ "username": "757b340b45ebef5467rter35gf464344v3542sdf4t6re4tb4f54ty45t4yyry45", "initiate_time": "2015-05-20T13:29:35.120+08:00", "update_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchDetailByOutDetailNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchDetailByOutDetailNumberResponse.json index 9a221567..743e3e50 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchDetailByOutDetailNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PartnerTransfer/Batches/GetPartnerTransferBatchDetailByOutDetailNumberResponse.json @@ -13,4 +13,4 @@ "username": "757b340b45ebef5467rter35gf464344v3542sdf4t6re4tb4f54ty45t4yyry45", "initiate_time": "2015-05-20T13:29:35.120+08:00", "update_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/ClosePayPartnerTransactionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/ClosePayPartnerTransactionRequest.json index 2e09be83..0af7e54e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/ClosePayPartnerTransactionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/ClosePayPartnerTransactionRequest.json @@ -1,4 +1,4 @@ { "sp_mchid": "1900007XXX", "sub_mchid": "1900008XXX" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionAppRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionAppRequest.json index bdd7e2ca..f87c1d63 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionAppRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionAppRequest.json @@ -10,4 +10,4 @@ "total": 1, "currency": "CNY" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionAppResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionAppResponse.json index c6ad959b..df5745da 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionAppResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionAppResponse.json @@ -1,3 +1,3 @@ { "prepay_id": "wx26115431944423b7abc1d67996baf00000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionH5Request.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionH5Request.json index 8519b303..07777915 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionH5Request.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionH5Request.json @@ -15,4 +15,4 @@ "type": "Wap" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionH5Response.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionH5Response.json index 30c11776..b5abd06b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionH5Response.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionH5Response.json @@ -1,3 +1,3 @@ { "h5_url": "https://wx.tenpay.com/cgi-bin/mmpayweb-bin/checkmweb?prepay_id=wx2016121516420242444321ca0631331346&package=1405458241" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionJsapiRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionJsapiRequest.json index 825b693c..21f81d9e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionJsapiRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionJsapiRequest.json @@ -13,4 +13,4 @@ "payer": { "sp_openid": "o4GgauInH_RCEdvrrNGrntXDuXXX" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionJsapiResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionJsapiResponse.json index 289a5274..7f3ed5b7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionJsapiResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionJsapiResponse.json @@ -1,3 +1,3 @@ { "prepay_id": "wx2611215250487459928b659bd466620000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionNativeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionNativeRequest.json index 80045612..a87b5043 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionNativeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionNativeRequest.json @@ -10,4 +10,4 @@ "total": 1, "currency": "CNY" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionNativeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionNativeResponse.json index d5a929a5..97fdb846 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionNativeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/CreatePayPartnerTransactionNativeResponse.json @@ -1,3 +1,3 @@ { "code_url": "weixin://wxpay/bizpayurl?pr=qnu8GBtzz" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/GetPayPartnerTransactionByIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/GetPayPartnerTransactionByIdResponse.json index 5abc04be..6660b61b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/GetPayPartnerTransactionByIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/GetPayPartnerTransactionByIdResponse.json @@ -22,4 +22,4 @@ "trade_state_desc": "支付成功", "trade_type": "JSAPI", "transaction_id": "4200000985202103031441826014" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/GetPayPartnerTransactionByOutTradeNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/GetPayPartnerTransactionByOutTradeNumberResponse.json index 5abc04be..6660b61b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/GetPayPartnerTransactionByOutTradeNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayPartnerTransactions/GetPayPartnerTransactionByOutTradeNumberResponse.json @@ -22,4 +22,4 @@ "trade_state_desc": "支付成功", "trade_type": "JSAPI", "transaction_id": "4200000985202103031441826014" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreBill/GetPayScoreMerchantBillResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreBill/GetPayScoreMerchantBillResponse.json index 30d2555e..02932268 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreBill/GetPayScoreMerchantBillResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreBill/GetPayScoreMerchantBillResponse.json @@ -10,4 +10,4 @@ "nonce": "5K8264ILTKCH16CQ2502SI8ZNMTM67VS" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/ApplyPayScorePartnerPermissionsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/ApplyPayScorePartnerPermissionsRequest.json index f99cdb38..6db62cbd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/ApplyPayScorePartnerPermissionsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/ApplyPayScorePartnerPermissionsRequest.json @@ -5,4 +5,4 @@ "sub_mchid": "1230000109", "authorization_code": "1234323JKHDFE1243252", "notify_url": "http://www.qq.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/ApplyPayScorePartnerPermissionsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/ApplyPayScorePartnerPermissionsResponse.json index 78b7ee74..8f2c590b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/ApplyPayScorePartnerPermissionsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/ApplyPayScorePartnerPermissionsResponse.json @@ -1,3 +1,3 @@ { "apply_permissions_token": "apply_permissions_token" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/GetPayScorePartnerPermissionsByAuthorizationCodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/GetPayScorePartnerPermissionsByAuthorizationCodeResponse.json index 18f7c960..98ebe800 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/GetPayScorePartnerPermissionsByAuthorizationCodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/GetPayScorePartnerPermissionsByAuthorizationCodeResponse.json @@ -10,4 +10,4 @@ "sub_mchid": "1230000109", "sub_appid": "wxd678efh567hg6787", "sub_openid": "oUpF8uMuAJO_M2pxb1Q9zNjWeS6o" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/GetPayScorePartnerPermissionsByOpenIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/GetPayScorePartnerPermissionsByOpenIdResponse.json index 6c74b55c..63c900a9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/GetPayScorePartnerPermissionsByOpenIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/GetPayScorePartnerPermissionsByOpenIdResponse.json @@ -9,4 +9,4 @@ "sub_mchid": "1230000109", "sub_appid": "wxd678efh567hg6787", "sub_openid": "oUpF8uMuAJO_M2pxb1Q9zNjWeS6o" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/TerminatePayScorePartnerPermissionsByAuthorizationCodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/TerminatePayScorePartnerPermissionsByAuthorizationCodeRequest.json index 0ffd58b0..e9055933 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/TerminatePayScorePartnerPermissionsByAuthorizationCodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/TerminatePayScorePartnerPermissionsByAuthorizationCodeRequest.json @@ -2,4 +2,4 @@ "service_id": "500001", "sub_mchid": "1230000109", "reason": "撤销原因" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/TerminatePayScorePartnerPermissionsByOpenIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/TerminatePayScorePartnerPermissionsByOpenIdRequest.json index 07e8a428..20a04318 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/TerminatePayScorePartnerPermissionsByOpenIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerPermissions/TerminatePayScorePartnerPermissionsByOpenIdRequest.json @@ -5,4 +5,4 @@ "appid": "wxd678efh567hg6787", "sub_appid": "wxd678efh567hg6787", "reason": "reason" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/CancelPayScorePartnerServiceOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/CancelPayScorePartnerServiceOrderRequest.json index abff57df..7246b4df 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/CancelPayScorePartnerServiceOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/CancelPayScorePartnerServiceOrderRequest.json @@ -1,5 +1,5 @@ { - "service_id": "2002000000000558128851361561536", - "sub_mchid": "1900000109", - "reason": "用户投诉" -} \ No newline at end of file + "service_id": "2002000000000558128851361561536", + "sub_mchid": "1900000109", + "reason": "用户投诉" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/CreatePayScorePartnerServiceOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/CreatePayScorePartnerServiceOrderRequest.json index 5a249e6b..6991cdd4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/CreatePayScorePartnerServiceOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/CreatePayScorePartnerServiceOrderRequest.json @@ -39,4 +39,4 @@ "need_user_confirm": false, "notify_url": "https://api.test.com", "attach": "Easdfowealsdkjfnlaksjdlfkwqoi&wl3l2sald" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/CreatePayScorePartnerServiceOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/CreatePayScorePartnerServiceOrderResponse.json index e6b0b8ac..9e9ef835 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/CreatePayScorePartnerServiceOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/CreatePayScorePartnerServiceOrderResponse.json @@ -42,4 +42,4 @@ "notify_url": "https://api.test.com", "order_id": "0000300001201908301055157220022", "package": "DJIOSQPYWDxsjdldeuwhdodwxasd_dDiodnwjh9we" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/GetPayScorePartnerServiceOrderByOutOrderNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/GetPayScorePartnerServiceOrderByOutOrderNumberResponse.json index bfac2d7d..275a68af 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/GetPayScorePartnerServiceOrderByOutOrderNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/GetPayScorePartnerServiceOrderByOutOrderNumberResponse.json @@ -46,18 +46,18 @@ } ] }, - "time_range": { - "start_time": "20091225091010", - "start_time_remark": "开始租借时间", - "end_time": "20091225121010", - "end_time_remark": "租借结束时间" - }, - "location": { - "start_location": "嗨客时尚主题展餐厅", - "end_location": "嗨客时尚主题展餐厅" - }, - "attach": "Easdfowealsdkjfnlaksjdlfkwqoi&wl3l2sald", - "notify_url": "https://api.test.com", - "sub_openid": "oUpF8uMuAJO_M2pxb1Q9zNjWeS6o", - "order_id": "0000300001201908301055157220022" -} \ No newline at end of file + "time_range": { + "start_time": "20091225091010", + "start_time_remark": "开始租借时间", + "end_time": "20091225121010", + "end_time_remark": "租借结束时间" + }, + "location": { + "start_location": "嗨客时尚主题展餐厅", + "end_location": "嗨客时尚主题展餐厅" + }, + "attach": "Easdfowealsdkjfnlaksjdlfkwqoi&wl3l2sald", + "notify_url": "https://api.test.com", + "sub_openid": "oUpF8uMuAJO_M2pxb1Q9zNjWeS6o", + "order_id": "0000300001201908301055157220022" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/GetPayScorePartnerServiceOrderByQueryIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/GetPayScorePartnerServiceOrderByQueryIdResponse.json index 9c740973..275a68af 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/GetPayScorePartnerServiceOrderByQueryIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/GetPayScorePartnerServiceOrderByQueryIdResponse.json @@ -60,4 +60,4 @@ "notify_url": "https://api.test.com", "sub_openid": "oUpF8uMuAJO_M2pxb1Q9zNjWeS6o", "order_id": "0000300001201908301055157220022" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/ModifyPayScorePartnerServiceOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/ModifyPayScorePartnerServiceOrderRequest.json index 672ad64c..ff456c97 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/ModifyPayScorePartnerServiceOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/ModifyPayScorePartnerServiceOrderRequest.json @@ -19,4 +19,4 @@ ], "total_amount": 50000, "reason": "用户投诉" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/SetPayScorePartnerServiceOrderCompleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/SetPayScorePartnerServiceOrderCompleteRequest.json index 66492392..0d8841e7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/SetPayScorePartnerServiceOrderCompleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/SetPayScorePartnerServiceOrderCompleteRequest.json @@ -31,4 +31,4 @@ "profit_sharing": false, "complete_time": "2019-11-11T16:24:05+08:00", "goods_tag": "goods_tag" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/SetPayScorePartnerServiceOrderPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/SetPayScorePartnerServiceOrderPayRequest.json index 5a47c418..526ccf2f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/SetPayScorePartnerServiceOrderPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/SetPayScorePartnerServiceOrderPayRequest.json @@ -1,4 +1,4 @@ { "service_id": "2002000000000558128851361561536", "sub_mchid": "1900000109" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/SetPayScorePartnerServiceOrderSyncRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/SetPayScorePartnerServiceOrderSyncRequest.json index 9d6235fe..7556dc04 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/SetPayScorePartnerServiceOrderSyncRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePartnerServiceOrder/SetPayScorePartnerServiceOrderSyncRequest.json @@ -7,4 +7,4 @@ "paid_time": "20091225091210", "paid_amount": 1 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/ApplyPayScorePermissionsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/ApplyPayScorePermissionsRequest.json index 580afc4e..859c24ea 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/ApplyPayScorePermissionsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/ApplyPayScorePermissionsRequest.json @@ -3,4 +3,4 @@ "appid": "wxd678efh567hg6787", "authorization_code": "1234323JKHDFE1243252", "notify_url": "http://www.qq.com" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/ApplyPayScorePermissionsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/ApplyPayScorePermissionsResponse.json index 78b7ee74..8f2c590b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/ApplyPayScorePermissionsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/ApplyPayScorePermissionsResponse.json @@ -1,3 +1,3 @@ { "apply_permissions_token": "apply_permissions_token" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/GetPayScorePermissionsByAuthorizationCodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/GetPayScorePermissionsByAuthorizationCodeResponse.json index e64d628f..8d40e61d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/GetPayScorePermissionsByAuthorizationCodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/GetPayScorePermissionsByAuthorizationCodeResponse.json @@ -8,4 +8,4 @@ "notify_url": "https://www.weixin.com", "cancel_authorization_time": "2015-05-20T13:29:35.120+08:00", "authorization_success_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/GetPayScorePermissionsByOpenIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/GetPayScorePermissionsByOpenIdResponse.json index e64d628f..8d40e61d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/GetPayScorePermissionsByOpenIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/GetPayScorePermissionsByOpenIdResponse.json @@ -8,4 +8,4 @@ "notify_url": "https://www.weixin.com", "cancel_authorization_time": "2015-05-20T13:29:35.120+08:00", "authorization_success_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/TerminatePayScorePermissionsByAuthorizationCodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/TerminatePayScorePermissionsByAuthorizationCodeRequest.json index 859fba7f..37202efc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/TerminatePayScorePermissionsByAuthorizationCodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/TerminatePayScorePermissionsByAuthorizationCodeRequest.json @@ -1,4 +1,4 @@ { "service_id": "500001", "reason": "撤销原因" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/TerminatePayScorePermissionsByOpenIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/TerminatePayScorePermissionsByOpenIdRequest.json index 859fba7f..37202efc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/TerminatePayScorePermissionsByOpenIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScorePermissions/TerminatePayScorePermissionsByOpenIdRequest.json @@ -1,4 +1,4 @@ { "service_id": "500001", "reason": "撤销原因" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CancelPayScoreServiceOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CancelPayScoreServiceOrderRequest.json index b573cc3e..619e3219 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CancelPayScoreServiceOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CancelPayScoreServiceOrderRequest.json @@ -2,4 +2,4 @@ "appid": "wxd678efh567hg6787", "service_id": "500001", "reason": "用户投诉" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CancelPayScoreServiceOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CancelPayScoreServiceOrderResponse.json index ac12cdbe..9baecf06 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CancelPayScoreServiceOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CancelPayScoreServiceOrderResponse.json @@ -4,4 +4,4 @@ "out_order_no": "1230000109", "service_id": "500001", "order_id": "15646546545165651651" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderDirectCompleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderDirectCompleteRequest.json index b828a2de..6aa04d3b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderDirectCompleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderDirectCompleteRequest.json @@ -47,4 +47,4 @@ "description": "不与其他优惠叠加" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderDirectCompleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderDirectCompleteResponse.json index f53b948f..c6eaa3ef 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderDirectCompleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderDirectCompleteResponse.json @@ -48,4 +48,4 @@ "description": "不与其他优惠叠加" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderRequest.json index 41c7e6f9..fb8b1df3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderRequest.json @@ -34,4 +34,4 @@ "notify_url": "https://api.test.com", "openid": "oUpF8uMuAJO_M2pxb1Q9zNjWeS6o", "need_user_confirm": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderResponse.json index db49efde..d5b98217 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/CreatePayScoreServiceOrderResponse.json @@ -37,4 +37,4 @@ "notify_url": "https://api.test.com", "order_id": "15646546545165651651", "package": " DJIOSQPYWDxsjdldeuwhdodwxasd_dDiodnwjh9we " -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/GetPayScoreServiceOrderByOutOrderNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/GetPayScoreServiceOrderByOutOrderNumberResponse.json index 273d9663..93a0cc26 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/GetPayScoreServiceOrderByOutOrderNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/GetPayScoreServiceOrderByOutOrderNumberResponse.json @@ -54,4 +54,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/GetPayScoreServiceOrderByQueryIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/GetPayScoreServiceOrderByQueryIdResponse.json index 273d9663..93a0cc26 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/GetPayScoreServiceOrderByQueryIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/GetPayScoreServiceOrderByQueryIdResponse.json @@ -54,4 +54,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/ModifyPayScoreServiceOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/ModifyPayScoreServiceOrderRequest.json index aa24eff8..5f3c29eb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/ModifyPayScoreServiceOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/ModifyPayScoreServiceOrderRequest.json @@ -18,4 +18,4 @@ ], "total_amount": 2000, "reason": "用户投诉" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/ModifyPayScoreServiceOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/ModifyPayScoreServiceOrderResponse.json index d22dfd71..ebe6ace9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/ModifyPayScoreServiceOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/ModifyPayScoreServiceOrderResponse.json @@ -34,6 +34,6 @@ "total_amount": 2000, "paying_amount": 2000, "paid_amount": 0, - "details": [ {} ] + "details": [{}] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderCompleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderCompleteRequest.json index e31a7944..af41c4ce 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderCompleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderCompleteRequest.json @@ -25,4 +25,4 @@ "end_location": "嗨客时尚主题展餐厅" }, "profit_sharing": false -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderCompleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderCompleteResponse.json index 7397a2cf..bf0446b5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderCompleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderCompleteResponse.json @@ -37,4 +37,4 @@ }, "order_id": "15646546545165651651", "need_collection": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderPayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderPayRequest.json index f408ccfb..547c2b8c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderPayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderPayRequest.json @@ -1,4 +1,4 @@ { "appid": "wxd678efh567hg6787", "service_id": "500001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderPayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderPayResponse.json index ac12cdbe..9baecf06 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderPayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderPayResponse.json @@ -4,4 +4,4 @@ "out_order_no": "1230000109", "service_id": "500001", "order_id": "15646546545165651651" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderSyncRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderSyncRequest.json index 0516098d..8e768c55 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderSyncRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderSyncRequest.json @@ -5,4 +5,4 @@ "detail": { "paid_time": "20091225091210" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderSyncResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderSyncResponse.json index 2daa31a7..8c2339e3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderSyncResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayScoreServiceOrder/SetPayScoreServiceOrderSyncResponse.json @@ -54,4 +54,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/ClosePayTransactionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/ClosePayTransactionRequest.json index 91048965..4cc662f4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/ClosePayTransactionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/ClosePayTransactionRequest.json @@ -1,3 +1,3 @@ { "mchid": "1900006XXX" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionAppRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionAppRequest.json index 05255f74..856c5805 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionAppRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionAppRequest.json @@ -8,4 +8,4 @@ "total": 1, "currency": "CNY" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionAppResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionAppResponse.json index 15df2d4e..d99db783 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionAppResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionAppResponse.json @@ -1,3 +1,3 @@ { "prepay_id": "wx261153585405162d4d02642eabe7000000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionH5Request.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionH5Request.json index 2d2e8b8b..8b5c9aec 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionH5Request.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionH5Request.json @@ -14,4 +14,4 @@ "type": "Wap" } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionH5Response.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionH5Response.json index e732f214..cd9b86ae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionH5Response.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionH5Response.json @@ -1,3 +1,3 @@ { "h5_url": "https://wx.tenpay.com/cgi-bin/mmpayweb-bin/checkmweb?prepay_id=wx2916263004719461949c84457c735b0000&package=2150917749" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionJsapiRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionJsapiRequest.json index 4407eeef..1ecbeefb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionJsapiRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionJsapiRequest.json @@ -11,4 +11,4 @@ "payer": { "openid": "o4GgauInH_RCEdvrrNGrntXDuXXX" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionJsapiResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionJsapiResponse.json index 86455792..2a31a009 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionJsapiResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionJsapiResponse.json @@ -1,3 +1,3 @@ { "prepay_id": "wx26112221580621e9b071c00d9e093b0000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionNativeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionNativeRequest.json index b2a8981d..bc15f872 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionNativeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionNativeRequest.json @@ -8,4 +8,4 @@ "total": 1, "currency": "CNY" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionNativeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionNativeResponse.json index 94ba8f9a..07f7e67f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionNativeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/CreatePayTransactionNativeResponse.json @@ -1,3 +1,3 @@ { "code_url": "weixin://wxpay/bizpayurl?pr=p4lpSuKzz" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/GetPayTransactionByIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/GetPayTransactionByIdResponse.json index 33840a3e..ccfb8c32 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/GetPayTransactionByIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/GetPayTransactionByIdResponse.json @@ -19,4 +19,4 @@ "trade_state_desc": "支付成功", "trade_type": "JSAPI", "transaction_id": "4200000891202103228088184743" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/GetPayTransactionByOutTradeNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/GetPayTransactionByOutTradeNumberResponse.json index 33840a3e..ccfb8c32 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/GetPayTransactionByOutTradeNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/PayTransactions/GetPayTransactionByOutTradeNumberResponse.json @@ -19,4 +19,4 @@ "trade_state_desc": "支付成功", "trade_type": "JSAPI", "transaction_id": "4200000891202103228088184743" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Amounts/GetProfitSharingTransactionAmountsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Amounts/GetProfitSharingTransactionAmountsResponse.json index f3b69114..2b23c0ae 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Amounts/GetProfitSharingTransactionAmountsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Amounts/GetProfitSharingTransactionAmountsResponse.json @@ -1,4 +1,4 @@ { "transaction_id": "4208450740201411110007820472", "unsplit_amount": 1000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Bills/GetProfitSharingBillResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Bills/GetProfitSharingBillResponse.json index 885dbbcd..c90a8675 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Bills/GetProfitSharingBillResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Bills/GetProfitSharingBillResponse.json @@ -2,4 +2,4 @@ "download_url": "https://api.mch.weixin.qq.com/v3/billdownload/file?token=6XIv5TUPto7pByrTQKhd6kwvyKLG2uY2wMMR8cNXqaA_Cv_isgaUtBzp4QtiozLO", "hash_type": "SHA1", "hash_value": "8823044c286bea726f149bfcfce0b0318122d755" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingOrderRequest.json index 2e192072..cb514cb3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingOrderRequest.json @@ -14,4 +14,4 @@ } ], "unfreeze_unsplit": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingOrderResponse.json index f9479c5e..8dfb2ff8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingOrderResponse.json @@ -17,4 +17,4 @@ "finish_time": "2015-05-20T13:29:35.120+08:00" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingReturnOrderRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingReturnOrderRequest.json index b87a463a..9523b662 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingReturnOrderRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingReturnOrderRequest.json @@ -4,4 +4,4 @@ "return_mchid": "86693852", "amount": 10, "description": "用户退款" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingReturnOrderResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingReturnOrderResponse.json index f3b1244f..1cd616e1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingReturnOrderResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/CreateProfitSharingReturnOrderResponse.json @@ -10,4 +10,4 @@ "fail_reason": "TIME_OUT_CLOSED", "create_time": "2015-05-20T13:29:35.120+08:00", "finish_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/GetProfitSharingOrderByOutOrderNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/GetProfitSharingOrderByOutOrderNumberResponse.json index f9479c5e..8dfb2ff8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/GetProfitSharingOrderByOutOrderNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/GetProfitSharingOrderByOutOrderNumberResponse.json @@ -17,4 +17,4 @@ "finish_time": "2015-05-20T13:29:35.120+08:00" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/GetProfitSharingReturnOrderByOutOrderNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/GetProfitSharingReturnOrderByOutOrderNumberResponse.json index 3c781506..a9eb7bcd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/GetProfitSharingReturnOrderByOutOrderNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/GetProfitSharingReturnOrderByOutOrderNumberResponse.json @@ -11,4 +11,4 @@ "fail_reason": "TIME_OUT_CLOSED", "create_time": "2015-05-20T13:29:35.120+08:00", "finish_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/MerchantConfigs/GetProfitSharingMerchantConfigsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/MerchantConfigs/GetProfitSharingMerchantConfigsResponse.json index 324a5f65..aabde917 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/MerchantConfigs/GetProfitSharingMerchantConfigsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/MerchantConfigs/GetProfitSharingMerchantConfigsResponse.json @@ -1,4 +1,4 @@ { "sub_mchid": "1900000109", "max_ratio": 2000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/AddProfitSharingReceiverRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/AddProfitSharingReceiverRequest.json index 3c7b946f..b381bd2b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/AddProfitSharingReceiverRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/AddProfitSharingReceiverRequest.json @@ -5,4 +5,4 @@ "name": "hu89ohu89ohu89o", "relation_type": "STORE", "custom_relation": "代理商" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/AddProfitSharingReceiverResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/AddProfitSharingReceiverResponse.json index 916b0433..da8c136d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/AddProfitSharingReceiverResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/AddProfitSharingReceiverResponse.json @@ -3,4 +3,4 @@ "account": "86693852", "name": "hu89ohu89ohu89o", "relation_type": "STORE" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/DeleteProfitSharingReceiverRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/DeleteProfitSharingReceiverRequest.json index 1006f444..107a0e61 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/DeleteProfitSharingReceiverRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/DeleteProfitSharingReceiverRequest.json @@ -4,4 +4,4 @@ "sub_appid": "wx8888888888888889", "type": "MERCHANT_ID", "account": "86693852" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/DeleteProfitSharingReceiverResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/DeleteProfitSharingReceiverResponse.json index f60ebb20..0e36ed64 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/DeleteProfitSharingReceiverResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/Receivers/DeleteProfitSharingReceiverResponse.json @@ -2,4 +2,4 @@ "sub_mchid": "1900000109", "type": "MERCHANT_ID", "account": "1900000109" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/SetProfitSharingOrderUnfrozenRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/SetProfitSharingOrderUnfrozenRequest.json index 7c59c7d5..5446be3c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/SetProfitSharingOrderUnfrozenRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/SetProfitSharingOrderUnfrozenRequest.json @@ -3,4 +3,4 @@ "transaction_id": "4208450740201411110007820472", "out_order_no": "P20150806125346", "description": "解冻全部剩余资金" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/SetProfitSharingOrderUnfrozenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/SetProfitSharingOrderUnfrozenResponse.json index f9479c5e..8dfb2ff8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/SetProfitSharingOrderUnfrozenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/ProfitSharing/SetProfitSharingOrderUnfrozenResponse.json @@ -17,4 +17,4 @@ "finish_time": "2015-05-20T13:29:35.120+08:00" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Refund/CreateRefundDomesticRefundRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Refund/CreateRefundDomesticRefundRequest.json index c91a21eb..3fa334c5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Refund/CreateRefundDomesticRefundRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Refund/CreateRefundDomesticRefundRequest.json @@ -15,4 +15,4 @@ "transaction_id": "4200000991202103266853086457", "out_refund_no": "sdk12345678920210326145039", "reason": "商品已售完" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Refund/CreateRefundDomesticRefundResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Refund/CreateRefundDomesticRefundResponse.json index 6a643499..5e773755 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Refund/CreateRefundDomesticRefundResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Refund/CreateRefundDomesticRefundResponse.json @@ -25,4 +25,4 @@ "status": "PROCESSING", "transaction_id": "4200000991202103266853086457", "user_received_account": "支付用户零钱" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Refund/GetRefundDomesticRefundByOutRefundNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Refund/GetRefundDomesticRefundByOutRefundNumberResponse.json index 03cc3ee5..0d30c60c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Refund/GetRefundDomesticRefundByOutRefundNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Refund/GetRefundDomesticRefundByOutRefundNumberResponse.json @@ -26,4 +26,4 @@ "success_time": "2021-03-26T14:52:11+08:00", "transaction_id": "4200000991202103266853086457", "user_received_account": "支付用户零钱" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/AssignSmartGuideRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/AssignSmartGuideRequest.json index 8e51d94a..415e8d5d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/AssignSmartGuideRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/AssignSmartGuideRequest.json @@ -1,3 +1,3 @@ { "out_trade_no": "20150806125346" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/CreateSmartGuideRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/CreateSmartGuideRequest.json index 40b5aa9d..7bd842e5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/CreateSmartGuideRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/CreateSmartGuideRequest.json @@ -7,4 +7,4 @@ "avatar": "http://wx.qlogo.cn/mmopen/ajNVdqHZLLA3WJ6DSZUfiakYe37PKnQhBIeOQBO4czqrnZDS79FH5Wm5m4X69TBicnHFlhiafvDwklOpZeXYQQ2icg/0", "group_qrcode": "http://p.qpic.cn/wwhead/nMl9ssowtibVGyrmvBiaibzDtp/0", "userid": "robert" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/CreateSmartGuideResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/CreateSmartGuideResponse.json index c3495b9d..652e86fb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/CreateSmartGuideResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/CreateSmartGuideResponse.json @@ -1,3 +1,3 @@ { "guide_id": "LLA3WJ6DSZUfiaZDS79FH5Wm5m4X69TBic" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/QuerySmartGuidesResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/QuerySmartGuidesResponse.json index ce2d6209..22390577 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/QuerySmartGuidesResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/QuerySmartGuidesResponse.json @@ -18,4 +18,4 @@ "total_count": 2, "limit": 5, "offset": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/UpdateSmartGuideRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/UpdateSmartGuideRequest.json index 22cf4f61..f5259c86 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/UpdateSmartGuideRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/SmartGuide/UpdateSmartGuideRequest.json @@ -4,4 +4,4 @@ "qr_code": "https://open.work.weixin.qq.com/wwopen/userQRCode?vcode=xxx", "avatar": "http://wx.qlogo.cn/mmopen/ajNVdqHZLLA3WJ6DSZUfiakYe37PKnQhBIeOQBO4czqrnZDS79FH5Wm5m4X69TBicnHFlhiafvDwklOpZeXYQQ2icg/0", "group_qrcode": "http://p.qpic.cn/wwhead/nMl9ssowtibVGyrmvBiaibzDtp/0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/CreateTransferBatchRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/CreateTransferBatchRequest.json index 687fa293..4d12a77c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/CreateTransferBatchRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/CreateTransferBatchRequest.json @@ -14,4 +14,4 @@ "user_name": "757b340b45ebef5467rter35gf464344v3542sdf4t6re4tb4f54ty45t4yyry45" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/CreateTransferBatchResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/CreateTransferBatchResponse.json index 57ba85e0..5d093ded 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/CreateTransferBatchResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/CreateTransferBatchResponse.json @@ -2,4 +2,4 @@ "out_batch_no": "plfk2020042013", "batch_id": "1030000071100999991182020050700019480001", "create_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchByBatchIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchByBatchIdResponse.json index 47d00ef7..983f34cb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchByBatchIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchByBatchIdResponse.json @@ -25,4 +25,4 @@ "detail_status": "SUCCESS" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchByOutBatchNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchByOutBatchNumberResponse.json index 47d00ef7..983f34cb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchByOutBatchNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchByOutBatchNumberResponse.json @@ -25,4 +25,4 @@ "detail_status": "SUCCESS" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchDetailByDetailIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchDetailByDetailIdResponse.json index 03610c54..032f0cf4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchDetailByDetailIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchDetailByDetailIdResponse.json @@ -13,4 +13,4 @@ "user_name": "757b340b45ebef5467rter35gf464344v3542sdf4t6re4tb4f54ty45t4yyry45", "initiate_time": "2015-05-20T13:29:35.120+08:00", "update_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchDetailByOutDetailNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchDetailByOutDetailNumberResponse.json index f98a9da7..c295b0db 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchDetailByOutDetailNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Batches/GetTransferBatchDetailByOutDetailNumberResponse.json @@ -12,4 +12,4 @@ "user_name": "757b340b45ebef5467rter35gf464344v3542sdf4t6re4tb4f54ty45t4yyry45", "initiate_time": "2015-05-20T13:29:35.120+08:00", "update_time": "2015-05-20T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/BillReceipt/CreateTransferBillReceiptRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/BillReceipt/CreateTransferBillReceiptRequest.json index aec1ac18..1b5cfe14 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/BillReceipt/CreateTransferBillReceiptRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/BillReceipt/CreateTransferBillReceiptRequest.json @@ -1,3 +1,3 @@ { "out_batch_no": "plfk2020042013" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/BillReceipt/CreateTransferBillReceiptResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/BillReceipt/CreateTransferBillReceiptResponse.json index 8ead5382..698ce1aa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/BillReceipt/CreateTransferBillReceiptResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/BillReceipt/CreateTransferBillReceiptResponse.json @@ -7,4 +7,4 @@ "download_url": "https://api.mch.weixin.qq.com/v3/billdownload/file?token=xxx", "create_time": "2020-05-20T13:29:35.120+08:00", "update_time": "2020-05-21T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/BillReceipt/GetTransferBillReceiptByOutBatchNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/BillReceipt/GetTransferBillReceiptByOutBatchNumberResponse.json index 8ead5382..698ce1aa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/BillReceipt/GetTransferBillReceiptByOutBatchNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/BillReceipt/GetTransferBillReceiptByOutBatchNumberResponse.json @@ -7,4 +7,4 @@ "download_url": "https://api.mch.weixin.qq.com/v3/billdownload/file?token=xxx", "create_time": "2020-05-20T13:29:35.120+08:00", "update_time": "2020-05-21T13:29:35.120+08:00" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Detail/CreateTransferDetailElectronicReceiptRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Detail/CreateTransferDetailElectronicReceiptRequest.json index 950ad60a..3a7c648e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Detail/CreateTransferDetailElectronicReceiptRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Detail/CreateTransferDetailElectronicReceiptRequest.json @@ -2,4 +2,4 @@ "accept_type": "BATCH_TRANSFER", "out_batch_no": "GD2021011610162610BBdkkIwcu3", "out_detail_no": "mx0911231610162610v4CNkO4HAf" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Detail/CreateTransferDetailElectronicReceiptResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Detail/CreateTransferDetailElectronicReceiptResponse.json index bb8ce743..a7435e72 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Detail/CreateTransferDetailElectronicReceiptResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Detail/CreateTransferDetailElectronicReceiptResponse.json @@ -7,4 +7,4 @@ "hash_type": "SHA256", "hash_value": "DE731F35146A0BEFADE5DB9D1E468D96C01CA8898119C674FEE9F11F4DBE5529", "download_url": "https://api.mch.weixin.qq.com/v3/billdownload/file?token=xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Detail/GetTransferDetailElectronicReceiptByOutDetailNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Detail/GetTransferDetailElectronicReceiptByOutDetailNumberResponse.json index bb8ce743..a7435e72 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Detail/GetTransferDetailElectronicReceiptByOutDetailNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Transfer/Detail/GetTransferDetailElectronicReceiptByOutDetailNumberResponse.json @@ -7,4 +7,4 @@ "hash_type": "SHA256", "hash_value": "DE731F35146A0BEFADE5DB9D1E468D96C01CA8898119C674FEE9F11F4DBE5529", "download_url": "https://api.mch.weixin.qq.com/v3/billdownload/file?token=xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Parking/CreateVehicleParkingRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Parking/CreateVehicleParkingRequest.json index d3a26faf..c8004490 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Parking/CreateVehicleParkingRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Parking/CreateVehicleParkingRequest.json @@ -7,4 +7,4 @@ "start_time": "2017-08-26T10:43:39+08:00", "parking_name": "欢乐海岸停车场", "free_duration": 3600 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Parking/CreateVehicleParkingResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Parking/CreateVehicleParkingResponse.json index 4ed1088a..948d13b4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Parking/CreateVehicleParkingResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Parking/CreateVehicleParkingResponse.json @@ -8,4 +8,4 @@ "free_duration": 3600, "state": "NORMAL", "block_reason": "PAUSE" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Parking/GetVehicleParkingServiceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Parking/GetVehicleParkingServiceResponse.json index 855462b2..31b65b05 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Parking/GetVehicleParkingServiceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Parking/GetVehicleParkingServiceResponse.json @@ -4,4 +4,4 @@ "service_open_time": "2017-08-26T10:43:39+08:00", "openid": "oUpF8uMuAJOM2pxb1Q", "service_state": "PAUSE" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Transactions/CreateVehicleTransactionParkingRequest.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Transactions/CreateVehicleTransactionParkingRequest.json index 75085f0e..1ac90713 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Transactions/CreateVehicleTransactionParkingRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Transactions/CreateVehicleTransactionParkingRequest.json @@ -23,4 +23,4 @@ "charging_duration": 3600, "device_id": "12313" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Transactions/CreateVehicleTransactionParkingResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Transactions/CreateVehicleTransactionParkingResponse.json index 32d53c3e..5424bf7d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Transactions/CreateVehicleTransactionParkingResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Transactions/CreateVehicleTransactionParkingResponse.json @@ -48,4 +48,4 @@ "currency": "CNY" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Transactions/GetVehicleTransactionByOutTradeNumberResponse.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Transactions/GetVehicleTransactionByOutTradeNumberResponse.json index 32d53c3e..5424bf7d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Transactions/GetVehicleTransactionByOutTradeNumberResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/ModelSamples/Vehicle/Transactions/GetVehicleTransactionByOutTradeNumberResponse.json @@ -48,4 +48,4 @@ "currency": "CNY" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/appsettings.json b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/appsettings.json index 9de2e63b..908103f1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/appsettings.json +++ b/test/SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests/appsettings.json @@ -9,4 +9,4 @@ }, "WorkDirectoryForSdk": "请输入当前 SDK 项目所在的目录完整路径,如 C:\\Project\\src\\SKIT.FlurlHttpClient.Wechat.TenpayV3\\", "WorkDirectoryForTest": "请输入当前测试项目所在的目录完整路径,如 C:\\Project\\test\\SKIT.FlurlHttpClient.Wechat.TenpayV3.UnitTests\\" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/.gitignore b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/.gitignore index 63666fbf..47961c7e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/.gitignore +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/.gitignore @@ -1 +1 @@ -appsettings.local.json \ No newline at end of file +appsettings.local.json diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/AddDeviceEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/AddDeviceEvent.xml index e0128b19..44cb423a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/AddDeviceEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/AddDeviceEvent.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/ConnectInfoEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/ConnectInfoEvent.xml index fd3ec9cd..b019c389 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/ConnectInfoEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/ConnectInfoEvent.xml @@ -5,4 +5,4 @@ 1548074765 1352460633 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/DeleteDeviceEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/DeleteDeviceEvent.xml index 79fd88ae..3717de30 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/DeleteDeviceEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/DeleteDeviceEvent.xml @@ -4,4 +4,4 @@ 1403610513 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/DeviceFeatureChangeEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/DeviceFeatureChangeEvent.xml index a68ed34b..c50f2b4d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/DeviceFeatureChangeEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/DeviceFeatureChangeEvent.xml @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/DisconnectInfoEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/DisconnectInfoEvent.xml index b8ae632a..a27ece19 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/DisconnectInfoEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/DisconnectInfoEvent.xml @@ -6,4 +6,4 @@ 1452460633 1 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/ErrorReportEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/ErrorReportEvent.xml index 8b66eefd..031e5c99 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/ErrorReportEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/ErrorReportEvent.xml @@ -5,4 +5,4 @@ 0 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/FetchLogFinishEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/FetchLogFinishEvent.xml index 08968269..688c238e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/FetchLogFinishEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/FetchLogFinishEvent.xml @@ -4,4 +4,4 @@ 1548074765 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/RemarkDeviceNameEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/RemarkDeviceNameEvent.xml index 926d85c5..73c26c39 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/RemarkDeviceNameEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Device/RemarkDeviceNameEvent.xml @@ -5,4 +5,4 @@ 1403610513 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/ExternalContact/ChangeExternalTagEvent.Shuffle.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/ExternalContact/ChangeExternalTagEvent.Shuffle.xml index 484570f1..16ab6cc4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/ExternalContact/ChangeExternalTagEvent.Shuffle.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/ExternalContact/ChangeExternalTagEvent.Shuffle.xml @@ -7,4 +7,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/OA/BookMeetingRoomEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/OA/BookMeetingRoomEvent.xml index cf5c9e32..e6274af1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/OA/BookMeetingRoomEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/OA/BookMeetingRoomEvent.xml @@ -6,4 +6,4 @@ 1 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/OA/CancelMeetingRoomEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/OA/CancelMeetingRoomEvent.xml index cf5c9e32..e6274af1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/OA/CancelMeetingRoomEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/OA/CancelMeetingRoomEvent.xml @@ -6,4 +6,4 @@ 1 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Push/TemplateCardPushEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Push/TemplateCardPushEvent.xml index 3068c8db..a4673a8e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Push/TemplateCardPushEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Push/TemplateCardPushEvent.xml @@ -25,4 +25,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Push/UpdateButtonReply.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Push/UpdateButtonReply.xml index 01deec5d..c6fb9f89 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Push/UpdateButtonReply.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Push/UpdateButtonReply.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Service/AgreeExternalUserIdMigrationEvent.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Service/AgreeExternalUserIdMigrationEvent.json index 0f0651bd..07d0cd35 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Service/AgreeExternalUserIdMigrationEvent.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Service/AgreeExternalUserIdMigrationEvent.json @@ -1,6 +1,6 @@ { - "AuthCorpId": "xxxx", - "InfoType": "agree_external_userid_migration", - "ServiceCorpId": "xxxx", - "TimeStamp": 1403610513 -} \ No newline at end of file + "AuthCorpId": "xxxx", + "InfoType": "agree_external_userid_migration", + "ServiceCorpId": "xxxx", + "TimeStamp": 1403610513 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Service/AgreeExternalUserIdMigrationEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Service/AgreeExternalUserIdMigrationEvent.xml index 248f6d8a..ea890042 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Service/AgreeExternalUserIdMigrationEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Service/AgreeExternalUserIdMigrationEvent.xml @@ -3,4 +3,4 @@ 1403610513 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Service/ChangeAppAdminEvent.xml b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Service/ChangeAppAdminEvent.xml index 9ea13d78..1d9b0d70 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Service/ChangeAppAdminEvent.xml +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/EventSamples/Service/ChangeAppAdminEvent.xml @@ -5,4 +5,4 @@ 1 - \ No newline at end of file + diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/Cgibin/CgibinGetApiDomainIpResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/Cgibin/CgibinGetApiDomainIpResponse.json index 48e06ec1..6eda9818 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/Cgibin/CgibinGetApiDomainIpResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/Cgibin/CgibinGetApiDomainIpResponse.json @@ -1,8 +1,5 @@ { - "ip_list": [ - "182.254.11.176", - "182.254.78.66" - ], + "ip_list": ["182.254.11.176", "182.254.78.66"], "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/Cgibin/CgibinGetCallbackIpResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/Cgibin/CgibinGetCallbackIpResponse.json index 7ded8485..0bd45372 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/Cgibin/CgibinGetCallbackIpResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/Cgibin/CgibinGetCallbackIpResponse.json @@ -1,3 +1,3 @@ { - "ip_list": [ "101.226.103.*", "101.226.62.*" ] + "ip_list": ["101.226.103.*", "101.226.62.*"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/Cgibin/CgibinGetTokenResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/Cgibin/CgibinGetTokenResponse.json index 65ee736b..17d69bfd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/Cgibin/CgibinGetTokenResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/Cgibin/CgibinGetTokenResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "access_token": "accesstoken000001", "expires_in": 7200 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAgent/CgibinAgentGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAgent/CgibinAgentGetResponse.json index e6b1f934..49df45c5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAgent/CgibinAgentGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAgent/CgibinAgentGetResponse.json @@ -6,16 +6,13 @@ "square_logo_url": "https://p.qlogo.cn/bizmail/FicwmI50icF8GH9ib7rUAYR5kicLTgP265naVFQKnleqSlRhiaBx7QA9u7Q/0", "description": "HR服务与员工自助平台", "allow_userinfos": { - "user": [ - { "userid": "zhangshan" }, - { "userid": "lisi" } - ] + "user": [{ "userid": "zhangshan" }, { "userid": "lisi" }] }, "allow_partys": { - "partyid": [ 1 ] + "partyid": [1] }, "allow_tags": { - "tagid": [ 1, 2, 3 ] + "tagid": [1, 2, 3] }, "close": 0, "redirect_domain": "open.work.weixin.qq.com", @@ -23,4 +20,4 @@ "isreportenter": 0, "home_url": "https://open.work.weixin.qq.com", "customized_publish_status": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAgent/CgibinAgentSetScopeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAgent/CgibinAgentSetScopeRequest.json index 11a8fa55..b4326086 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAgent/CgibinAgentSetScopeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAgent/CgibinAgentSetScopeRequest.json @@ -1,6 +1,6 @@ { "agentid": 1, - "allow_user": [ "zhansan", "lisi" ], - "allow_party": [ 1, 2, 3 ], - "allow_tag": [ 1, 2, 3 ] + "allow_user": ["zhansan", "lisi"], + "allow_party": [1, 2, 3], + "allow_tag": [1, 2, 3] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAgent/CgibinAgentSetScopeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAgent/CgibinAgentSetScopeResponse.json index a69c9edb..be64360d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAgent/CgibinAgentSetScopeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAgent/CgibinAgentSetScopeResponse.json @@ -1,7 +1,7 @@ { "errcode": 0, "errmsg": "ok", - "invaliduser": [ "zhangshan", "lisi" ], - "invalidparty": [ 2, 3 ], - "invalidtag": [ 2, 3 ] + "invaliduser": ["zhangshan", "lisi"], + "invalidparty": [2, 3], + "invalidtag": [2, 3] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAppChat/CgibinAppChatCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAppChat/CgibinAppChatCreateRequest.json index 0e5ab7bf..bea76578 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAppChat/CgibinAppChatCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAppChat/CgibinAppChatCreateRequest.json @@ -1,6 +1,6 @@ { "name": "NAME", "owner": "userid1", - "userlist": [ "userid1", "userid2", "userid3" ], + "userlist": ["userid1", "userid2", "userid3"], "chatid": "CHATID" } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAppChat/CgibinAppChatGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAppChat/CgibinAppChatGetResponse.json index c73bab04..0f6294fb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAppChat/CgibinAppChatGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAppChat/CgibinAppChatGetResponse.json @@ -5,6 +5,6 @@ "chatid": "CHATID", "name": "NAME", "owner": "userid2", - "userlist": [ "userid1", "userid2", "userid3" ] + "userlist": ["userid1", "userid2", "userid3"] } } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAppChat/CgibinAppChatUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAppChat/CgibinAppChatUpdateRequest.json index 11510b25..05c97b4d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAppChat/CgibinAppChatUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinAppChat/CgibinAppChatUpdateRequest.json @@ -2,6 +2,6 @@ "chatid": "CHATID", "name": "NAME", "owner": "userid2", - "add_user_list": [ "userid1", "userid2", "userid3" ], - "del_user_list": [ "userid3", "userid4" ] + "add_user_list": ["userid1", "userid2", "userid3"], + "del_user_list": ["userid3", "userid4"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinBatch/CgibinBatchInviteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinBatch/CgibinBatchInviteRequest.json index 9a975d2e..945fbdba 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinBatch/CgibinBatchInviteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinBatch/CgibinBatchInviteRequest.json @@ -1,5 +1,5 @@ { - "user": [ "UserID1", "UserID2", "UserID3" ], - "party": [ 1, 2 ], - "tag": [ 1, 2 ] + "user": ["UserID1", "UserID2", "UserID3"], + "party": [1, 2], + "tag": [1, 2] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinBatch/CgibinBatchInviteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinBatch/CgibinBatchInviteResponse.json index 874138f5..e153cf07 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinBatch/CgibinBatchInviteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinBatch/CgibinBatchInviteResponse.json @@ -1,7 +1,7 @@ { "errcode": 0, "errmsg": "ok", - "invaliduser": [ "UserID1", "UserID2" ], - "invalidparty": [ 1, 2 ], - "invalidtag": [ 1, 2 ] + "invaliduser": ["UserID1", "UserID2"], + "invalidparty": [1, 2], + "invalidtag": [1, 2] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCardInvoice/CgibinCardInvoiceReimburseUpdateInvoiceStatusRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCardInvoice/CgibinCardInvoiceReimburseUpdateInvoiceStatusRequest.json index 5b194172..bdfcacd2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCardInvoice/CgibinCardInvoiceReimburseUpdateInvoiceStatusRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCardInvoice/CgibinCardInvoiceReimburseUpdateInvoiceStatusRequest.json @@ -3,4 +3,3 @@ "encrypt_code": "ENCRYPTCODE", "reimburse_status": "INVOICE_REIMBURSE_INIT" } - \ No newline at end of file diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinDataRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinDataRequest.json index 2bab2743..a953671b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinDataRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinDataRequest.json @@ -2,5 +2,5 @@ "opencheckindatatype": 3, "starttime": 1492617600, "endtime": 1492790400, - "useridlist": [ "james", "paul" ] + "useridlist": ["james", "paul"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinDataResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinDataResponse.json index f74b366f..86d60567 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinDataResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinDataResponse.json @@ -13,7 +13,9 @@ "wifiname": "办公一区", "notes": "路上堵车,迟到了5分钟", "wifimac": "3c:46:d8:0c:7a:70", - "mediaids": [ "WWCISP_G8PYgRaOVHjXWUWFqchpBqqqUpGj0OyR9z6WTwhnMZGCPHxyviVstiv_2fTG8YOJq8L8zJT2T2OvTebANV-2MQ" ], + "mediaids": [ + "WWCISP_G8PYgRaOVHjXWUWFqchpBqqqUpGj0OyR9z6WTwhnMZGCPHxyviVstiv_2fTG8YOJq8L8zJT2T2OvTebANV-2MQ" + ], "sch_checkin_time": 1492617610, "groupid": 1, "schedule_id": 0, @@ -30,7 +32,9 @@ "wifiname": "办公室二区", "notes": "", "wifimac": "3c:46:d8:0c:7a:71", - "mediaids": [ "WWCISP_G8PYgRaOVHjXWUWFqchpBqqqUpGj0OyR9z6WTwhnMZGCPHxyviVstiv_2fTG8YOJq8L8zJT2T2OvTebANV-2MQ" ], + "mediaids": [ + "WWCISP_G8PYgRaOVHjXWUWFqchpBqqqUpGj0OyR9z6WTwhnMZGCPHxyviVstiv_2fTG8YOJq8L8zJT2T2OvTebANV-2MQ" + ], "lat": 30547645, "lng": 104063236, "deviceid": "E5FA89F6-3926-4972-BE4F-4A7ACF4701E2", diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinDayDataRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinDayDataRequest.json index de5fbce8..3c26a04a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinDayDataRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinDayDataRequest.json @@ -1,7 +1,5 @@ { "starttime": 1599062400, "endtime": 1599062400, - "useridlist": [ - "ZhangSan" - ] + "useridlist": ["ZhangSan"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinMonthDataRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinMonthDataRequest.json index e82f3958..b82a903b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinMonthDataRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinMonthDataRequest.json @@ -1,7 +1,5 @@ { "starttime": 1599062400, "endtime": 1599408000, - "useridlist": [ - "ZhangSan" - ] + "useridlist": ["ZhangSan"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinOptionRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinOptionRequest.json index 9684dab0..09185335 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinOptionRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinOptionRequest.json @@ -1,4 +1,4 @@ { "datetime": 1511971200, - "useridlist": [ "james", "paul" ] + "useridlist": ["james", "paul"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinOptionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinOptionResponse.json index 7e8edc57..c476dab2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinOptionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinOptionResponse.json @@ -9,13 +9,7 @@ "groupid": 69, "checkindate": [ { - "workdays": [ - 1, - 2, - 3, - 4, - 5 - ], + "workdays": [1, 2, 3, 4, 5], "checkintime": [ { "work_sec": 36000, diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinScheduleListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinScheduleListRequest.json index 70c20a6f..0788f714 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinScheduleListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinScheduleListRequest.json @@ -1,8 +1,5 @@ { "starttime": 1492617600, "endtime": 1492790400, - "useridlist": [ - "james", - "paul" - ] + "useridlist": ["james", "paul"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinScheduleListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinScheduleListResponse.json index b0d32616..52df9512 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinScheduleListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCheckinScheduleListResponse.json @@ -44,8 +44,7 @@ "schedule_info": { "schedule_id": 0, "schedule_name": "休息", - "time_section": [ - ] + "time_section": [] } } ] diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCorpCheckinOptionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCorpCheckinOptionResponse.json index ce4d7db9..1eb43872 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCorpCheckinOptionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCheckin/CgibinCheckinGetCorpCheckinOptionResponse.json @@ -7,13 +7,7 @@ "groupid": 69, "checkindate": [ { - "workdays": [ - 1, - 2, - 3, - 4, - 5 - ], + "workdays": [1, 2, 3, 4, 5], "checkintime": [ { "work_sec": 36000, @@ -89,11 +83,11 @@ ], "range": { "partyid": [], - "userid": [ "icef", "LiJingZhong" ], - "tagid": [ 2 ] + "userid": ["icef", "LiJingZhong"], + "tagid": [2] }, "create_time": 1606204343, - "white_users": [ "canno" ], + "white_users": ["canno"], "type": 0, "reporterinfo": { "reporters": [ diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainCorpInfoListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainCorpInfoListRequest.json index 923de20b..9084b96d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainCorpInfoListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainCorpInfoListRequest.json @@ -2,4 +2,4 @@ "chain_id": "Chxxxxxx", "groupid": 1, "fetch_child": 0 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainCorpInfoListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainCorpInfoListResponse.json index d6ee4742..40afe112 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainCorpInfoListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainCorpInfoListResponse.json @@ -10,4 +10,4 @@ "invite_userid": "zhangsan" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainGroupRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainGroupRequest.json index 27f6648a..07b65e44 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainGroupRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainGroupRequest.json @@ -1,3 +1,3 @@ { "chain_id": "Chxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainGroupResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainGroupResponse.json index 2e0a1ddc..8e431cd2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainGroupResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainGroupResponse.json @@ -15,4 +15,4 @@ "order": 3 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainListResponse.json index 28f6d465..1829097d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupCropGetChainListResponse.json @@ -11,4 +11,4 @@ "chain_name": "原材料供应链" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupUnionidToExternalUserIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupUnionidToExternalUserIdRequest.json index a303a938..9847a88d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupUnionidToExternalUserIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupUnionidToExternalUserIdRequest.json @@ -2,4 +2,4 @@ "unionid": "xxxxx", "openid": "xxxxx", "corpid": "xxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupUnionidToExternalUserIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupUnionidToExternalUserIdResponse.json index 86f68139..5bdecbfa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupUnionidToExternalUserIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/CgibinCorpGroupUnionidToExternalUserIdResponse.json @@ -11,4 +11,4 @@ "external_userid": "DDDDD" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleAddRuleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleAddRuleRequest.json index 129e8869..4fe3af7f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleAddRuleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleAddRuleRequest.json @@ -2,12 +2,12 @@ "chain_id": "Chxxxxxx", "rule_info": { "owner_corp_range": { - "departmentids": [ 123 ], - "userids": [ "userid1", "userid2" ] + "departmentids": [123], + "userids": ["userid1", "userid2"] }, "member_corp_range": { - "groupids": [ 123 ], - "corpids": [ "corpid1", "corpid2" ] + "groupids": [123], + "corpids": ["corpid1", "corpid2"] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleAddRuleResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleAddRuleResponse.json index 9099e700..631c5f59 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleAddRuleResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleAddRuleResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "rule_id": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleDeleteRuleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleDeleteRuleRequest.json index af130043..8eb29c71 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleDeleteRuleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleDeleteRuleRequest.json @@ -1,4 +1,4 @@ { "chain_id": "Chxxxxxx", "rule_id": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleGetRuleInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleGetRuleInfoRequest.json index af130043..8eb29c71 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleGetRuleInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleGetRuleInfoRequest.json @@ -1,4 +1,4 @@ { "chain_id": "Chxxxxxx", "rule_id": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleGetRuleInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleGetRuleInfoResponse.json index b82371f5..96e7d38b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleGetRuleInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleGetRuleInfoResponse.json @@ -3,12 +3,12 @@ "errmsg": "ok", "rule_info": { "owner_corp_range": { - "departmentids": [ 123 ], - "userids": [ "userid1", "userid2" ] + "departmentids": [123], + "userids": ["userid1", "userid2"] }, "member_corp_range": { - "groupids": [ 123 ], - "corpids": [ "corpid1", "corpid2" ] + "groupids": [123], + "corpids": ["corpid1", "corpid2"] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleListIdsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleListIdsRequest.json index 27f6648a..07b65e44 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleListIdsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleListIdsRequest.json @@ -1,3 +1,3 @@ { "chain_id": "Chxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleListIdsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleListIdsResponse.json index 75d0270d..bbe5be92 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleListIdsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleListIdsResponse.json @@ -1,5 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "rule_ids": [ 1, 2 ] -} \ No newline at end of file + "rule_ids": [1, 2] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleModifyRuleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleModifyRuleRequest.json index 574ad8f4..e96e8d0b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleModifyRuleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinCorpGroup/Rule/CgibinCorpGroupRuleModifyRuleRequest.json @@ -3,12 +3,12 @@ "rule_id": 1, "rule_info": { "owner_corp_range": { - "departmentids": [ 123 ], - "userids": [ "userid1", "userid2" ] + "departmentids": [123], + "userids": ["userid1", "userid2"] }, "member_corp_range": { - "groupids": [ 123 ], - "corpids": [ "corpid1", "corpid2" ] + "groupids": [123], + "corpids": ["corpid1", "corpid2"] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinDepartment/CgibinDepartmentGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinDepartment/CgibinDepartmentGetResponse.json index 9553dee7..e05472e6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinDepartment/CgibinDepartmentGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinDepartment/CgibinDepartmentGetResponse.json @@ -5,8 +5,8 @@ "id": 2, "name": "广州研发中心", "name_en": "RDGZ", - "department_leader": [ "zhangsan", "lisi" ], + "department_leader": ["zhangsan", "lisi"], "parentid": 1, "order": 10 } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinDepartment/CgibinDepartmentListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinDepartment/CgibinDepartmentListResponse.json index a8ebad14..9851f87d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinDepartment/CgibinDepartmentListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinDepartment/CgibinDepartmentListResponse.json @@ -6,7 +6,7 @@ "id": 2, "name": "广州研发中心", "name_en": "RDGZ", - "department_leader": [ "zhangsan", "lisi" ], + "department_leader": ["zhangsan", "lisi"], "parentid": 1, "order": 10 }, @@ -14,9 +14,9 @@ "id": 3, "name": "邮箱产品部", "name_en": "mail", - "department_leader": [ "lisi", "wangwu" ], + "department_leader": ["lisi", "wangwu"], "parentid": 2, "order": 40 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinDepartment/CgibinDepartmentSimpleListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinDepartment/CgibinDepartmentSimpleListResponse.json index 51faf218..959a18d0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinDepartment/CgibinDepartmentSimpleListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinDepartment/CgibinDepartmentSimpleListResponse.json @@ -13,4 +13,4 @@ "order": 40 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportDepartmentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportDepartmentRequest.json index be8fa7ec..35660073 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportDepartmentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportDepartmentRequest.json @@ -1,4 +1,4 @@ { "encoding_aeskey": "IJUiXNpvGbODwKEBSEsAeOAPAhkqHqNCF6g19t9wfg2", "block_size": 1000000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportDepartmentResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportDepartmentResponse.json index 62d58683..04ef6612 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportDepartmentResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportDepartmentResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "jobid": "jobid_xxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportGetResultResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportGetResultResponse.json index 3b0170c9..f0170d00 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportGetResultResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportGetResultResponse.json @@ -14,4 +14,4 @@ "md5": "xxxxxxxx" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportSimpleUserRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportSimpleUserRequest.json index be8fa7ec..35660073 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportSimpleUserRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportSimpleUserRequest.json @@ -1,4 +1,4 @@ { "encoding_aeskey": "IJUiXNpvGbODwKEBSEsAeOAPAhkqHqNCF6g19t9wfg2", "block_size": 1000000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportSimpleUserResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportSimpleUserResponse.json index 62d58683..04ef6612 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportSimpleUserResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportSimpleUserResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "jobid": "jobid_xxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportTagUserRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportTagUserRequest.json index 931d4b4d..8c16b4f6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportTagUserRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportTagUserRequest.json @@ -2,4 +2,4 @@ "tagid": 1, "encoding_aeskey": "IJUiXNpvGbODwKEBSEsAeOAPAhkqHqNCF6g19t9wfg2", "block_size": 1000000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportTagUserResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportTagUserResponse.json index 62d58683..04ef6612 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportTagUserResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportTagUserResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "jobid": "jobid_xxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportUserRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportUserRequest.json index be8fa7ec..35660073 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportUserRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportUserRequest.json @@ -1,4 +1,4 @@ { "encoding_aeskey": "IJUiXNpvGbODwKEBSEsAeOAPAhkqHqNCF6g19t9wfg2", "block_size": 1000000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportUserResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportUserResponse.json index 76bae8fa..f6a9386e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportUserResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExport/CgibinExportUserResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "jobid": "jobid_xxxxxxxxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactBatchGetByUserResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactBatchGetByUserResponse.json index de21e357..c57fcc53 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactBatchGetByUserResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactBatchGetByUserResponse.json @@ -75,7 +75,10 @@ "remark": "王助理", "description": "采购问题咨询", "createtime": 1525881637, - "tag_id": ["etAJ2GCAAAXtWyujaWJHDDGi0mACHAAA", "stJHDDGi0mAGi0mACHBBByujaW"], + "tag_id": [ + "etAJ2GCAAAXtWyujaWJHDDGi0mACHAAA", + "stJHDDGi0mAGi0mACHBBByujaW" + ], "state": "外联二维码1", "oper_userid": "woAJ2GCAAAd1asdasdjO4wKmE8AabjBBB", "add_way": 3 diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactBatchToExternalUserIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactBatchToExternalUserIdRequest.json index 1af76eb3..ed49a4e5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactBatchToExternalUserIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactBatchToExternalUserIdRequest.json @@ -1,6 +1,3 @@ { - "mobiles": [ - "10000000000", - "10000000001" - ] + "mobiles": ["10000000000", "10000000001"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactConvertToOpenIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactConvertToOpenIdResponse.json index 72523fbe..b0496d43 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactConvertToOpenIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactConvertToOpenIdResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "openid": "ooAAAAAAAAAAA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactGetFollowUserListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactGetFollowUserListResponse.json index 9f7af2a2..0a0a0fd9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactGetFollowUserListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactGetFollowUserListResponse.json @@ -1,8 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "follow_user": [ - "zhangsan", - "lissi" - ] + "follow_user": ["zhangsan", "lissi"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactGetUserBehaviorDataRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactGetUserBehaviorDataRequest.json index b73d20e6..0067339b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactGetUserBehaviorDataRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactGetUserBehaviorDataRequest.json @@ -1,12 +1,6 @@ { - "userid": [ - "zhangsan", - "lisi" - ], - "partyid": [ - 1001, - 1002 - ], + "userid": ["zhangsan", "lisi"], + "partyid": [1001, 1002], "start_time": 1536508800, "end_time": 1536595200 } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactListResponse.json index aa3b4702..57edb139 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactListResponse.json @@ -5,4 +5,4 @@ "woAJ2GCAAAXtWyujaWJHDDGi0mACAAA", "wmqfasd1e1927831291723123109rAAA" ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactMarkTagRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactMarkTagRequest.json index f573f0f1..e5cd8219 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactMarkTagRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactMarkTagRequest.json @@ -1,6 +1,6 @@ { "userid": "zhangsan", "external_userid": "woAJ2GCAAAd1NPGHKSD4wKmE8Aabj9AAA", - "add_tag": [ "TAGID1", "TAGID2" ], - "remove_tag": [ "TAGID3", "TAGID4" ] + "add_tag": ["TAGID1", "TAGID2"], + "remove_tag": ["TAGID3", "TAGID4"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactOpenGroupIdToChatIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactOpenGroupIdToChatIdRequest.json index 4422a877..5b21b90c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactOpenGroupIdToChatIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactOpenGroupIdToChatIdRequest.json @@ -1,3 +1,3 @@ { "opengid": "oAAAAAAA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactOpenGroupIdToChatIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactOpenGroupIdToChatIdResponse.json index ed3196eb..5f7dae5f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactOpenGroupIdToChatIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactOpenGroupIdToChatIdResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "chat_id": "ooAAAAAAAAAAA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactRemarkRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactRemarkRequest.json index 1b406942..3c35a734 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactRemarkRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactRemarkRequest.json @@ -4,9 +4,6 @@ "remark": "备注信息", "description": "描述信息", "remark_company": "腾讯科技", - "remark_mobiles": [ - "13800000001", - "13800000002" - ], + "remark_mobiles": ["13800000001", "13800000002"], "remark_pic_mediaid": "MEDIAID" } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactToServiceExternalUserIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactToServiceExternalUserIdRequest.json index c4adf86c..ed85e13a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactToServiceExternalUserIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactToServiceExternalUserIdRequest.json @@ -1,3 +1,3 @@ { "external_userid": "wmAAAAAAA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactToServiceExternalUserIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactToServiceExternalUserIdResponse.json index f1688c16..04e8ef69 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactToServiceExternalUserIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactToServiceExternalUserIdResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "external_userid": "ooAAAAAAAAAAA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactUnionIdToExternalUserIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactUnionIdToExternalUserIdResponse.json index f1688c16..04e8ef69 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactUnionIdToExternalUserIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CgibinExternalContactUnionIdToExternalUserIdResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "external_userid": "ooAAAAAAAAAAA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ContactWay/CgibinExternalContactAddContactWayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ContactWay/CgibinExternalContactAddContactWayRequest.json index 1135b303..5871b93e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ContactWay/CgibinExternalContactAddContactWayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ContactWay/CgibinExternalContactAddContactWayRequest.json @@ -5,8 +5,8 @@ "remark": "渠道客户", "skip_verify": true, "state": "teststate", - "user": [ "zhangsan", "lisi", "wangwu" ], - "party": [ 2, 3 ], + "user": ["zhangsan", "lisi", "wangwu"], + "party": [2, 3], "is_temp": true, "expires_in": 86400, "chat_expires_in": 86400, diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ContactWay/CgibinExternalContactGetContactWayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ContactWay/CgibinExternalContactGetContactWayResponse.json index fab27eed..1f92323c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ContactWay/CgibinExternalContactGetContactWayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ContactWay/CgibinExternalContactGetContactWayResponse.json @@ -10,8 +10,8 @@ "skip_verify": true, "state": "teststate", "qr_code": "http://p.qpic.cn/wwhead/duc2TvpEgSdicZ9RrdUtBkv2UiaA/0", - "user": [ "zhangsan", "lisi", "wangwu" ], - "party": [ 2, 3 ], + "user": ["zhangsan", "lisi", "wangwu"], + "party": [2, 3], "is_temp": true, "expires_in": 86400, "chat_expires_in": 86400, diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ContactWay/CgibinExternalContactUpdateContactWayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ContactWay/CgibinExternalContactUpdateContactWayRequest.json index ad7ab258..4eae54d1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ContactWay/CgibinExternalContactUpdateContactWayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ContactWay/CgibinExternalContactUpdateContactWayRequest.json @@ -4,8 +4,8 @@ "skip_verify": true, "style": 1, "state": "teststate", - "user": [ "zhangsan", "lisi", "wangwu" ], - "party": [ 2, 3 ], + "user": ["zhangsan", "lisi", "wangwu"], + "party": [2, 3], "expires_in": 86400, "chat_expires_in": 86400, "unionid": "oxTWIuGaIt6gTKsQRLau2M0AAAA", diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CorpTag/CgibinExternalContactDeleteCorpTagRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CorpTag/CgibinExternalContactDeleteCorpTagRequest.json index 3dfafcbb..5cfaf621 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CorpTag/CgibinExternalContactDeleteCorpTagRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CorpTag/CgibinExternalContactDeleteCorpTagRequest.json @@ -1,11 +1,5 @@ { - "tag_id": [ - "TAG_ID_1", - "TAG_ID_2" - ], - "group_id": [ - "GROUP_ID_1", - "GROUP_ID_2" - ], + "tag_id": ["TAG_ID_1", "TAG_ID_2"], + "group_id": ["GROUP_ID_1", "GROUP_ID_2"], "agentid": 1000014 } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CorpTag/CgibinExternalContactGetCorpTagListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CorpTag/CgibinExternalContactGetCorpTagListRequest.json index c5c5e9cf..2ae31abd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CorpTag/CgibinExternalContactGetCorpTagListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CorpTag/CgibinExternalContactGetCorpTagListRequest.json @@ -1,10 +1,4 @@ { - "tag_id": [ - "etXXXXXXXXXX", - "etYYYYYYYYYY" - ], - "group_id": [ - "etZZZZZZZZZZZZZ", - "etYYYYYYYYYYYYY" - ] + "tag_id": ["etXXXXXXXXXX", "etYYYYYYYYYY"], + "group_id": ["etZZZZZZZZZZZZZ", "etYYYYYYYYYYYYY"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyCreateRequest.json index 7e88b8d2..9885207e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyCreateRequest.json @@ -1,10 +1,7 @@ { "parent_id": 0, "strategy_name": "NAME", - "admin_list": [ - "zhangsan", - "lisi" - ], + "admin_list": ["zhangsan", "lisi"], "privilege": { "view_customer_list": true, "view_customer_data": true, @@ -36,4 +33,4 @@ "partyid": 1 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyCreateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyCreateResponse.json index 1901aad1..9326067d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyCreateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyCreateResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "strategy_id": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyDeleteRequest.json index 52493ded..5a865437 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyDeleteRequest.json @@ -1,3 +1,3 @@ { "strategy_id": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyEditRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyEditRequest.json index 02f5934f..f0f99433 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyEditRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyEditRequest.json @@ -1,10 +1,7 @@ { "strategy_id": 1, "strategy_name": "NAME", - "admin_list": [ - "zhangsan", - "lisi" - ], + "admin_list": ["zhangsan", "lisi"], "privilege": { "view_customer_list": true, "view_customer_data": true, @@ -47,4 +44,4 @@ "partyid": 2 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetRangeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetRangeRequest.json index 7994abe1..a62dd412 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetRangeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetRangeRequest.json @@ -2,4 +2,4 @@ "strategy_id": 1, "cursor": "CURSOR", "limit": 1000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetRangeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetRangeResponse.json index e47d797d..78bb10d6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetRangeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetRangeResponse.json @@ -12,4 +12,4 @@ } ], "next_cursor": "NEXT_CURSOR" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetRequest.json index 52493ded..5a865437 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetRequest.json @@ -1,3 +1,3 @@ { "strategy_id": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetResponse.json index fec44469..36b089a7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyGetResponse.json @@ -6,10 +6,7 @@ "parent_id": 0, "strategy_name": "NAME", "create_time": 1557838797, - "admin_list": [ - "zhangsan", - "lisi" - ], + "admin_list": ["zhangsan", "lisi"], "privilege": { "view_customer_list": true, "view_customer_data": true, @@ -33,4 +30,4 @@ "export_customer_group_list": true } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyListRequest.json index 742e9db6..7e7478d5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyListRequest.json @@ -1,4 +1,4 @@ { "cursor": "CURSOR", "limit": 1000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyListResponse.json index 2f83993a..1b1a1119 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/CustomerStrategy/CgibinExternalContactCustomerStrategyListResponse.json @@ -10,4 +10,4 @@ } ], "next_cursor": "NEXT_CURSOR" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/CgibinExternalContactGroupChatGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/CgibinExternalContactGroupChatGetResponse.json index 116851b5..5e548118 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/CgibinExternalContactGroupChatGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/CgibinExternalContactGroupChatGetResponse.json @@ -39,4 +39,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/CgibinExternalContactGroupChatListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/CgibinExternalContactGroupChatListRequest.json index 40451c89..d5619948 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/CgibinExternalContactGroupChatListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/CgibinExternalContactGroupChatListRequest.json @@ -1,7 +1,7 @@ { "status_filter": 0, "owner_filter": { - "userid_list": [ "abel" ] + "userid_list": ["abel"] }, "cursor": "r9FqSqsI8fgNbHLHE5QoCP50UIg2cFQbfma3l2QsmwI", "limit": 10 diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/CgibinExternalContactGroupChatTransferRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/CgibinExternalContactGroupChatTransferRequest.json index de9cdf31..b9ce7080 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/CgibinExternalContactGroupChatTransferRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/CgibinExternalContactGroupChatTransferRequest.json @@ -1,4 +1,7 @@ { - "chat_id_list": [ "wrOgQhDgAAcwMTB7YmDkbeBsgT_AAAA", "wrOgQhDgAAMYQiS5ol9G7gK9JVQUAAAA" ], + "chat_id_list": [ + "wrOgQhDgAAcwMTB7YmDkbeBsgT_AAAA", + "wrOgQhDgAAMYQiS5ol9G7gK9JVQUAAAA" + ], "new_owner": "zhangsan" } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatAddJoinWayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatAddJoinWayRequest.json index 42a5ca95..1ef8e247 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatAddJoinWayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatAddJoinWayRequest.json @@ -1,12 +1,12 @@ { - "scene": 2, - "remark": "aa_remark", - "auto_create_room": 1, - "room_base_name": "销售客服群", - "room_base_id": 10, - "chat_id_list": [ - "wrOgQhDgAAH2Yy-CTZ6POca8mlBEdaaa", - "wrOgQhDgAALPUthpRAKvl7mgiQRwAAA" - ], - "state": "klsdup3kj3s1" -} \ No newline at end of file + "scene": 2, + "remark": "aa_remark", + "auto_create_room": 1, + "room_base_name": "销售客服群", + "room_base_id": 10, + "chat_id_list": [ + "wrOgQhDgAAH2Yy-CTZ6POca8mlBEdaaa", + "wrOgQhDgAALPUthpRAKvl7mgiQRwAAA" + ], + "state": "klsdup3kj3s1" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatAddJoinWayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatAddJoinWayResponse.json index 7479404e..b5c0daee 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatAddJoinWayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatAddJoinWayResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "config_id": "9ad7fa5cdaa6511298498f979c472aaa" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatDeleteJoinWayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatDeleteJoinWayRequest.json index 2838ab4c..71952c70 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatDeleteJoinWayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatDeleteJoinWayRequest.json @@ -1,3 +1,3 @@ { "config_id": "42b34949e138eb6e027c123cba77faaa" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatGetJoinWayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatGetJoinWayRequest.json index 613d565d..596d5a2c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatGetJoinWayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatGetJoinWayRequest.json @@ -1,3 +1,3 @@ { "config_id": "9ad7fa5cdaa6511298498f979c472aaa" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatGetJoinWayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatGetJoinWayResponse.json index 68931306..641f1cc9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatGetJoinWayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatGetJoinWayResponse.json @@ -8,8 +8,11 @@ "auto_create_room": 1, "room_base_name": "销售客服群", "room_base_id": 10, - "chat_id_list": [ "wrOgQhDgAAH2Yy-CTZ6POca8mlBEdaaa", "wrOgQhDgAALPUthpRAKvl7mgiQRw_aaa" ], + "chat_id_list": [ + "wrOgQhDgAAH2Yy-CTZ6POca8mlBEdaaa", + "wrOgQhDgAALPUthpRAKvl7mgiQRw_aaa" + ], "qr_code": "http://p.qpic.cn/wwhead/nMl9ssowtibVGyrmvBiaibzDtp703nXuzpibnKtbSDBRJTLwS3ic4ECrf3ibLVtIFb0N6wWwy5LVuyvMQ22/0", "state": "klsdup3kj3s1" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatUpdateJoinWayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatUpdateJoinWayRequest.json index 8e48013c..083102f7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatUpdateJoinWayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/JoinWay/CgibinExternalContactGroupChatUpdateJoinWayRequest.json @@ -5,6 +5,9 @@ "auto_create_room": 1, "room_base_name": "销售客服群", "room_base_id": 10, - "chat_id_list": [ "wrOgQhDgAAH2Yy-CTZ6POca8mlBEdaaa", "wrOgQhDgAALPUthpRAKvl7mgiQRw_aaa" ], + "chat_id_list": [ + "wrOgQhDgAAH2Yy-CTZ6POca8mlBEdaaa", + "wrOgQhDgAALPUthpRAKvl7mgiQRw_aaa" + ], "state": "klsdup3kj3s1" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/Statistics/CgibinExternalContactGroupChatStatisticsGroupByDayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/Statistics/CgibinExternalContactGroupChatStatisticsGroupByDayRequest.json index 24568153..3f70afc1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/Statistics/CgibinExternalContactGroupChatStatisticsGroupByDayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/Statistics/CgibinExternalContactGroupChatStatisticsGroupByDayRequest.json @@ -2,6 +2,6 @@ "day_begin_time": 1600272000, "day_end_time": 1600358400, "owner_filter": { - "userid_list": [ "zhangsan" ] + "userid_list": ["zhangsan"] } } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/Statistics/CgibinExternalContactGroupChatStatisticsRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/Statistics/CgibinExternalContactGroupChatStatisticsRequest.json index c09fcab5..b4e0a8e2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/Statistics/CgibinExternalContactGroupChatStatisticsRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupChat/Statistics/CgibinExternalContactGroupChatStatisticsRequest.json @@ -2,7 +2,7 @@ "day_begin_time": 1600272000, "day_end_time": 1600444800, "owner_filter": { - "userid_list": [ "zhangsan" ] + "userid_list": ["zhangsan"] }, "order_by": 2, "order_asc": 0, diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupMessage/CgibinExternalContactAddMessageTemplateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupMessage/CgibinExternalContactAddMessageTemplateResponse.json index 019c5d16..59305895 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupMessage/CgibinExternalContactAddMessageTemplateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupMessage/CgibinExternalContactAddMessageTemplateResponse.json @@ -1,6 +1,6 @@ { "errcode": 0, "errmsg": "ok", - "fail_list": [ "wmqfasd1e1927831123109rBAAAA" ], + "fail_list": ["wmqfasd1e1927831123109rBAAAA"], "msgid": "msgGCAAAXtWyujaWJHDDGi0mAAAA" } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactGroupWelcomeTemplateAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactGroupWelcomeTemplateAddRequest.json index 80be877d..997ff53f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactGroupWelcomeTemplateAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactGroupWelcomeTemplateAddRequest.json @@ -26,4 +26,4 @@ }, "agentid": 1000014, "notify": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactGroupWelcomeTemplateEditRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactGroupWelcomeTemplateEditRequest.json index c11814c9..0893bd2b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactGroupWelcomeTemplateEditRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactGroupWelcomeTemplateEditRequest.json @@ -26,4 +26,4 @@ "media_id": "MEDIA_ID" }, "agentid": 1000014 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactGroupWelcomeTemplateGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactGroupWelcomeTemplateGetResponse.json index 75b63f28..de1e72fa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactGroupWelcomeTemplateGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactGroupWelcomeTemplateGetResponse.json @@ -25,4 +25,4 @@ "video": { "media_id": "MEDIA_ID" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactSendWelcomeMessageRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactSendWelcomeMessageRequest.json index 0c57ab4f..aa75856e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactSendWelcomeMessageRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/GroupWelcome/CgibinExternalContactSendWelcomeMessageRequest.json @@ -42,4 +42,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactAddInterceptRuleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactAddInterceptRuleRequest.json index 037a4684..170c9adc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactAddInterceptRuleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactAddInterceptRuleRequest.json @@ -1,22 +1,10 @@ { "rule_name": "rulename", - "word_list": [ - "敏感词1", - "敏感词2" - ], - "semantics_list": [ - 1, - 2, - 3 - ], + "word_list": ["敏感词1", "敏感词2"], + "semantics_list": [1, 2, 3], "intercept_type": 1, "applicable_range": { - "user_list": [ - "zhangshan" - ], - "department_list": [ - 2, - 3 - ] + "user_list": ["zhangshan"], + "department_list": [2, 3] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactAddInterceptRuleResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactAddInterceptRuleResponse.json index 574b873e..afa0f5aa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactAddInterceptRuleResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactAddInterceptRuleResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "rule_id": "xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactDeleteInterceptRuleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactDeleteInterceptRuleRequest.json index adb8e783..c0e33536 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactDeleteInterceptRuleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactDeleteInterceptRuleRequest.json @@ -1,3 +1,3 @@ { "rule_id": "xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleListResponse.json index 4088920f..b7fe1555 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleListResponse.json @@ -8,4 +8,4 @@ "create_time": 1600000000 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleRequest.json index adb8e783..c0e33536 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleRequest.json @@ -1,3 +1,3 @@ { "rule_id": "xxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleResponse.json index 935e6cd0..8336b551 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactGetInterceptRuleResponse.json @@ -4,26 +4,14 @@ "rule": { "rule_id": 1, "rule_name": "rulename", - "word_list": [ - "敏感词1", - "敏感词2" - ], + "word_list": ["敏感词1", "敏感词2"], "extra_rule": { - "semantics_list": [ - 1, - 2, - 3 - ] + "semantics_list": [1, 2, 3] }, "intercept_type": 1, "applicable_range": { - "user_list": [ - "zhangshan" - ], - "department_list": [ - 2, - 3 - ] + "user_list": ["zhangshan"], + "department_list": [2, 3] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactUpdateInterceptRuleRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactUpdateInterceptRuleRequest.json index 442bbd78..fc6ce109 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactUpdateInterceptRuleRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/InterceptRule/CgibinExternalContactUpdateInterceptRuleRequest.json @@ -1,34 +1,17 @@ { "rule_id": "xxxx", "rule_name": "rulename", - "word_list": [ - "敏感词1", - "敏感词2" - ], + "word_list": ["敏感词1", "敏感词2"], "extra_rule": { - "semantics_list": [ - 1, - 2, - 3 - ] + "semantics_list": [1, 2, 3] }, "intercept_type": 1, "add_applicable_range": { - "user_list": [ - "zhangshan" - ], - "department_list": [ - 2, - 3 - ] + "user_list": ["zhangshan"], + "department_list": [2, 3] }, "remove_applicable_range": { - "user_list": [ - "zhangshan" - ], - "department_list": [ - 2, - 3 - ] + "user_list": ["zhangshan"], + "department_list": [2, 3] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Message/CgibinExternalContactMessageSendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Message/CgibinExternalContactMessageSendRequest.json index 216bb2eb..77f99af6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Message/CgibinExternalContactMessageSendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Message/CgibinExternalContactMessageSendRequest.json @@ -1,8 +1,8 @@ { - "to_external_user": [ "external_userid1", "external_userid2" ], - "to_parent_userid": [ "parent_userid1", "parent_userid2" ], - "to_student_userid": [ "student_userid1", "student_userid2" ], - "to_party": [ 3, 4 ], + "to_external_user": ["external_userid1", "external_userid2"], + "to_parent_userid": ["parent_userid1", "parent_userid2"], + "to_student_userid": ["student_userid1", "student_userid2"], + "to_party": [3, 4], "toall": 0, "msgtype": "text", "agentid": 1, diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Message/CgibinExternalContactMessageSendResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Message/CgibinExternalContactMessageSendResponse.json index 3f62ab6f..0a58ec4a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Message/CgibinExternalContactMessageSendResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Message/CgibinExternalContactMessageSendResponse.json @@ -1,8 +1,8 @@ { "errcode": 0, "errmsg": "ok", - "invalid_external_user": [ "external_userid1" ], - "invalid_parent_userid": [ "parent_userid1" ], - "invalid_student_userid": [ "student_userid1" ], - "invalid_party": [ 3, 4 ] + "invalid_external_user": ["external_userid1"], + "invalid_parent_userid": ["parent_userid1"], + "invalid_student_userid": ["student_userid1"], + "invalid_party": [3, 4] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactAddMomentTaskRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactAddMomentTaskRequest.json index 536e8244..eb4fc59d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactAddMomentTaskRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactAddMomentTaskRequest.json @@ -26,20 +26,11 @@ ], "visible_range": { "sender_list": { - "user_list": [ - "zhangshan", - "lisi" - ], - "department_list": [ - 2, - 3 - ] + "user_list": ["zhangshan", "lisi"], + "department_list": [2, 3] }, "external_contact_list": { - "tag_list": [ - 1, - 2 - ] + "tag_list": [1, 2] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactAddMomentTaskResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactAddMomentTaskResponse.json index ebb5da8e..3ff91ba1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactAddMomentTaskResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactAddMomentTaskResponse.json @@ -1,5 +1,5 @@ { - "errcode":0, - "errmsg":"ok", - "jobid":"xxxx" -} \ No newline at end of file + "errcode": 0, + "errmsg": "ok", + "jobid": "xxxx" +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactGetMomentListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactGetMomentListResponse.json index 320d9454..32845d07 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactGetMomentListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactGetMomentListResponse.json @@ -12,9 +12,7 @@ "text": { "content": "test" }, - "image": [ - { "media_id": "WWCISP_xxxxx" } - ], + "image": [{ "media_id": "WWCISP_xxxxx" }], "video": { "media_id": "WWCISP_xxxxx", "thumb_media_id": "WWCISP_xxxxx" diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactGetMomentTaskResultRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactGetMomentTaskResultRequest.json index de64de48..922d1a43 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactGetMomentTaskResultRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactGetMomentTaskResultRequest.json @@ -1,3 +1,3 @@ { "jobid": "xxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactGetMomentTaskResultResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactGetMomentTaskResultResponse.json index 5d216200..4892a7a7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactGetMomentTaskResultResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/Moment/CgibinExternalContactGetMomentTaskResultResponse.json @@ -8,19 +8,11 @@ "errmsg": "ok", "moment_id": "xxxx", "invalid_sender_list": { - "user_list": [ - "zhangshan", - "lisi" - ], - "department_list": [ - 2, - 3 - ] + "user_list": ["zhangshan", "lisi"], + "department_list": [2, 3] }, "invalid_external_contact_list": { - "tag_list": [ - 1 - ] + "tag_list": [1] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyCreateRequest.json index 733b71e4..dfee2885 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyCreateRequest.json @@ -1,10 +1,7 @@ { "parent_id": 0, "strategy_name": "NAME", - "admin_list": [ - "zhangsan", - "lisi" - ], + "admin_list": ["zhangsan", "lisi"], "privilege": { "send_moment": true, "view_moment_list": true @@ -19,4 +16,4 @@ "partyid": 1 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyCreateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyCreateResponse.json index 1901aad1..9326067d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyCreateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyCreateResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "strategy_id": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyDeleteRequest.json index 52493ded..5a865437 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyDeleteRequest.json @@ -1,3 +1,3 @@ { "strategy_id": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyEditRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyEditRequest.json index 2d723e24..cd32070f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyEditRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyEditRequest.json @@ -1,10 +1,7 @@ { "strategy_id": 1, "strategy_name": "NAME", - "admin_list": [ - "zhangsan", - "lisi" - ], + "admin_list": ["zhangsan", "lisi"], "privilege": { "view_moment_list": true, "send_moment": true @@ -29,4 +26,4 @@ "partyid": 2 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetRangeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetRangeRequest.json index 7994abe1..a62dd412 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetRangeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetRangeRequest.json @@ -2,4 +2,4 @@ "strategy_id": 1, "cursor": "CURSOR", "limit": 1000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetRangeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetRangeResponse.json index e47d797d..78bb10d6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetRangeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetRangeResponse.json @@ -12,4 +12,4 @@ } ], "next_cursor": "NEXT_CURSOR" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetRequest.json index 52493ded..5a865437 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetRequest.json @@ -1,3 +1,3 @@ { "strategy_id": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetResponse.json index e503ef83..8991c963 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyGetResponse.json @@ -6,13 +6,10 @@ "parent_id": 0, "strategy_name": "NAME", "create_time": 1557838797, - "admin_list": [ - "zhangsan", - "lisi" - ], + "admin_list": ["zhangsan", "lisi"], "privilege": { "view_moment_list": true, "send_moment": true } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyListRequest.json index 742e9db6..7e7478d5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyListRequest.json @@ -1,4 +1,4 @@ { "cursor": "CURSOR", "limit": 1000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyListResponse.json index 2f83993a..1b1a1119 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/MomentStrategy/CgibinExternalContactMomentStrategyListResponse.json @@ -10,4 +10,4 @@ } ], "next_cursor": "NEXT_CURSOR" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactAddProductAlbumRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactAddProductAlbumRequest.json index b527e82c..1f0f61b0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactAddProductAlbumRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactAddProductAlbumRequest.json @@ -10,4 +10,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactAddProductAlbumResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactAddProductAlbumResponse.json index 8ebceb45..3e90f8c5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactAddProductAlbumResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactAddProductAlbumResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "product_id": "xxxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactDeleteProductAlbumRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactDeleteProductAlbumRequest.json index 67f6a20d..0b4e1e20 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactDeleteProductAlbumRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactDeleteProductAlbumRequest.json @@ -1,3 +1,3 @@ { "product_id": "xxxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumListRequest.json index 677d4bf1..f8917d34 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumListRequest.json @@ -1,4 +1,4 @@ { "limit": 50, "cursor": "CURSOR" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumListResponse.json index 315493f6..a94cae42 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumListResponse.json @@ -18,4 +18,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumRequest.json index 67f6a20d..0b4e1e20 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumRequest.json @@ -1,3 +1,3 @@ { "product_id": "xxxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumResponse.json index 6af7d0ef..fae3e087 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactGetProductAlbumResponse.json @@ -16,4 +16,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactUpdateProductAlbumRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactUpdateProductAlbumRequest.json index 6816da03..1476c429 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactUpdateProductAlbumRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/ProductAlbum/CgibinExternalContactUpdateProductAlbumRequest.json @@ -11,4 +11,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactAddStrategyTagRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactAddStrategyTagRequest.json index 401f2860..3c81446d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactAddStrategyTagRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactAddStrategyTagRequest.json @@ -13,4 +13,4 @@ "order": 2 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactAddStrategyTagResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactAddStrategyTagResponse.json index a4870ba2..05c9bd82 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactAddStrategyTagResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactAddStrategyTagResponse.json @@ -21,4 +21,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactDeleteStrategyTagRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactDeleteStrategyTagRequest.json index 26e3ecde..98fd96d6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactDeleteStrategyTagRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactDeleteStrategyTagRequest.json @@ -1,10 +1,4 @@ { - "tag_id": [ - "TAG_ID_1", - "TAG_ID_2" - ], - "group_id": [ - "GROUP_ID_1", - "GROUP_ID_2" - ] -} \ No newline at end of file + "tag_id": ["TAG_ID_1", "TAG_ID_2"], + "group_id": ["GROUP_ID_1", "GROUP_ID_2"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactEditStrategyTagRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactEditStrategyTagRequest.json index 53d649d0..2e584a41 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactEditStrategyTagRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactEditStrategyTagRequest.json @@ -2,4 +2,4 @@ "id": "TAG_ID", "name": "NEW_TAG_NAME", "order": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactGetStrategyTagListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactGetStrategyTagListRequest.json index e10386f9..c0bc8c77 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactGetStrategyTagListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactGetStrategyTagListRequest.json @@ -1,11 +1,5 @@ { "strategy_id": 1, - "tag_id": [ - "etXXXXXXXXXX", - "etYYYYYYYYYY" - ], - "group_id": [ - "etZZZZZZZZZZZZZ", - "etYYYYYYYYYYYYY" - ] -} \ No newline at end of file + "tag_id": ["etXXXXXXXXXX", "etYYYYYYYYYY"], + "group_id": ["etZZZZZZZZZZZZZ", "etYYYYYYYYYYYYY"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactGetStrategyTagListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactGetStrategyTagListResponse.json index 8b846e93..abb98cc5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactGetStrategyTagListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalContact/StrategyTag/CgibinExternalContactGetStrategyTagListResponse.json @@ -24,4 +24,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalPay/Merchant/CgibinExternalPayGetMerchantResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalPay/Merchant/CgibinExternalPayGetMerchantResponse.json index 0afe60bb..7dd0bfe4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalPay/Merchant/CgibinExternalPayGetMerchantResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalPay/Merchant/CgibinExternalPayGetMerchantResponse.json @@ -5,8 +5,8 @@ "mch_id": "12334", "merchant_name": "test", "allow_use_scope": { - "user": [ "zhangsan", "lisi" ], - "partyid": [ 1 ], - "tagid": [ 1, 2, 3 ] + "user": ["zhangsan", "lisi"], + "partyid": [1], + "tagid": [1, 2, 3] } } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalPay/Merchant/CgibinExternalPaySetMerchantUseScopeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalPay/Merchant/CgibinExternalPaySetMerchantUseScopeRequest.json index a6be00dd..234961a0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalPay/Merchant/CgibinExternalPaySetMerchantUseScopeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinExternalPay/Merchant/CgibinExternalPaySetMerchantUseScopeRequest.json @@ -1,8 +1,8 @@ { "mch_id": "12334", "allow_use_scope": { - "user": [ "zhangsan", "lisi" ], - "partyid": [ 1 ], - "tagid": [ 1, 2, 3 ] + "user": ["zhangsan", "lisi"], + "partyid": [1], + "tagid": [1, 2, 3] } } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetDeviceFeatureRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetDeviceFeatureRequest.json index 11c6beb1..688ec8c5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetDeviceFeatureRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetDeviceFeatureRequest.json @@ -1,3 +1,3 @@ { "device_sn": "SN" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetDeviceFeatureResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetDeviceFeatureResponse.json index be9db484..420a94c6 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetDeviceFeatureResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetDeviceFeatureResponse.json @@ -2,4 +2,4 @@ "device_feature": "{\"printer_type\":\"CM12838-W2\"}", "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetHardwareCheckinDataRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetHardwareCheckinDataRequest.json index 87187eb3..e4a6681e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetHardwareCheckinDataRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetHardwareCheckinDataRequest.json @@ -2,8 +2,5 @@ "filter_type": 1, "starttime": 1492617600, "endtime": 1492790400, - "useridlist": [ - "james", - "paul" - ] -} \ No newline at end of file + "useridlist": ["james", "paul"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetHardwareCheckinDataResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetHardwareCheckinDataResponse.json index 4ce54b93..1cf011f1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetHardwareCheckinDataResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHardware/CgibinHardwareGetHardwareCheckinDataResponse.json @@ -15,4 +15,4 @@ "device_name": "yyyy门店" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHealth/CgibinHealthGetReportJobIdsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHealth/CgibinHealthGetReportJobIdsResponse.json index 5153a56d..0fbc1072 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHealth/CgibinHealthGetReportJobIdsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHealth/CgibinHealthGetReportJobIdsResponse.json @@ -2,8 +2,5 @@ "errcode": 0, "errmsg": "ok", "ending": 1, - "jobids": [ - "jobid1", - "jobid2" - ] + "jobids": ["jobid1", "jobid2"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHealth/CgibinHealthGetReportJobInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHealth/CgibinHealthGetReportJobInfoResponse.json index 1054c7a7..58838304 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHealth/CgibinHealthGetReportJobInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinHealth/CgibinHealthGetReportJobInfoResponse.json @@ -6,20 +6,11 @@ "creator": "creator_userid", "type": 1, "apply_range": { - "userids": [ - "userid1", - "userid2" - ], - "partyids": [ - 1, - 2 - ] + "userids": ["userid1", "userid2"], + "partyids": [1, 2] }, "report_to": { - "userids": [ - "userid1", - "userid2" - ] + "userids": ["userid1", "userid2"] }, "report_type": 1, "skip_weekend": 0, diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountAddRequest.json index 7542f85b..6dab60c2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountAddRequest.json @@ -1,4 +1,4 @@ { "name": "新建的客服帐号", "media_id": "294DpAog3YA5b9rTK4PjjfRfYLO0L5qpDHAJIzhhQ2jAEWjb9i661Q4lk8oFnPtmj" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountAddResponse.json index ee0a11f1..b22e0586 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountAddResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "open_kfid": "wkAJ2GCAAAZSfhHCt7IFSvLKtMPxyJTw" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountDeleteRequest.json index 70f999da..db3dbb6f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountDeleteRequest.json @@ -1,3 +1,3 @@ { "open_kfid": "wkAJ2GCAAAZSfhHCt7IFSvLKtMPxyJTw" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountListRequest.json index cce730fb..fc907be8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountListRequest.json @@ -1,4 +1,4 @@ { "offset": 0, "limit": 100 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountListResponse.json index c75db2bc..779cd9e9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountListResponse.json @@ -8,4 +8,4 @@ "avatar": "https://wework.qpic.cn/wwhead/duc2TvpEgSSjibPZlNR6chpx9W3dtd9Ogp8XEmSNKGa6uufMWn2239HUPuwIFoYYZ7Ph580FPvo8/0" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountUpdateRequest.json index 892197b1..77c1295b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAccountUpdateRequest.json @@ -2,4 +2,4 @@ "open_kfid": "wkAJ2GCAAAZSfhHCt7IFSvLKtMPxyJTw", "name": "修改客服名", "media_id": "294DpAog3YA5b9rTK4PjjfRfYLO0L5qpDHAJIzhhQ2jAEWjb9i661Q4lk8oFnPtmj" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAddContactWayRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAddContactWayRequest.json index 9fb7b946..f3784925 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAddContactWayRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAddContactWayRequest.json @@ -1,4 +1,4 @@ { "open_kfid": "OPEN_KFID", "scene": "12345" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAddContactWayResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAddContactWayResponse.json index 83b18751..d64a61bf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAddContactWayResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Account/CgibinKfAddContactWayResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "url": "https://work.weixin.qq.com/kf/kfcbf8f8d07ac7215f?enc_scene=ENCGFSDF567DF" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfGetCorpQualificationResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfGetCorpQualificationResponse.json index 302f0b4d..7cf277e9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfGetCorpQualificationResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfGetCorpQualificationResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "wechat_channels_binding": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfGetCorpStatisticRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfGetCorpStatisticRequest.json index 19ba724f..3673d12e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfGetCorpStatisticRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfGetCorpStatisticRequest.json @@ -1,5 +1,5 @@ { "open_kfid": "OPEN_KFID", "start_time": 1645545600, - "end_time": 1645632000 -} \ No newline at end of file + "end_time": 1645632000 +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfSendMessageOnEventRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfSendMessageOnEventRequest.json index 394ec72e..8675e260 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfSendMessageOnEventRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfSendMessageOnEventRequest.json @@ -40,4 +40,4 @@ ], "tail_content": "如有问题,随时转人工服务" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfSendMessageOnEventResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfSendMessageOnEventResponse.json index 45116a16..4a8d2848 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfSendMessageOnEventResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfSendMessageOnEventResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "msgid": "MSG_ID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfSendMessageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfSendMessageResponse.json index 45116a16..4a8d2848 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfSendMessageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/CgibinKfSendMessageResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "msgid": "MSG_ID" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Customer/UpgradeService/CgibinKfCustomerCancelUpgradeServiceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Customer/UpgradeService/CgibinKfCustomerCancelUpgradeServiceRequest.json index 56e20da1..22204ee7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Customer/UpgradeService/CgibinKfCustomerCancelUpgradeServiceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Customer/UpgradeService/CgibinKfCustomerCancelUpgradeServiceRequest.json @@ -1,4 +1,4 @@ { "open_kfid": "kfxxxxxxxxxxxxxx", "external_userid": "wmxxxxxxxxxxxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Customer/UpgradeService/CgibinKfCustomerGetUpgradeServiceConfigResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Customer/UpgradeService/CgibinKfCustomerGetUpgradeServiceConfigResponse.json index 57f8f1a5..90c3c374 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Customer/UpgradeService/CgibinKfCustomerGetUpgradeServiceConfigResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Customer/UpgradeService/CgibinKfCustomerGetUpgradeServiceConfigResponse.json @@ -2,19 +2,10 @@ "errcode": 0, "errmsg": "ok", "member_range": { - "userid_list": [ - "zhangsan", - "lisi" - ], - "department_id_list": [ - 2, - 3 - ] + "userid_list": ["zhangsan", "lisi"], + "department_id_list": [2, 3] }, "groupchat_range": { - "chat_id_list": [ - "wraaaaaaaaaaaaaaaa", - "wrbbbbbbbbbbbbbbb" - ] + "chat_id_list": ["wraaaaaaaaaaaaaaaa", "wrbbbbbbbbbbbbbbb"] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Customer/UpgradeService/CgibinKfCustomerUpgradeServiceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Customer/UpgradeService/CgibinKfCustomerUpgradeServiceRequest.json index 019f40c2..b7565edb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Customer/UpgradeService/CgibinKfCustomerUpgradeServiceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Customer/UpgradeService/CgibinKfCustomerUpgradeServiceRequest.json @@ -10,4 +10,4 @@ "chat_id": "wraaaaaaaaaaaaaaaa", "wording": "欢迎加入你的专属服务群" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateGetRequest.json index 29d42442..80a0ea15 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateGetRequest.json @@ -1,4 +1,4 @@ { "open_kfid": "wkxxxxxxxxxxxxxxxxxx", "external_userid": "wmxxxxxxxxxxxxxxxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateGetResponse.json index 3c473521..4b8176f0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateGetResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "service_state": 3, "servicer_userid": "zhangsan" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateTransferRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateTransferRequest.json index 8adfa379..3eb3e373 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateTransferRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateTransferRequest.json @@ -3,4 +3,4 @@ "external_userid": "wmxxxxxxxxxxxxxxxxxx", "service_state": 3, "servicer_userid": "zhangsan" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateTransferResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateTransferResponse.json index 0fba444f..b3819efe 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateTransferResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/ServiceState/CgibinKfServiceStateTransferResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "msg_code": "MSG_CODE" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerAddRequest.json index dba4d223..2ba2b103 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerAddRequest.json @@ -1,5 +1,5 @@ { "open_kfid": "kfxxxxxxxxxxxxxx", - "userid_list": [ "zhangsan", "lisi" ], - "department_id_list": [ 2, 4 ] -} \ No newline at end of file + "userid_list": ["zhangsan", "lisi"], + "department_id_list": [2, 4] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerAddResponse.json index 1f11c67f..ab979b78 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerAddResponse.json @@ -13,4 +13,4 @@ "errmsg": "ignored" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerDeleteRequest.json index dba4d223..2ba2b103 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerDeleteRequest.json @@ -1,5 +1,5 @@ { "open_kfid": "kfxxxxxxxxxxxxxx", - "userid_list": [ "zhangsan", "lisi" ], - "department_id_list": [ 2, 4 ] -} \ No newline at end of file + "userid_list": ["zhangsan", "lisi"], + "department_id_list": [2, 4] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerDeleteResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerDeleteResponse.json index 1f11c67f..ab979b78 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerDeleteResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerDeleteResponse.json @@ -13,4 +13,4 @@ "errmsg": "ignored" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerListResponse.json index 32f21d4c..34b6cdd1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinKf/Servicer/CgibinKfServicerListResponse.json @@ -17,4 +17,4 @@ "department_id": 3 } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpAgentGetPermissionListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpAgentGetPermissionListResponse.json index 9796aa20..eac66d57 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpAgentGetPermissionListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpAgentGetPermissionListResponse.json @@ -1,10 +1,6 @@ { "errcode": 0, "errmsg": "ok", - "userids": [ - "CORPID/USERID" - ], - "department_ids": [ - "LINKEDID/DEPARTMENTID" - ] + "userids": ["CORPID/USERID"], + "department_ids": ["LINKEDID/DEPARTMENTID"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpUserGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpUserGetResponse.json index 919f46cd..87cfc495 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpUserGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpUserGetResponse.json @@ -4,10 +4,7 @@ "user_info": { "userid": "zhangsan", "name": "张三", - "department": [ - "LINKEDID/1", - "LINKEDID/2" - ], + "department": ["LINKEDID/1", "LINKEDID/2"], "mobile": "+86 12345678901", "telephone": "10086", "email": "zhangsan@tencent.com", @@ -33,4 +30,4 @@ ] } } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpUserListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpUserListResponse.json index 82cbb3f7..a5fe9c27 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpUserListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpUserListResponse.json @@ -5,10 +5,7 @@ { "userid": "zhangsan", "name": "张三", - "department": [ - "LINKEDID/1", - "LINKEDID/2" - ], + "department": ["LINKEDID/1", "LINKEDID/2"], "mobile": "+86 12345678901", "telephone": "10086", "email": "zhangsan@tencent.com", @@ -35,4 +32,4 @@ } } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpUserSimpleListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpUserSimpleListResponse.json index 7bd3dc23..596d00d9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpUserSimpleListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/CgibinLinkedCorpUserSimpleListResponse.json @@ -5,13 +5,13 @@ { "userid": "zhangsan", "name": "张三", - "department": [ "LINKEDID/1", "LINKEDID/2" ], + "department": ["LINKEDID/1", "LINKEDID/2"], "corpid": "xxxxxx" }, { "userid": "lisi", "name": "李四", - "department": [ "LINKEDID/1" ], + "department": ["LINKEDID/1"], "corpid": "xxxxxx" } ] diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/Message/CgibinLinkedCorpMessageSendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/Message/CgibinLinkedCorpMessageSendRequest.json index 6cf9b655..4f89b255 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/Message/CgibinLinkedCorpMessageSendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/Message/CgibinLinkedCorpMessageSendRequest.json @@ -1,7 +1,12 @@ { - "touser": [ "userid1", "userid2", "CorpId1/userid1", "CorpId2/userid2" ], - "toparty": [ "partyid1", "partyid2", "LinkedId1/partyid1", "LinkedId2/partyid2" ], - "totag": [ 3, 4 ], + "touser": ["userid1", "userid2", "CorpId1/userid1", "CorpId2/userid2"], + "toparty": [ + "partyid1", + "partyid2", + "LinkedId1/partyid1", + "LinkedId2/partyid2" + ], + "totag": [3, 4], "toall": 0, "msgtype": "text", "agentid": 1, diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/Message/CgibinLinkedCorpMessageSendResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/Message/CgibinLinkedCorpMessageSendResponse.json index 65b3f991..979aedb9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/Message/CgibinLinkedCorpMessageSendResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLinkedCorp/Message/CgibinLinkedCorpMessageSendResponse.json @@ -1,7 +1,12 @@ { "errcode": 0, "errmsg": "ok", - "invaliduser": [ "userid1", "userid2", "CorpId1/userid1", "CorpId2/userid2" ], - "invalidparty": [ "partyid1", "partyid2", "LinkedId1/partyid1", "LinkedId2/partyid2" ], - "invalidtag": [ 3, 4 ] -} \ No newline at end of file + "invaliduser": ["userid1", "userid2", "CorpId1/userid1", "CorpId2/userid2"], + "invalidparty": [ + "partyid1", + "partyid2", + "LinkedId1/partyid1", + "LinkedId2/partyid2" + ], + "invalidtag": [3, 4] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLiving/CgibinLivingCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLiving/CgibinLivingCreateRequest.json index 624c50af..55faa866 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLiving/CgibinLivingCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLiving/CgibinLivingCreateRequest.json @@ -11,9 +11,6 @@ "activity_share_mediaid": "MEDIA_ID", "activity_detail": { "description": "活动描述,非活动类型的直播不用传", - "image_list": [ - "MEDIA_ID_1", - "MEDIA_ID_2" - ] + "image_list": ["MEDIA_ID_1", "MEDIA_ID_2"] } } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLiving/CgibinLivingGetUserAllLivingIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLiving/CgibinLivingGetUserAllLivingIdResponse.json index 436f606e..30eae3b9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLiving/CgibinLivingGetUserAllLivingIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinLiving/CgibinLivingGetUserAllLivingIdResponse.json @@ -2,8 +2,5 @@ "errcode": 0, "errmsg": "ok", "next_cursor": "next_cursor", - "livingid_list": [ - "livingid1", - "livingid2" - ] + "livingid_list": ["livingid1", "livingid2"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadImageResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadImageResponse.json index dc7d2dc5..dcfe1b0b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadImageResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadImageResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "", "url": "http://p.qpic.cn/pic_wework/3474110808/7a7c8471673ff0f178f63447935d35a5c1247a7f31d9c060/0" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadResponse.json index eb6224c1..4fd51e4d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMedia/CgibinMediaUploadResponse.json @@ -4,4 +4,4 @@ "type": "image", "media_id": "1G6nrLmr5EC3MMb_-zK1dDdzmd0p7cNliYu9V5w7o8K0", "created_at": "1380000000" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMeeting/CgibinMeetingCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMeeting/CgibinMeetingCreateRequest.json index 01e70185..0aee420a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMeeting/CgibinMeetingCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMeeting/CgibinMeetingCreateRequest.json @@ -8,17 +8,8 @@ "remind_time": 60, "agentid": 1000014, "attendees": { - "userid": [ - "lisi", - "wangwu" - ], - "external_userid": [ - "woabc", - "woced" - ], - "device_sn": [ - "devsn1", - "devsn2" - ] + "userid": ["lisi", "wangwu"], + "external_userid": ["woabc", "woced"], + "device_sn": ["devsn1", "devsn2"] } } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMeeting/CgibinMeetingGetUserMeetingIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMeeting/CgibinMeetingGetUserMeetingIdResponse.json index 0dd01e47..7cf1fd95 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMeeting/CgibinMeetingGetUserMeetingIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMeeting/CgibinMeetingGetUserMeetingIdResponse.json @@ -2,8 +2,5 @@ "errcode": 0, "errmsg": "ok", "next_cursor": "1223", - "meetingid_list": [ - "meetingid1", - "meetingid2" - ] + "meetingid_list": ["meetingid1", "meetingid2"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMeeting/CgibinMeetingUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMeeting/CgibinMeetingUpdateRequest.json index 31c8c9d3..042d82b4 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMeeting/CgibinMeetingUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMeeting/CgibinMeetingUpdateRequest.json @@ -7,17 +7,8 @@ "type": 1, "remind_time": 60, "attendees": { - "userid": [ - "lisi", - "wangwu" - ], - "external_userid": [ - "woabc", - "woced" - ], - "device_sn": [ - "devsn1", - "devsn2" - ] + "userid": ["lisi", "wangwu"], + "external_userid": ["woabc", "woced"], + "device_sn": ["devsn1", "devsn2"] } } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageRecallRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageRecallRequest.json index de8464eb..d8bf7915 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageRecallRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageRecallRequest.json @@ -1,3 +1,3 @@ { "msgid": "vcT8gGc-7dFb4bxT35ONjBDz901sLlXPZw1DAMC_Gc26qRpK-AK5sTJkkb0128t" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageSendRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageSendRequest.json index d0bac275..ba3a2115 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageSendRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageSendRequest.json @@ -97,10 +97,7 @@ } ] }, - "selected_ticket_list": [ - "xxx", - "yyy" - ], + "selected_ticket_list": ["xxx", "yyy"], "template_card": { "card_type": "text_notice", "source": { @@ -207,4 +204,4 @@ "enable_id_trans": 0, "enable_duplicate_check": 0, "duplicate_check_interval": 1800 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTaskCardRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTaskCardRequest.json index f2da0198..07d7537e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTaskCardRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTaskCardRequest.json @@ -1,5 +1,5 @@ { - "userids": [ "userid1", "userid2" ], + "userids": ["userid1", "userid2"], "agentid": 1, "task_id": "taskid122", "replace_name": "已收到" diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTaskCardResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTaskCardResponse.json index b8d16b33..a7a1ec89 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTaskCardResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTaskCardResponse.json @@ -1,5 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "invaliduser": [ "userid1", "userid2" ] + "invaliduser": ["userid1", "userid2"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTemplateCardRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTemplateCardRequest.json index f8c35972..009c2208 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTemplateCardRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTemplateCardRequest.json @@ -1,7 +1,7 @@ { - "userids": [ "userid1", "userid2" ], - "partyids": [ 2, 3 ], - "tagids": [ 44, 55 ], + "userids": ["userid1", "userid2"], + "partyids": [2, 3], + "tagids": [44, 55], "atall": 0, "agentid": 1, "response_code": "response_code", @@ -142,4 +142,4 @@ }, "replace_text": "已提交" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTemplateCardResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTemplateCardResponse.json index 7f8f56d4..a7a1ec89 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTemplateCardResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessage/CgibinMessageUpdateTemplateCardResponse.json @@ -1,5 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "invaliduser": [ "userid1", "userid2" ] -} \ No newline at end of file + "invaliduser": ["userid1", "userid2"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessageAudit/CgibinMessageAuditGetPermitUserListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessageAudit/CgibinMessageAuditGetPermitUserListResponse.json index 03e4a800..9ded400b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessageAudit/CgibinMessageAuditGetPermitUserListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMessageAudit/CgibinMessageAuditGetPermitUserListResponse.json @@ -1,9 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "ids": [ - "userid_111", - "userid_222", - "userid_333" - ] + "ids": ["userid_111", "userid_222", "userid_333"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMiniProgram/CgibinMiniProgramJsCode2SessionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMiniProgram/CgibinMiniProgramJsCode2SessionResponse.json index 65fe956e..c76bacc8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMiniProgram/CgibinMiniProgramJsCode2SessionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinMiniProgram/CgibinMiniProgramJsCode2SessionResponse.json @@ -4,4 +4,4 @@ "session_key": "kJtdi6RF+Dv67QkbLlPGjw==", "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Approval/CgibinOAApplyEventRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Approval/CgibinOAApplyEventRequest.json index 12efec3c..28f7f0eb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Approval/CgibinOAApplyEventRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Approval/CgibinOAApplyEventRequest.json @@ -6,14 +6,14 @@ "approver": [ { "attr": 2, - "userid": [ "WuJunJie", "WangXiaoMing" ] + "userid": ["WuJunJie", "WangXiaoMing"] }, { "attr": 1, - "userid": [ "LiuXiaoGang" ] + "userid": ["LiuXiaoGang"] } ], - "notifyer": [ "WuJunJie", "WangXiaoMing" ], + "notifyer": ["WuJunJie", "WangXiaoMing"], "notify_type": 1, "apply_data": { "contents": [ diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Approval/CgibinOAGetApprovalInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Approval/CgibinOAGetApprovalInfoResponse.json index b8d84160..eecbafaa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Approval/CgibinOAGetApprovalInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Approval/CgibinOAGetApprovalInfoResponse.json @@ -1,9 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "sp_no_list": [ - "201909270001", - "201909270002", - "201909270003" - ] + "sp_no_list": ["201909270001", "201909270002", "201909270003"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Calendar/CgibinOACalendarDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Calendar/CgibinOACalendarDeleteRequest.json index 461964a5..ea0a8735 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Calendar/CgibinOACalendarDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Calendar/CgibinOACalendarDeleteRequest.json @@ -1,3 +1,3 @@ { "cal_id": "wcjgewCwAAqeJcPI1d8Pwbjt7nttzAAA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Calendar/CgibinOACalendarGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Calendar/CgibinOACalendarGetRequest.json index 54d82e68..a555f050 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Calendar/CgibinOACalendarGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Calendar/CgibinOACalendarGetRequest.json @@ -1,3 +1,3 @@ { - "cal_id_list": [ "wcjgewCwAAqeJcPI1d8Pwbjt7nttzAAA" ] + "cal_id_list": ["wcjgewCwAAqeJcPI1d8Pwbjt7nttzAAA"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/Book/CgibinOAMeetingRoomBookRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/Book/CgibinOAMeetingRoomBookRequest.json index c4a7bfa7..f54e111f 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/Book/CgibinOAMeetingRoomBookRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/Book/CgibinOAMeetingRoomBookRequest.json @@ -4,5 +4,5 @@ "start_time": 1593532800, "end_time": 1593619200, "booker": "zhangsan", - "attendees": [ "lisi", "wangwu" ] + "attendees": ["lisi", "wangwu"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/Book/CgibinOAMeetingRoomGetBookingInfoByMeetingIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/Book/CgibinOAMeetingRoomGetBookingInfoByMeetingIdRequest.json index f4834248..227a60d7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/Book/CgibinOAMeetingRoomGetBookingInfoByMeetingIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/Book/CgibinOAMeetingRoomGetBookingInfoByMeetingIdRequest.json @@ -1,4 +1,4 @@ { "meetingroom_id": 1, "meeting_id": "mtebsada6e027c123cbafAAA" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomAddRequest.json index 6519a65e..875fe2f3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomAddRequest.json @@ -4,7 +4,7 @@ "city": "深圳", "building": "腾讯大厦", "floor": "18F", - "equipment": [ 1, 2, 3 ], + "equipment": [1, 2, 3], "coordinate": { "latitude": "22.540503", "longitude": "113.934528" diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomEditRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomEditRequest.json index 4183e051..cec9adac 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomEditRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomEditRequest.json @@ -5,7 +5,7 @@ "city": "深圳", "building": "腾讯大厦", "floor": "18F", - "equipment": [ 1, 2, 3 ], + "equipment": [1, 2, 3], "coordinate": { "latitude": "22.540503", "longitude": "113.934528" diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomListRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomListRequest.json index cbcad5e4..1abe5ac0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomListRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomListRequest.json @@ -2,5 +2,5 @@ "city": "深圳", "building": "腾讯大厦", "floor": "18F", - "equipment": [ 1, 2, 3 ] + "equipment": [1, 2, 3] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomListResponse.json index 2687544e..f511abe8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/MettingRoom/CgibinOAMeetingRoomListResponse.json @@ -9,7 +9,7 @@ "city": "深圳", "building": "腾讯大厦", "floor": "18F", - "equipment": [ 1, 2, 3 ], + "equipment": [1, 2, 3], "coordinate": { "latitude": "22.540503", "longitude": "113.934528" @@ -23,7 +23,7 @@ "city": "深圳", "building": "腾讯大厦", "floor": "19F", - "equipment": [ 2, 3 ], + "equipment": [2, 3], "coordinate": { "latitude": "22.540503", "longitude": "113.934528" diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/Attendees/CgibinOAScheduleAddAttendeesRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/Attendees/CgibinOAScheduleAddAttendeesRequest.json index 0178ced4..c06b7152 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/Attendees/CgibinOAScheduleAddAttendeesRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/Attendees/CgibinOAScheduleAddAttendeesRequest.json @@ -5,4 +5,4 @@ "userid": "userid2" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/Attendees/CgibinOAScheduleDeleteAttendeesRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/Attendees/CgibinOAScheduleDeleteAttendeesRequest.json index 0178ced4..c06b7152 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/Attendees/CgibinOAScheduleDeleteAttendeesRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/Attendees/CgibinOAScheduleDeleteAttendeesRequest.json @@ -5,4 +5,4 @@ "userid": "userid2" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleAddRequest.json index 786abd46..f89577f0 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleAddRequest.json @@ -18,8 +18,8 @@ "repeat_until": 1606976813, "is_custom_repeat": 1, "repeat_interval": 1, - "repeat_day_of_week": [ 3, 7 ], - "repeat_day_of_month": [ 10, 21 ], + "repeat_day_of_week": [3, 7], + "repeat_day_of_month": [10, 21], "timezone": 8 }, "location": "广州国际媒体港10楼1005会议室", diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleGetByCalendarResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleGetByCalendarResponse.json index 93e219be..76c34c1a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleGetByCalendarResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleGetByCalendarResponse.json @@ -21,8 +21,8 @@ "repeat_until": 1606976813, "is_custom_repeat": 1, "repeat_interval": 1, - "repeat_day_of_week": [ 3, 7 ], - "repeat_day_of_month": [ 10, 21 ], + "repeat_day_of_week": [3, 7], + "repeat_day_of_month": [10, 21], "timezone": 8 }, "location": "test_place", diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleGetRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleGetRequest.json index eeddb358..3617c3d7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleGetRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleGetRequest.json @@ -1,5 +1,3 @@ { - "schedule_id_list": [ - "17c7d2bd9f20d652840f72f59e796AAA" - ] + "schedule_id_list": ["17c7d2bd9f20d652840f72f59e796AAA"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleGetResponse.json index 0fce2803..6fe7d4f9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleGetResponse.json @@ -17,15 +17,13 @@ "is_remind": 1, "is_repeat": 1, "remind_before_event_secs": 3600, - "remind_time_diffs": [ - -3600 - ], + "remind_time_diffs": [-3600], "repeat_type": 7, "repeat_until": 1606976813, "is_custom_repeat": 1, "repeat_interval": 1, - "repeat_day_of_week": [ 3, 7 ], - "repeat_day_of_month": [ 10, 21 ], + "repeat_day_of_week": [3, 7], + "repeat_day_of_month": [10, 21], "timezone": 8, "exclude_time_list": [ { diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleUpdateRequest.json index 9e76ed50..ffb90e8c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinOA/Schedule/CgibinOAScheduleUpdateRequest.json @@ -19,8 +19,8 @@ "repeat_until": 1606976813, "is_custom_repeat": 1, "repeat_interval": 1, - "repeat_day_of_week": [ 3, 7 ], - "repeat_day_of_month": [ 10, 21 ], + "repeat_day_of_week": [3, 7], + "repeat_day_of_month": [10, 21], "timezone": 8 }, "location": "test_place", diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinPSTNCC/CgibinPSTNCCCallRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinPSTNCC/CgibinPSTNCCCallRequest.json index c6ad9b74..347e0b1a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinPSTNCC/CgibinPSTNCCCallRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinPSTNCC/CgibinPSTNCCCallRequest.json @@ -1,3 +1,3 @@ { - "callee_userid": [ "james", "paul" ] + "callee_userid": ["james", "paul"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridAddRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridAddRequest.json index adff1c00..0487e658 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridAddRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridAddRequest.json @@ -1,6 +1,6 @@ { "grid_name": "grid_name", "grid_parent_id": "grid_id", - "grid_admin": [ "zhangsan" ], - "grid_member": [ "lisi", "invaliduser" ] + "grid_admin": ["zhangsan"], + "grid_member": ["lisi", "invaliduser"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridAddResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridAddResponse.json index e33c8b57..00f23a24 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridAddResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridAddResponse.json @@ -2,7 +2,5 @@ "errcode": 0, "errmsg": "ok", "grid_id": "grid_id", - "invalid_userids": [ - "invaliduser" - ] + "invalid_userids": ["invaliduser"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridListResponse.json index c10000b2..498bc21e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridListResponse.json @@ -6,8 +6,8 @@ "grid_id": "grid_id", "grid_name": "1", "grid_parent_id": "grid_id", - "grid_admin": [ "zhangsan" ], - "grid_member": [ "lisi", "11111" ] + "grid_admin": ["zhangsan"], + "grid_member": ["lisi", "11111"] } ] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridUpdateRequest.json index d825933e..15dd957a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridUpdateRequest.json @@ -2,6 +2,6 @@ "grid_id": "grid_id", "grid_name": "grid_name", "grid_parent_id": "grid_id", - "grid_admin": [ "zhangsan" ], - "grid_member": [ "lisi", "invaliduser" ] + "grid_admin": ["zhangsan"], + "grid_member": ["lisi", "invaliduser"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridUpdateResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridUpdateResponse.json index f59e1142..2f1bd234 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridUpdateResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Grid/CgibinReportGridUpdateResponse.json @@ -1,7 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "invalid_userids": [ - "invaliduser" - ] + "invalid_userids": ["invaliduser"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Patrol/CgibinReportPatrolGetGridInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Patrol/CgibinReportPatrolGetGridInfoResponse.json index 456f0d4d..75a3f8c1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Patrol/CgibinReportPatrolGetGridInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Patrol/CgibinReportPatrolGetGridInfoResponse.json @@ -5,10 +5,7 @@ { "grid_id": "grid_id", "grid_name": "1", - "grid_admin": [ - "zhangsan", - "lisi" - ] + "grid_admin": ["zhangsan", "lisi"] } ] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Patrol/CgibinReportPatrolGetOrderInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Patrol/CgibinReportPatrolGetOrderInfoResponse.json index 54ff4568..17caab12 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Patrol/CgibinReportPatrolGetOrderInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Patrol/CgibinReportPatrolGetOrderInfoResponse.json @@ -9,24 +9,15 @@ "grid_name": "测试网格", "grid_id": "grid_id", "create_time": 12345678, - "image_urls": [ - "https://image1.qq.com", - "https://image2.qq.com" - ], - "video_media_ids": [ - "mediaid1", - "mediaid2" - ], + "image_urls": ["https://image1.qq.com", "https://image2.qq.com"], + "video_media_ids": ["mediaid1", "mediaid2"], "location": { "name": "测试小区", "address": "实例小区,不真实存在,经纬度无意义", "latitude": 0, "longitude": 0 }, - "processor_userids": [ - "zhangsan", - "lisi" - ], + "processor_userids": ["zhangsan", "lisi"], "process_list": [ { "process_type": 1, @@ -38,10 +29,7 @@ "https://image1.qq.com", "https://image2.qq.com" ], - "video_media_ids": [ - "mediaid1", - "mediaid2" - ] + "video_media_ids": ["mediaid1", "mediaid2"] } ] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Patrol/CgibinReportPatrolGetOrderListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Patrol/CgibinReportPatrolGetOrderListResponse.json index a466f8e6..b6158d00 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Patrol/CgibinReportPatrolGetOrderListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Patrol/CgibinReportPatrolGetOrderListResponse.json @@ -11,24 +11,15 @@ "grid_name": "测试网格", "grid_id": "grid_id", "create_time": 12345678, - "image_urls": [ - "https://image1.qq.com", - "https://image2.qq.com" - ], - "video_media_ids": [ - "mediaid1", - "mediaid2" - ], + "image_urls": ["https://image1.qq.com", "https://image2.qq.com"], + "video_media_ids": ["mediaid1", "mediaid2"], "location": { "name": "测试小区", "address": "实例小区,不真实存在,经纬度无意义", "latitude": 0, "longitude": 0 }, - "processor_userids": [ - "zhangsan", - "lisi" - ], + "processor_userids": ["zhangsan", "lisi"], "process_list": [ { "process_type": 1, @@ -40,12 +31,9 @@ "https://image1.qq.com", "https://image2.qq.com" ], - "video_media_ids": [ - "mediaid1", - "mediaid2" - ] + "video_media_ids": ["mediaid1", "mediaid2"] } ] } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Resident/CgibinReportResidentGetGridInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Resident/CgibinReportResidentGetGridInfoResponse.json index 456f0d4d..75a3f8c1 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Resident/CgibinReportResidentGetGridInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Resident/CgibinReportResidentGetGridInfoResponse.json @@ -5,10 +5,7 @@ { "grid_id": "grid_id", "grid_name": "1", - "grid_admin": [ - "zhangsan", - "lisi" - ] + "grid_admin": ["zhangsan", "lisi"] } ] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Resident/CgibinReportResidentGetOrderInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Resident/CgibinReportResidentGetOrderInfoResponse.json index 1a3c0dea..fad66ce5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Resident/CgibinReportResidentGetOrderInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Resident/CgibinReportResidentGetOrderInfoResponse.json @@ -11,14 +11,8 @@ "reporter_name": "上报人名称", "reporter_mobile": "上报人手机", "unionid": "上报人unionid", - "image_urls": [ - "https://image1.qq.com", - "https://image2.qq.com" - ], - "video_media_ids": [ - "mediaid1", - "mediaid2" - ], + "image_urls": ["https://image1.qq.com", "https://image2.qq.com"], + "video_media_ids": ["mediaid1", "mediaid2"], "create_time": 12345678, "location": { "name": "测试小区", @@ -26,10 +20,7 @@ "latitude": 0, "longitude": 0 }, - "processor_userids": [ - "zhangsan", - "lisi" - ], + "processor_userids": ["zhangsan", "lisi"], "process_list": [ { "process_type": 1, @@ -41,10 +32,7 @@ "https://image1.qq.com", "https://image2.qq.com" ], - "video_media_ids": [ - "mediaid1", - "mediaid2" - ] + "video_media_ids": ["mediaid1", "mediaid2"] } ] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Resident/CgibinReportResidentGetOrderListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Resident/CgibinReportResidentGetOrderListResponse.json index a29f9685..91a40e00 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Resident/CgibinReportResidentGetOrderListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/Resident/CgibinReportResidentGetOrderListResponse.json @@ -14,24 +14,15 @@ "reporter_name": "上报人名称", "reporter_mobile": "上报人手机", "unionid": "上报人unionid", - "image_urls": [ - "https://image1.qq.com", - "https://image2.qq.com" - ], - "video_media_ids": [ - "mediaid1", - "mediaid2" - ], + "image_urls": ["https://image1.qq.com", "https://image2.qq.com"], + "video_media_ids": ["mediaid1", "mediaid2"], "location": { "name": "测试小区", "address": "实例小区,不真实存在,经纬度无意义", "latitude": 0, "longitude": 0 }, - "processor_userids": [ - "zhangsan", - "lisi" - ], + "processor_userids": ["zhangsan", "lisi"], "process_list": [ { "process_type": 1, @@ -43,10 +34,7 @@ "https://image1.qq.com", "https://image2.qq.com" ], - "video_media_ids": [ - "mediaid1", - "mediaid2" - ] + "video_media_ids": ["mediaid1", "mediaid2"] } ] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/SiteCode/CgibinReportSiteCodeGetSiteReportInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/SiteCode/CgibinReportSiteCodeGetSiteReportInfoRequest.json index 16208cdf..eda34d94 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/SiteCode/CgibinReportSiteCodeGetSiteReportInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinReport/SiteCode/CgibinReportSiteCodeGetSiteReportInfoRequest.json @@ -1,3 +1,3 @@ { "siteid": "siteid" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Agent/CgibinSchoolAgentGetAllowScopeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Agent/CgibinSchoolAgentGetAllowScopeResponse.json index a4b6aba7..f0be386b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Agent/CgibinSchoolAgentGetAllowScopeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Agent/CgibinSchoolAgentGetAllowScopeResponse.json @@ -2,10 +2,7 @@ "errcode": 0, "errmsg": "ok", "allow_scope": { - "students": [ - { "userid": "student1" }, - { "userid": "student2" } - ], - "departments": [ 1, 2 ] + "students": [{ "userid": "student1" }, { "userid": "student2" }], + "departments": [1, 2] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Living/CgibinSchoolLivingGetLivingInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Living/CgibinSchoolLivingGetLivingInfoResponse.json index eea43041..b7f316c7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Living/CgibinSchoolLivingGetLivingInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Living/CgibinSchoolLivingGetLivingInfoResponse.json @@ -7,11 +7,8 @@ "living_duration": 1800, "anchor_userid": "zhangsan", "living_range": { - "partyids": [ 1, 4, 9 ], - "group_names": [ - "group_name1", - "group_name2" - ] + "partyids": [1, 4, 9], + "group_names": ["group_name1", "group_name2"] }, "viewer_num": 100, "comment_num": 110, diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Living/CgibinSchoolLivingGetUnwatchStatisticsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Living/CgibinSchoolLivingGetUnwatchStatisticsResponse.json index cbc4ca41..0963178c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Living/CgibinSchoolLivingGetUnwatchStatisticsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Living/CgibinSchoolLivingGetUnwatchStatisticsResponse.json @@ -8,17 +8,12 @@ { "student_userid": "zhansan_child", "parent_userid": "zhangsan", - "partyids": [ - 10, - 11 - ] + "partyids": [10, 11] }, { "student_userid": "lisi_child", "parent_userid": "lisi", - "partyids": [ - 5 - ] + "partyids": [5] } ] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Living/CgibinSchoolLivingGetWatchStatisticsResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Living/CgibinSchoolLivingGetWatchStatisticsResponse.json index c807cd1e..c0cb6803 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Living/CgibinSchoolLivingGetWatchStatisticsResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Living/CgibinSchoolLivingGetWatchStatisticsResponse.json @@ -8,10 +8,7 @@ { "student_userid": "zhansan_child", "parent_userid": "zhangsan", - "partyids": [ - 10, - 11 - ], + "partyids": [10, 11], "watch_time": 30, "enter_time": 1586433904, "leave_time": 1586434000, @@ -20,10 +17,7 @@ { "student_userid": "lisi_child", "parent_userid": "lisi", - "partyids": [ - 10, - 11 - ], + "partyids": [10, 11], "watch_time": 30, "enter_time": 1586433904, "leave_time": 1586434000, diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetPaymentResultRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetPaymentResultRequest.json index 92dea4ff..3b6269e9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetPaymentResultRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetPaymentResultRequest.json @@ -1,3 +1,3 @@ { "payment_id": "xxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetPaymentResultResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetPaymentResultResponse.json index 58a6b054..27ef6fd7 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetPaymentResultResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetPaymentResultResponse.json @@ -11,4 +11,4 @@ "payer_parent_userid": "zhangshan" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetTradeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetTradeRequest.json index b039dfee..0135f260 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetTradeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetTradeRequest.json @@ -1,4 +1,4 @@ { "payment_id": "xxxx", "trade_no": "xxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetTradeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetTradeResponse.json index 17204d40..a2f293d8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetTradeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/Payment/CgibinSchoolGetTradeResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "transaction_id": "xxxxx", "pay_time": 12345 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/CgibinSchoolUserGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/CgibinSchoolUserGetResponse.json index b38e8fc5..e9435386 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/CgibinSchoolUserGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/CgibinSchoolUserGetResponse.json @@ -5,7 +5,7 @@ "student": { "student_userid": "zhangsan", "name": "张三", - "department": [ 1, 2 ], + "department": [1, 2], "parents": [ { "parent_userid": "zhangsan_parent1", diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/CgibinSchoolUserListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/CgibinSchoolUserListResponse.json index 99ed0c98..55eed40d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/CgibinSchoolUserListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/CgibinSchoolUserListResponse.json @@ -5,7 +5,7 @@ { "student_userid": "zhangsan", "name": "张三", - "department": [ 1, 2 ], + "department": [1, 2], "parents": [ { "parent_userid": "zhangsan_parent1", @@ -25,7 +25,7 @@ { "student_userid": "lisi", "name": "李四", - "department": [ 4, 5 ], + "department": [4, 5], "parents": [ { "parent_userid": "lisi_parent1", diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Health/CgibinSchoolUserGetHealthQrcodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Health/CgibinSchoolUserGetHealthQrcodeRequest.json index 2e2c8409..927ef45b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Health/CgibinSchoolUserGetHealthQrcodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Health/CgibinSchoolUserGetHealthQrcodeRequest.json @@ -1,7 +1,4 @@ { "type": 1, - "userids": [ - "userid1", - "userid2" - ] + "userids": ["userid1", "userid2"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Parent/CgibinSchoolUserBatchDeleteParentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Parent/CgibinSchoolUserBatchDeleteParentRequest.json index 9510c3b4..1a4b1c25 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Parent/CgibinSchoolUserBatchDeleteParentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Parent/CgibinSchoolUserBatchDeleteParentRequest.json @@ -1,3 +1,3 @@ { - "useridlist": [ "zhangsan", "lisi" ] + "useridlist": ["zhangsan", "lisi"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserBatchCreateStudentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserBatchCreateStudentRequest.json index df30ff8d..f40d8d23 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserBatchCreateStudentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserBatchCreateStudentRequest.json @@ -3,12 +3,12 @@ { "student_userid": "zhangsan", "name": "张三", - "department": [ 1, 2 ] + "department": [1, 2] }, { "student_userid": "lisi", "name": "李四", - "department": [ 3, 4 ] + "department": [3, 4] } ] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserBatchDeleteStudentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserBatchDeleteStudentRequest.json index 9510c3b4..1a4b1c25 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserBatchDeleteStudentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserBatchDeleteStudentRequest.json @@ -1,3 +1,3 @@ { - "useridlist": [ "zhangsan", "lisi" ] + "useridlist": ["zhangsan", "lisi"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserBatchUpdateStudentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserBatchUpdateStudentRequest.json index 67b9e499..3ab30bd8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserBatchUpdateStudentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserBatchUpdateStudentRequest.json @@ -4,12 +4,12 @@ "student_userid": "zhangsan", "new_student_userid": "zhangsan_new", "name": "张三", - "department": [ 1, 2 ] + "department": [1, 2] }, { "student_userid": "lisi", "name": "李四", - "department": [ 3, 4 ] + "department": [3, 4] } ] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserCreateStudentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserCreateStudentRequest.json index 2b08dce0..d3d9962a 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserCreateStudentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserCreateStudentRequest.json @@ -1,5 +1,5 @@ { "student_userid": "zhangsan", "name": "张三", - "department": [ 1, 2 ] + "department": [1, 2] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserUpdateStudentRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserUpdateStudentRequest.json index 495b477b..e4d11d0d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserUpdateStudentRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinSchool/User/Student/CgibinSchoolUserUpdateStudentRequest.json @@ -2,5 +2,5 @@ "student_userid": "zhangsan", "new_student_userid": "NEW_ID", "name": "张三", - "department": [ 1, 2 ] + "department": [1, 2] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetAppQrcodeRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetAppQrcodeRequest.json index 4c0e0c88..83587f72 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetAppQrcodeRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetAppQrcodeRequest.json @@ -3,4 +3,4 @@ "state": "test", "style": 0, "result_type": 1 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetAppQrcodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetAppQrcodeResponse.json index 18ffa315..a6ddf421 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetAppQrcodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetAppQrcodeResponse.json @@ -2,4 +2,4 @@ "errcode": 0, "errmsg": "ok", "qrcode": "xxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetAuthInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetAuthInfoResponse.json index f798d468..999a216b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetAuthInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetAuthInfoResponse.json @@ -32,12 +32,12 @@ "auth_mode": 1, "privilege": { "level": 1, - "allow_party": [ 1, 2, 3 ], - "allow_user": [ "zhansan", "lisi" ], - "allow_tag": [ 1, 2, 3 ], - "extra_party": [ 4, 5, 6 ], - "extra_user": [ "wangwu" ], - "extra_tag": [ 4, 5, 6 ] + "allow_party": [1, 2, 3], + "allow_user": ["zhansan", "lisi"], + "allow_tag": [1, 2, 3], + "extra_party": [4, 5, 6], + "extra_user": ["wangwu"], + "extra_tag": [4, 5, 6] }, "shared_from": { "corpid": "wwyyyyy" diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetCustomizedAuthUrlRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetCustomizedAuthUrlRequest.json index b57b3f27..f24eda87 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetCustomizedAuthUrlRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetCustomizedAuthUrlRequest.json @@ -1,4 +1,4 @@ { "state": "test", - "templateid_list": [ "dk1", "dk2" ] -} \ No newline at end of file + "templateid_list": ["dk1", "dk2"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetCustomizedAuthUrlResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetCustomizedAuthUrlResponse.json index 7b9c32e4..3b314e73 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetCustomizedAuthUrlResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetCustomizedAuthUrlResponse.json @@ -3,4 +3,4 @@ "errmsg": "ok", "qrcode_url": "xxxxx", "expires_in": 864000 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetPermanentCodeResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetPermanentCodeResponse.json index fa63e7d3..9b2cdc95 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetPermanentCodeResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceGetPermanentCodeResponse.json @@ -36,12 +36,12 @@ "auth_mode": 1, "privilege": { "level": 1, - "allow_party": [ 1, 2, 3 ], - "allow_user": [ "zhansan", "lisi" ], - "allow_tag": [ 1, 2, 3 ], - "extra_party": [ 4, 5, 6 ], - "extra_user": [ "wangwu" ], - "extra_tag": [ 4, 5, 6 ] + "allow_party": [1, 2, 3], + "allow_user": ["zhansan", "lisi"], + "allow_tag": [1, 2, 3], + "extra_party": [4, 5, 6], + "extra_user": ["wangwu"], + "extra_tag": [4, 5, 6] }, "shared_from": { "corpid": "wwyyyyy" diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceSetSessionInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceSetSessionInfoRequest.json index 10650cea..4ca1f367 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceSetSessionInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/CgibinServiceSetSessionInfoRequest.json @@ -1,7 +1,7 @@ { "pre_auth_code": "xxxxx", "session_info": { - "appid": [ 1, 2, 3 ], + "appid": [1, 2, 3], "auth_type": 1 } } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Contact/CgibinServiceContactIdTranslateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Contact/CgibinServiceContactIdTranslateRequest.json index 0e9d3908..c8a396c9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Contact/CgibinServiceContactIdTranslateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Contact/CgibinServiceContactIdTranslateRequest.json @@ -1,6 +1,6 @@ { "auth_corpid": "wwxxxx", - "media_id_list": [ "1G6nrLmr5EC3MMb_-zK1dDdzmd0p7cNliYu9V5w7o8K0" ], + "media_id_list": ["1G6nrLmr5EC3MMb_-zK1dDdzmd0p7cNliYu9V5w7o8K0"], "output_file_name": "学习手册", "output_file_format": "pdf" } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Contact/CgibinServiceContactSortRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Contact/CgibinServiceContactSortRequest.json index 020f0132..39d78c7c 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Contact/CgibinServiceContactSortRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Contact/CgibinServiceContactSortRequest.json @@ -1,5 +1,5 @@ { "auth_corpid": "wwxxxxxx", "sort_type": 1, - "useridlist": [ "zhangshan", "lisi" ] + "useridlist": ["zhangshan", "lisi"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Contact/CgibinServiceContactSortResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Contact/CgibinServiceContactSortResponse.json index 78b6deec..fb93d0b2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Contact/CgibinServiceContactSortResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Contact/CgibinServiceContactSortResponse.json @@ -1,5 +1,5 @@ { "errcode": 0, "errmsg": "ok", - "useridlist": [ "lisi", "zhangshan" ] + "useridlist": ["lisi", "zhangshan"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceAddDeviceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceAddDeviceRequest.json index 9d3bce65..388a34d2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceAddDeviceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceAddDeviceRequest.json @@ -1,4 +1,4 @@ { "model_id": "hwme7a11fc60a668689", "device_sn": "WXWK001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceAddDeviceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceAddDeviceResponse.json index 54be4827..6d95cc0b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceAddDeviceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceAddDeviceResponse.json @@ -9,4 +9,4 @@ "device_id": 6618424034010721282, "qr_code": "https://open.work.weixin.qq.com/connect/hardware?hw_code=Jq7BtgRwZ1Sg-xxxxx" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceDeleteDeviceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceDeleteDeviceRequest.json index 26ec6e39..2332e468 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceDeleteDeviceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceDeleteDeviceRequest.json @@ -1,3 +1,3 @@ { "device_sn": "WXWK001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceFetchDeviceLogRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceFetchDeviceLogRequest.json index b81c9bee..6f9badd9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceFetchDeviceLogRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceFetchDeviceLogRequest.json @@ -1,4 +1,4 @@ { "device_sn": "WXWK001", "hint": "device_log/20190101" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceGetDeviceAuthInfoRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceGetDeviceAuthInfoRequest.json index 26ec6e39..2332e468 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceGetDeviceAuthInfoRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceGetDeviceAuthInfoRequest.json @@ -1,3 +1,3 @@ { "device_sn": "WXWK001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceGetDeviceAuthInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceGetDeviceAuthInfoResponse.json index 1909f5a7..cbf53f01 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceGetDeviceAuthInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceGetDeviceAuthInfoResponse.json @@ -9,4 +9,4 @@ "remark_name": "TIT-B4 401投影", "model_id": "xxxxx" } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceListDeviceRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceListDeviceRequest.json index 131b332e..cf3ed0cd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceListDeviceRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceListDeviceRequest.json @@ -1,4 +1,4 @@ { "offset": 1, "limit": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceListDeviceResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceListDeviceResponse.json index 3187790e..986f56bc 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceListDeviceResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceListDeviceResponse.json @@ -7,4 +7,4 @@ "model_id": "xxx" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceResetSecretNumberRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceResetSecretNumberRequest.json index 26ec6e39..2332e468 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceResetSecretNumberRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceResetSecretNumberRequest.json @@ -1,3 +1,3 @@ { "device_sn": "WXWK001" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceSetPrinterSupportStateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceSetPrinterSupportStateRequest.json index 9697474f..d7496479 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceSetPrinterSupportStateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Device/CgibinServiceSetPrinterSupportStateRequest.json @@ -1,4 +1,4 @@ { "device_sn": "WXWK001", "not_supported_printer": true -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinExternalContactGetNewExternalUserIdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinExternalContactGetNewExternalUserIdRequest.json index ff70a5cb..4ca978bd 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinExternalContactGetNewExternalUserIdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinExternalContactGetNewExternalUserIdRequest.json @@ -1,3 +1,3 @@ { - "external_userid_list": [ "xxxxx", "yyyyyy" ] -} \ No newline at end of file + "external_userid_list": ["xxxxx", "yyyyyy"] +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinExternalContactGetNewExternalUserIdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinExternalContactGetNewExternalUserIdResponse.json index 869f1ef5..56a04fe2 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinExternalContactGetNewExternalUserIdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinExternalContactGetNewExternalUserIdResponse.json @@ -11,4 +11,4 @@ "new_external_userid": "BBBB" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinServiceExternalContactFinishExternalUserIdMigrationRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinServiceExternalContactFinishExternalUserIdMigrationRequest.json index dcaae4fe..9a53a5a8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinServiceExternalContactFinishExternalUserIdMigrationRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinServiceExternalContactFinishExternalUserIdMigrationRequest.json @@ -1,3 +1,3 @@ { "corpid": "xxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinServiceExternalContactUnionIdToExternalUserId3rdRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinServiceExternalContactUnionIdToExternalUserId3rdRequest.json index a303a938..9847a88d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinServiceExternalContactUnionIdToExternalUserId3rdRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinServiceExternalContactUnionIdToExternalUserId3rdRequest.json @@ -2,4 +2,4 @@ "unionid": "xxxxx", "openid": "xxxxx", "corpid": "xxxxx" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinServiceExternalContactUnionIdToExternalUserId3rdResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinServiceExternalContactUnionIdToExternalUserId3rdResponse.json index 86f68139..5bdecbfa 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinServiceExternalContactUnionIdToExternalUserId3rdResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/ExternalContactMigration/CgibinServiceExternalContactUnionIdToExternalUserId3rdResponse.json @@ -11,4 +11,4 @@ "external_userid": "DDDDD" } ] -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/MiniProgram/CgibinServiceMiniProgramJsCode2SessionResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/MiniProgram/CgibinServiceMiniProgramJsCode2SessionResponse.json index bc89b367..5f031290 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/MiniProgram/CgibinServiceMiniProgramJsCode2SessionResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/MiniProgram/CgibinServiceMiniProgramJsCode2SessionResponse.json @@ -5,4 +5,4 @@ "open_userid": "woTD_bDwAA6qQBOujKfgScxHP3msqqng", "errcode": 0, "errmsg": "ok" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Register/CgibinServiceGetRegisterInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Register/CgibinServiceGetRegisterInfoResponse.json index 1d12919f..eb6f9ba8 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Register/CgibinServiceGetRegisterInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinService/Register/CgibinServiceGetRegisterInfoResponse.json @@ -11,4 +11,4 @@ }, "state": "TestState123", "template_id": "tpltest" -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/CgibinTagGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/CgibinTagGetResponse.json index 754140a1..a7a28391 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/CgibinTagGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/CgibinTagGetResponse.json @@ -8,5 +8,5 @@ "name": "李四" } ], - "partylist": [ 2 ] + "partylist": [2] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagAddTagUsersRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagAddTagUsersRequest.json index 1fbcdd34..c4ae8c08 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagAddTagUsersRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagAddTagUsersRequest.json @@ -1,5 +1,5 @@ { "tagid": 12, - "userlist": [ "user1", "user2" ], - "partylist": [ 4 ] + "userlist": ["user1", "user2"], + "partylist": [4] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagAddTagUsersResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagAddTagUsersResponse.json index 76759f95..c41d7e59 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagAddTagUsersResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagAddTagUsersResponse.json @@ -2,5 +2,5 @@ "errcode": 0, "errmsg": "ok", "invalidlist": "usr1|usr2|usr", - "invalidparty": [ 2, 4 ] + "invalidparty": [2, 4] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagDeleteTagUsersRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagDeleteTagUsersRequest.json index f5d9ca4a..99896deb 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagDeleteTagUsersRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagDeleteTagUsersRequest.json @@ -1,5 +1,5 @@ { "tagid": 12, - "userlist": [ "user1", "user2" ], - "partylist": [ 2, 4 ] + "userlist": ["user1", "user2"], + "partylist": [2, 4] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagDeleteTagUsersResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagDeleteTagUsersResponse.json index d4fb7bcf..e182b548 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagDeleteTagUsersResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinTag/TagUser/CgibinTagDeleteTagUsersResponse.json @@ -2,5 +2,5 @@ "errcode": 0, "errmsg": "deleted", "invalidlist": "usr1|usr2|usr", - "invalidparty": [ 2, 4 ] + "invalidparty": [2, 4] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserBatchDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserBatchDeleteRequest.json index 9510c3b4..1a4b1c25 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserBatchDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserBatchDeleteRequest.json @@ -1,3 +1,3 @@ { - "useridlist": [ "zhangsan", "lisi" ] + "useridlist": ["zhangsan", "lisi"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserCreateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserCreateRequest.json index 93287a6b..a826b37d 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserCreateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserCreateRequest.json @@ -3,13 +3,13 @@ "name": "张三", "alias": "jackzhang", "mobile": "13800000000", - "department": [ 1, 2 ], - "order": [ 10, 40 ], + "department": [1, 2], + "order": [10, 40], "position": "产品经理", "gender": "1", "email": "zhangsan@gzdev.com", - "is_leader_in_dept": [ 1, 0 ], - "direct_leader": [ "lisi", "wangwu" ], + "is_leader_in_dept": [1, 0], + "direct_leader": ["lisi", "wangwu"], "enable": 1, "avatar_mediaid": "2-G6nrLmr5EC3MNb_-zL1dDdzkd0p7cNliYu9V5w7o8K0", "telephone": "020-123456", @@ -67,4 +67,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserGetResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserGetResponse.json index 613db8cb..bf7432a3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserGetResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserGetResponse.json @@ -3,14 +3,14 @@ "errmsg": "ok", "userid": "zhangsan", "name": "张三", - "department": [ 1, 2 ], - "order": [ 1, 2 ], + "department": [1, 2], + "order": [1, 2], "position": "后台工程师", "mobile": "13800000000", "gender": "1", "email": "zhangsan@gzdev.com", - "is_leader_in_dept": [ 1, 0 ], - "direct_leader": [ "lisi", "wangwu" ], + "is_leader_in_dept": [1, 0], + "direct_leader": ["lisi", "wangwu"], "avatar": "http://wx.qlogo.cn/mmopen/ajNVdqHZLLA3WJ6DSZUfiakYe37PKnQhBIeOQBO4czqrnZDS79FH5Wm5m4X69TBicnHFlhiafvDwklOpZeXYQQ2icg/0", "thumb_avatar": "http://wx.qlogo.cn/mmopen/ajNVdqHZLLA3WJ6DSZUfiakYe37PKnQhBIeOQBO4czqrnZDS79FH5Wm5m4X69TBicnHFlhiafvDwklOpZeXYQQ2icg/100", "telephone": "020-123456", @@ -73,4 +73,4 @@ } ] } -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserListResponse.json index c590b061..f3053fe9 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserListResponse.json @@ -5,14 +5,14 @@ { "userid": "zhangsan", "name": "李四", - "department": [ 1, 2 ], - "order": [ 1, 2 ], + "department": [1, 2], + "order": [1, 2], "position": "后台工程师", "mobile": "13800000000", "gender": "1", "email": "zhangsan@gzdev.com", - "is_leader_in_dept": [ 1, 0 ], - "direct_leader": [ "lisi", "wangwu" ], + "is_leader_in_dept": [1, 0], + "direct_leader": ["lisi", "wangwu"], "avatar": "http://wx.qlogo.cn/mmopen/ajNVdqHZLLA3WJ6DSZUfiakYe37PKnQhBIeOQBO4czqrnZDS79FH5Wm5m4X69TBicnHFlhiafvDwklOpZeXYQQ2icg/0", "thumb_avatar": "http://wx.qlogo.cn/mmopen/ajNVdqHZLLA3WJ6DSZUfiakYe37PKnQhBIeOQBO4czqrnZDS79FH5Wm5m4X69TBicnHFlhiafvDwklOpZeXYQQ2icg/100", "telephone": "020-123456", diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserListSelectedTicketUserResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserListSelectedTicketUserResponse.json index 92250962..705fe28e 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserListSelectedTicketUserResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserListSelectedTicketUserResponse.json @@ -2,7 +2,7 @@ "errcode": 0, "errmsg": "ok", "operator_open_userid": "xxx", - "open_userid_list": [ "xxxx", "xxxx" ], - "unauth_open_userid_list": [ "yyyy", "yyy" ], + "open_userid_list": ["xxxx", "xxxx"], + "unauth_open_userid_list": ["yyyy", "yyy"], "total": 10 -} \ No newline at end of file +} diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserSimpleListResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserSimpleListResponse.json index 2a3a776a..8c88fe49 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserSimpleListResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserSimpleListResponse.json @@ -5,7 +5,7 @@ { "userid": "zhangsan", "name": "张三", - "department": [ 1, 2 ], + "department": [1, 2], "open_userid": "xxxxxx" } ] diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserUpdateRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserUpdateRequest.json index 27b56ed5..231990e5 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserUpdateRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinUser/CgibinUserUpdateRequest.json @@ -1,15 +1,15 @@ { "userid": "zhangsan", "name": "李四", - "department": [ 1 ], - "order": [ 10 ], + "department": [1], + "order": [10], "position": "后台工程师", "mobile": "13800000000", "gender": "1", "email": "zhangsan@gzdev.com", - "is_leader_in_dept": [ 1 ], + "is_leader_in_dept": [1], "enable": 1, - "direct_leader": [ "lisi", "wangwu" ], + "direct_leader": ["lisi", "wangwu"], "avatar_mediaid": "2-G6nrLmr5EC3MNb_-zL1dDdzkd0p7cNliYu9V5w7o8K0", "telephone": "020-123456", "alias": "jackzhang", diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWebDrive/File/CgibinWebDriveFileDeleteRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWebDrive/File/CgibinWebDriveFileDeleteRequest.json index d313caa0..6b2893a3 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWebDrive/File/CgibinWebDriveFileDeleteRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWebDrive/File/CgibinWebDriveFileDeleteRequest.json @@ -1,4 +1,4 @@ { "userid": "USERID", - "fileid": [ "FILEID1", "FILEID2" ] + "fileid": ["FILEID1", "FILEID2"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWebDrive/File/CgibinWebDriveFileMoveRequest.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWebDrive/File/CgibinWebDriveFileMoveRequest.json index 655c1465..addbebdf 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWebDrive/File/CgibinWebDriveFileMoveRequest.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWebDrive/File/CgibinWebDriveFileMoveRequest.json @@ -2,5 +2,5 @@ "userid": "USERID", "fatherid": "FATHERID", "replace": true, - "fileid": [ "FILEID1", "FILEID2" ] + "fileid": ["FILEID1", "FILEID2"] } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWebDrive/Space/CgibinWebDriveSpaceInfoResponse.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWebDrive/Space/CgibinWebDriveSpaceInfoResponse.json index 58e83031..6dcb5a1b 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWebDrive/Space/CgibinWebDriveSpaceInfoResponse.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/ModelSamples/CgibinWebDrive/Space/CgibinWebDriveSpaceInfoResponse.json @@ -22,7 +22,7 @@ "auth": 1 } ], - "quit_userid": [ "USERID3", "USERID4" ] + "quit_userid": ["USERID3", "USERID4"] } } } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/TestCase_EventTests.cs b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/TestCase_EventTests.cs index a38d49e5..a274ac85 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/TestCase_EventTests.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/TestCase_EventTests.cs @@ -1,4 +1,4 @@ -using Xunit; +using Xunit; namespace SKIT.FlurlHttpClient.Wechat.Work.UnitTests { @@ -44,7 +44,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.UnitTests }; var client = new WechatWorkClient(options); - Assert.True(client.VerifyEventSignatureForEcho(callbacTimeStamp, callbacNonce, callbackEcho, callbacMsgSig, out string replyEcho)); + Assert.True(client.VerifyEventSignatureForEcho(callbacTimeStamp, callbacNonce, callbackEcho, callbacMsgSig, out string? replyEcho)); Assert.Equal("1616140317555161061", replyEcho); } } diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/TestConfigs.cs b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/TestConfigs.cs index e57d0a57..8b0aa559 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/TestConfigs.cs +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/TestConfigs.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.IO; using System.Text.Json; @@ -9,7 +9,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.UnitTests static TestConfigs() { // NOTICE: 请在项目根目录下按照 appsettings.json 的格式新建 appsettings.local.json 填入测试参数。 - // WARNING: 请在 DEBUG 模式下运行测试用例。 + // WARNING: 请在 DEBUG 模式下运行测试用例。 // WARNING: 敏感信息请不要提交到 git! try @@ -19,7 +19,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Work.UnitTests var config = jdoc.RootElement.GetProperty("TestConfig"); WechatCorpId = config.GetProperty("CorpId").GetString()!; - WechatAgentId = int.Parse(config.GetProperty("AgentId").GetString())!; + WechatAgentId = int.Parse(config.GetProperty("AgentId").GetString()!); WechatAgentSecret = config.GetProperty("AgentSecret").GetString()!; WechatAccessToken = config.GetProperty("AccessToken").GetString()!; diff --git a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/appsettings.json b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/appsettings.json index 47047d84..1909d584 100644 --- a/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/appsettings.json +++ b/test/SKIT.FlurlHttpClient.Wechat.Work.UnitTests/appsettings.json @@ -7,4 +7,4 @@ }, "WorkDirectoryForSdk": "请输入当前 SDK 项目所在的目录完整路径,如 C:\\Project\\src\\SKIT.FlurlHttpClient.Wechat.Work\\", "WorkDirectoryForTest": "请输入当前测试项目所在的目录完整路径,如 C:\\Project\\test\\SKIT.FlurlHttpClient.Wechat.Work.UnitTests\\" -} \ No newline at end of file +}