12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- using System.Collections.Generic;
- namespace Aop.Api.Request
- {
-
-
-
- public interface IAopRequest<T> where T : AopResponse
- {
-
-
-
-
- string GetNotifyUrl();
-
-
-
-
- void SetNotifyUrl(string notifyUrl);
-
-
-
-
- string GetApiName();
-
-
-
-
- string GetTerminalType();
-
-
-
-
- void SetTerminalType(string terminalType);
-
-
-
-
- string GetTerminalInfo();
-
-
-
-
- void SetTerminalInfo(string terminalInfo);
-
-
-
-
- string GetProdCode();
-
-
-
-
- void SetProdCode(string prodCode);
-
-
-
- void SetApiVersion(string apiVersion);
-
-
-
-
- string GetApiVersion();
-
-
-
-
-
-
- IDictionary<string, string> GetParameters();
- }
- }
|