using System.Collections.Generic;
namespace Aliyun.Api
{
///
/// TOP请求接口。
///
public interface IAliyunRequest where T : AliyunResponse
{
///
/// 获取TOP的API名称。
///
/// API名称
string GetApiName();
///
/// 获取所有的Key-Value形式的文本请求参数字典。其中:
/// Key: 请求参数名
/// Value: 请求参数文本值
///
/// 文本请求参数字典
IDictionary GetParameters();
///
/// 提前验证参数。
///
void Validate();
}
}