emoticon_api/Infrastructure/Kuaidi100/Common/Request/thirdPlatform/PlatformAuthParam.cs
2023-10-20 21:58:42 +08:00

30 lines
1021 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Newtonsoft.Json;
namespace Common.Request.thirdPlatform
{
public class PlatformAuthParam
{
/// <summary>
/// 请求的第三方平台仅主账号可授权。淘宝taobao菜鸟cainiao京东jdalpha拼多多pinduoduoWx抖店:douyin
/// </summary>
public string net { get; set; }
/// <summary>
/// 已经授权完需要重新获取授权信息
/// </summary>
public string partnerId { get; set; }
/// <summary>
/// 授权后信息的信息回调地址
/// </summary>
public string callbackUrl { get; set; }
/// <summary>
/// web(默认wap(只有淘宝和菜鸟可以使用)
/// </summary>
public string view { get; set; }
public override string ToString()
{
return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore });
}
}
}