| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace UnionOpenPromotionSecretOffline;
- class SecretOfflineReq{
- private $params=array();
- function __construct(){
- $this->params["@type"]="com.jd.union.open.gateway.api.dto.promotion.secret.SecretOfflineReq";
- }
-
- private $secretIds;
-
- public function setSecretIds($secretIds){
- $this->params['secretIds'] = $secretIds;
- }
- public function getSecretIds(){
- return $this->secretIds;
- }
-
- private $pin;
-
- public function setPin($pin){
- $this->params['pin'] = $pin;
- }
- public function getPin(){
- return $this->pin;
- }
-
- function getInstance(){
- return $this->params;
- }
- }
- ?>
|