| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- class DetectionImagesRedLineDetectBatchRequest
- {
- private $apiParas = array();
-
- public function getApiMethodName(){
- return "jingdong.detection.imagesRedLineDetectBatch";
- }
-
- public function getApiParas(){
- if(empty($this->apiParas)){
- return "{}";
- }
- return $this->apiParas;
- }
-
- public function check(){
-
- }
-
- public function putOtherTextParam($key, $value){
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- private $version;
- public function setVersion($version){
- $this->version = $version;
- }
- public function getVersion(){
- return $this->version;
- }
- private $timeZone;
-
- public function setTimeZone($timeZone){
- $this->timeZone = $timeZone;
- $this->apiParas["timeZone"] = $timeZone;
- }
- public function getTimeZone(){
- return $this->timeZone;
- }
- private $key;
-
- public function setKey($key){
- $this->key = $key;
- $this->apiParas["key"] = $key;
- }
- public function getKey(){
- return $this->key;
- }
- private $value;
-
- public function setValue($value){
- $this->value = $value;
- $this->apiParas["value"] = $value;
- }
- public function getValue(){
- return $this->value;
- }
- private $detectItem;
- public function setDetectItem($detectItem ){
- $this->detectItem=$detectItem;
- $this->apiParas["detectItem"] = $detectItem;
- }
- public function getDetectItem(){
- return $this->detectItem;
- }
- private $imageUrl;
- public function setImageUrl($imageUrl ){
- $this->imageUrl=$imageUrl;
- $this->apiParas["imageUrl"] = $imageUrl;
- }
- public function getImageUrl(){
- return $this->imageUrl;
- }
- }
-
-
|