| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- namespace Com\Pdd\Pop\Sdk\Api\Request;
- use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
- use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
- class PddDdkOauthGoodsZsUnitUrlGenRequest extends PopBaseHttpRequest
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(Boolean, "generate_schema_url")
- */
- private $generateSchemaUrl;
- /**
- * @JsonProperty(String, "pid")
- */
- private $pid;
- /**
- * @JsonProperty(String, "source_url")
- */
- private $sourceUrl;
- /**
- * @JsonProperty(String, "custom_parameters")
- */
- private $customParameters;
- protected function setUserParams(&$params)
- {
- $this->setUserParam($params, "generate_schema_url", $this->generateSchemaUrl);
- $this->setUserParam($params, "pid", $this->pid);
- $this->setUserParam($params, "source_url", $this->sourceUrl);
- $this->setUserParam($params, "custom_parameters", $this->customParameters);
- }
- public function getVersion()
- {
- return "V1";
- }
- public function getDataType()
- {
- return "JSON";
- }
- public function getType()
- {
- return "pdd.ddk.oauth.goods.zs.unit.url.gen";
- }
- public function setGenerateSchemaUrl($generateSchemaUrl)
- {
- $this->generateSchemaUrl = $generateSchemaUrl;
- }
- public function setPid($pid)
- {
- $this->pid = $pid;
- }
- public function setSourceUrl($sourceUrl)
- {
- $this->sourceUrl = $sourceUrl;
- }
- public function setCustomParameters($customParameters)
- {
- $this->customParameters = $customParameters;
- }
- }
|