using System;
|
using System.Collections.Generic;
|
using System.Text;
|
using YouZanSDKStandard.Api.Response;
|
|
namespace YouZanSDKStandard.Api.Request
|
{
|
public class YouZanDecryptBatchRequest : IRequest<YouZanDecryptBatchResponse>
|
{
|
public string GetApiName()
|
{
|
return "youzan.cloud.secret.decrypt.batch";
|
}
|
|
public string GetApiVersion()
|
{
|
return "1.0.0";
|
}
|
|
public IDictionary<string, object> GetParameters()
|
{
|
Dictionary<string, object> dic = new Dictionary<string, object>();
|
dic.Add("sources", sources);
|
return dic;
|
}
|
|
public List<string> sources { get; set; }
|
|
public string ResponseJsonPrefix(string strRet)
|
{
|
return strRet;
|
}
|
|
public void Validate()
|
{
|
//throw new NotImplementedException();
|
}
|
}
|
}
|