appKey; } public function getAppSecret(){ return $this->appSecret; } public function getV(){ return $this->v; } public function getFormat(){ return $this->format; } public function getSourceId(){ return $this->sourceId; } public function getHost(){ return $this->host; } /** * @param mixed $appKey */ public function setAppKey($appKey) { $this->appKey = $appKey; } /** * @param mixed $appSecret */ public function setAppSecret($appSecret) { $this->appSecret = $appSecret; } /** * @param mixed $v */ public function setV($v) { $this->v = $v; } /** * @param mixed $format */ public function setFormat($format) { $this->format = $format; } /** * @param mixed $sourceId */ public function setSourceId($sourceId) { $this->sourceId = $sourceId; } /** * @param mixed $host */ public function setHost($host) { $this->host = $host; } }