| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /*
- * 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/rtc/model/DescribeRtcChannelListRequest.h>
- using AlibabaCloud::Rtc::Model::DescribeRtcChannelListRequest;
- DescribeRtcChannelListRequest::DescribeRtcChannelListRequest() :
- RpcServiceRequest("rtc", "2018-01-11", "DescribeRtcChannelList")
- {
- setMethod(HttpRequest::Method::Post);
- }
- DescribeRtcChannelListRequest::~DescribeRtcChannelListRequest()
- {}
- std::string DescribeRtcChannelListRequest::getSortType()const
- {
- return sortType_;
- }
- void DescribeRtcChannelListRequest::setSortType(const std::string& sortType)
- {
- sortType_ = sortType;
- setParameter("SortType", sortType);
- }
- std::string DescribeRtcChannelListRequest::getUserId()const
- {
- return userId_;
- }
- void DescribeRtcChannelListRequest::setUserId(const std::string& userId)
- {
- userId_ = userId;
- setParameter("UserId", userId);
- }
- std::string DescribeRtcChannelListRequest::getServiceArea()const
- {
- return serviceArea_;
- }
- void DescribeRtcChannelListRequest::setServiceArea(const std::string& serviceArea)
- {
- serviceArea_ = serviceArea;
- setParameter("ServiceArea", serviceArea);
- }
- long DescribeRtcChannelListRequest::getPageSize()const
- {
- return pageSize_;
- }
- void DescribeRtcChannelListRequest::setPageSize(long pageSize)
- {
- pageSize_ = pageSize;
- setParameter("PageSize", std::to_string(pageSize));
- }
- long DescribeRtcChannelListRequest::getOwnerId()const
- {
- return ownerId_;
- }
- void DescribeRtcChannelListRequest::setOwnerId(long ownerId)
- {
- ownerId_ = ownerId;
- setParameter("OwnerId", std::to_string(ownerId));
- }
- long DescribeRtcChannelListRequest::getPageNo()const
- {
- return pageNo_;
- }
- void DescribeRtcChannelListRequest::setPageNo(long pageNo)
- {
- pageNo_ = pageNo;
- setParameter("PageNo", std::to_string(pageNo));
- }
- std::string DescribeRtcChannelListRequest::getAppId()const
- {
- return appId_;
- }
- void DescribeRtcChannelListRequest::setAppId(const std::string& appId)
- {
- appId_ = appId;
- setParameter("AppId", appId);
- }
- std::string DescribeRtcChannelListRequest::getChannelId()const
- {
- return channelId_;
- }
- void DescribeRtcChannelListRequest::setChannelId(const std::string& channelId)
- {
- channelId_ = channelId;
- setParameter("ChannelId", channelId);
- }
- std::string DescribeRtcChannelListRequest::getTimePoint()const
- {
- return timePoint_;
- }
- void DescribeRtcChannelListRequest::setTimePoint(const std::string& timePoint)
- {
- timePoint_ = timePoint;
- setParameter("TimePoint", timePoint);
- }
|