using System; using System.Collections.Generic; using System.Text; namespace AlibabaSDK.Api { public interface IAlibabaApiRequest { /// /// 获得Api名称 /// /// string GetApiName(); /// /// 获得接口的参数 /// /// Dictionary GetParameters(); /// /// 验证 /// void Validate(); /// /// 接口对象返回的json的前缀字符串 /// /// //string ResponseJsonPrefix(string strRet); /// /// 错误数据返回 /// /// object ErrorObj(); } }