<?php
namespace vod\Request\V20170321;
class UpdateEditingProjectRequest extends \RpcAcsRequest
{
function __construct()
{
parent::__construct("vod", "2017-03-21", "UpdateEditingProject", "vod", "openAPI");
$this->setMethod("POST");
}
private $coverURL;
private $resourceOwnerId;
private $resourceOwnerAccount;
private $ownerAccount;
private $timeline;
private $description;
private $ownerId;
private $title;
private $projectId;
public function getCoverURL() {
return $this->coverURL;
}
public function setCoverURL($coverURL) {
$this->coverURL = $coverURL;
$this->queryParameters["CoverURL"]=$coverURL;
}
public function getResourceOwnerId() {
return $this->resourceOwnerId;
}
public function setResourceOwnerId($resourceOwnerId) {
$this->resourceOwnerId = $resourceOwnerId;
$this->queryParameters["ResourceOwnerId"]=$resourceOwnerId;
}
public function getResourceOwnerAccount() {
return $this->resourceOwnerAccount;
}
public function setResourceOwnerAccount($resourceOwnerAccount) {
$this->resourceOwnerAccount = $resourceOwnerAccount;
$this->queryParameters["ResourceOwnerAccount"]=$resourceOwnerAccount;
}
public function getOwnerAccount() {
return $this->ownerAccount;
}
public function setOwnerAccount($ownerAccount) {
$this->ownerAccount = $ownerAccount;
$this->queryParameters["OwnerAccount"]=$ownerAccount;
}
public function getTimeline() {
return $this->timeline;
}
public function setTimeline($timeline) {
$this->timeline = $timeline;
$this->queryParameters["Timeline"]=$timeline;
}
public function getDescription() {
return $this->description;
}
public function setDescription($description) {
$this->description = $description;
$this->queryParameters["Description"]=$description;
}
public function getOwnerId() {
return $this->ownerId;
}
public function setOwnerId($ownerId) {
$this->ownerId = $ownerId;
$this->queryParameters["OwnerId"]=$ownerId;
}
public function getTitle() {
return $this->title;
}
public function setTitle($title) {
$this->title = $title;
$this->queryParameters["Title"]=$title;
}
public function getProjectId() {
return $this->projectId;
}
public function setProjectId($projectId) {
$this->projectId = $projectId;
$this->queryParameters["ProjectId"]=$projectId;
}
}