PhalApiClientParser.cs 457 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace PhalApiClientSDK
  6. {
  7. /**
  8. * 接口结果解析器
  9. *
  10. * - 可用于不同接口返回格式的处理
  11. */
  12. public interface PhalApiClientParser
  13. {
  14. /**
  15. * 结果解析
  16. * @param String apiResult
  17. * @return PhalApiClientResponse
  18. */
  19. PhalApiClientResponse parse(String apiResult);
  20. }
  21. }