| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- /*
- * Copyright 2009-2017 Alibaba Cloud All rights reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include <alibabacloud/live/model/AddShowIntoShowListRequest.h>
- using AlibabaCloud::Live::Model::AddShowIntoShowListRequest;
- AddShowIntoShowListRequest::AddShowIntoShowListRequest() :
- RpcServiceRequest("live", "2016-11-01", "AddShowIntoShowList")
- {
- setMethod(HttpRequest::Method::Post);
- }
- AddShowIntoShowListRequest::~AddShowIntoShowListRequest()
- {}
- int AddShowIntoShowListRequest::getLiveInputType()const
- {
- return liveInputType_;
- }
- void AddShowIntoShowListRequest::setLiveInputType(int liveInputType)
- {
- liveInputType_ = liveInputType;
- setParameter("LiveInputType", std::to_string(liveInputType));
- }
- long AddShowIntoShowListRequest::getDuration()const
- {
- return duration_;
- }
- void AddShowIntoShowListRequest::setDuration(long duration)
- {
- duration_ = duration;
- setParameter("Duration", std::to_string(duration));
- }
- int AddShowIntoShowListRequest::getRepeatTimes()const
- {
- return repeatTimes_;
- }
- void AddShowIntoShowListRequest::setRepeatTimes(int repeatTimes)
- {
- repeatTimes_ = repeatTimes;
- setParameter("RepeatTimes", std::to_string(repeatTimes));
- }
- std::string AddShowIntoShowListRequest::getShowName()const
- {
- return showName_;
- }
- void AddShowIntoShowListRequest::setShowName(const std::string& showName)
- {
- showName_ = showName;
- setParameter("ShowName", showName);
- }
- std::string AddShowIntoShowListRequest::getResourceId()const
- {
- return resourceId_;
- }
- void AddShowIntoShowListRequest::setResourceId(const std::string& resourceId)
- {
- resourceId_ = resourceId;
- setParameter("ResourceId", resourceId);
- }
- std::string AddShowIntoShowListRequest::getCasterId()const
- {
- return casterId_;
- }
- void AddShowIntoShowListRequest::setCasterId(const std::string& casterId)
- {
- casterId_ = casterId;
- setParameter("CasterId", casterId);
- }
- long AddShowIntoShowListRequest::getOwnerId()const
- {
- return ownerId_;
- }
- void AddShowIntoShowListRequest::setOwnerId(long ownerId)
- {
- ownerId_ = ownerId;
- setParameter("OwnerId", std::to_string(ownerId));
- }
- std::string AddShowIntoShowListRequest::getResourceType()const
- {
- return resourceType_;
- }
- void AddShowIntoShowListRequest::setResourceType(const std::string& resourceType)
- {
- resourceType_ = resourceType;
- setParameter("ResourceType", resourceType);
- }
- std::string AddShowIntoShowListRequest::getResourceUrl()const
- {
- return resourceUrl_;
- }
- void AddShowIntoShowListRequest::setResourceUrl(const std::string& resourceUrl)
- {
- resourceUrl_ = resourceUrl;
- setParameter("ResourceUrl", resourceUrl);
- }
- int AddShowIntoShowListRequest::getSpot()const
- {
- return spot_;
- }
- void AddShowIntoShowListRequest::setSpot(int spot)
- {
- spot_ = spot;
- setParameter("Spot", std::to_string(spot));
- }
|