AppipGetRequest.php 490 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * TOP API: taobao.appip.get request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2014.11.26
  7. */
  8. class AppipGetRequest {
  9. private $apiParas = array();
  10. public function getApiMethodName() {
  11. return "taobao.appip.get";
  12. }
  13. public function getApiParas() {
  14. return $this->apiParas;
  15. }
  16. public function check() {
  17. }
  18. public function putOtherTextParam($key, $value) {
  19. $this->apiParas[$key] = $value;
  20. $this->$key = $value;
  21. }
  22. }