using Newtonsoft.Json; namespace Common.Request.thirdPlatform { public class StoreAuthParam { /// /// 店铺类型,TAOBAO:淘宝,JINGDONG:京东,TOUTIAO:抖店,PINDUODUO:拼多多 /// public string shopType { get; set; } /// /// 调参数sign的加密参数,非空时回调才会有sign参数 /// public string salt { get; set; } /// /// 授权后信息的信息回调地址 /// public string callBackUrl { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this, Formatting.Indented, new JsonSerializerSettings() { NullValueHandling = NullValueHandling.Ignore }); } } }