* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace vod\Request\V20170321; class GetAuditResultRequest extends \RpcAcsRequest { public function __construct() { parent::__construct('vod', '2017-03-21', 'GetAuditResult', 'vod', 'openAPI'); $this->setMethod('POST'); } private $videoId; public function getVideoId() { return $this->videoId; } public function setVideoId($videoId) { $this->videoId = $videoId; $this->queryParameters['VideoId'] = $videoId; } }