SecretOfflineReq.php 707 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace UnionOpenPromotionSecretOffline;
  3. class SecretOfflineReq{
  4. private $params=array();
  5. function __construct(){
  6. $this->params["@type"]="com.jd.union.open.gateway.api.dto.promotion.secret.SecretOfflineReq";
  7. }
  8. private $secretIds;
  9. public function setSecretIds($secretIds){
  10. $this->params['secretIds'] = $secretIds;
  11. }
  12. public function getSecretIds(){
  13. return $this->secretIds;
  14. }
  15. private $pin;
  16. public function setPin($pin){
  17. $this->params['pin'] = $pin;
  18. }
  19. public function getPin(){
  20. return $this->pin;
  21. }
  22. function getInstance(){
  23. return $this->params;
  24. }
  25. }
  26. ?>