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

26 lines
830 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 StoreAuthParam
{
/// <summary>
/// 店铺类型TAOBAO淘宝JINGDONG京东TOUTIAO抖店PINDUODUO拼多多
/// </summary>
public string shopType { get; set; }
/// <summary>
/// 调参数sign的加密参数非空时回调才会有sign参数
/// </summary>
public string salt { get; set; }
/// <summary>
/// 授权后信息的信息回调地址
/// </summary>
public string callBackUrl { get; set; }
public override string ToString()
{
return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore });
}
}
}