1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- class SealRemoveRequest extends SdkRequest {
- const REQUEST_URL = "/v2/seal/remove";
- private $sealId;
- public function getUrl() {
- return self::REQUEST_URL;
- }
- public function __construct() {
- $count = func_num_args();
- $args=func_get_args();
- if (method_exists($this,$f='__construct'.$count)) {
- call_user_func_array(array($this,$f),$args);
- }
- }
- public function __construct0() {
- }
- public function __construct1($sealId) {
- $this->sealId = $sealId;
- }
- public function getHttpParamers() {
- $paramSwitcher = ParamSwitcher::instanceParam();
- $paramSwitcher->addParam('sealId', $this->sealId);
- $httpParameters = HttpParameter::httpGetParamer();
- $httpParameters->setParams($paramSwitcher->getParams());
- return $httpParameters;
- }
- /**
- * @return mixed
- */
- public function getSealId()
- {
- return $this->sealId;
- }
- /**
- * @param mixed $sealId
- */
- public function setSealId($sealId)
- {
- $this->sealId = $sealId;
- }
- }
|