JosSecretApiReportGetRequest.php 375 B

12345678910111213141516171819202122
  1. <?php
  2. namespace ACES\Common\domain;
  3. class JosSecretApiReportGetRequest
  4. {
  5. private $serverUrl;
  6. private $businessId;
  7. private $text;
  8. private $attribute;
  9. public function to360buyParamJson()
  10. {
  11. return json_encode(get_object_vars($this));
  12. }
  13. public function getJosMethod()
  14. {
  15. return 'jingdong.jos.secret.api.report.get';
  16. }
  17. }