| 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/live/model/AddLiveStreamTranscodeRequest.h>
- using AlibabaCloud::Live::Model::AddLiveStreamTranscodeRequest;
- AddLiveStreamTranscodeRequest::AddLiveStreamTranscodeRequest() :
- RpcServiceRequest("live", "2016-11-01", "AddLiveStreamTranscode")
- {
- setMethod(HttpRequest::Method::Post);
- }
- AddLiveStreamTranscodeRequest::~AddLiveStreamTranscodeRequest()
- {}
- std::string AddLiveStreamTranscodeRequest::get_Template()const
- {
- return _template_;
- }
- void AddLiveStreamTranscodeRequest::set_Template(const std::string& _template)
- {
- _template_ = _template;
- setParameter("_Template", _template);
- }
- std::string AddLiveStreamTranscodeRequest::getLazy()const
- {
- return lazy_;
- }
- void AddLiveStreamTranscodeRequest::setLazy(const std::string& lazy)
- {
- lazy_ = lazy;
- setParameter("Lazy", lazy);
- }
- std::string AddLiveStreamTranscodeRequest::getMix()const
- {
- return mix_;
- }
- void AddLiveStreamTranscodeRequest::setMix(const std::string& mix)
- {
- mix_ = mix;
- setParameter("Mix", mix);
- }
- std::string AddLiveStreamTranscodeRequest::getApp()const
- {
- return app_;
- }
- void AddLiveStreamTranscodeRequest::setApp(const std::string& app)
- {
- app_ = app;
- setParameter("App", app);
- }
- std::string AddLiveStreamTranscodeRequest::getWatermark()const
- {
- return watermark_;
- }
- void AddLiveStreamTranscodeRequest::setWatermark(const std::string& watermark)
- {
- watermark_ = watermark;
- setParameter("Watermark", watermark);
- }
- long AddLiveStreamTranscodeRequest::getOwnerId()const
- {
- return ownerId_;
- }
- void AddLiveStreamTranscodeRequest::setOwnerId(long ownerId)
- {
- ownerId_ = ownerId;
- setParameter("OwnerId", std::to_string(ownerId));
- }
- std::string AddLiveStreamTranscodeRequest::getDomain()const
- {
- return domain_;
- }
- void AddLiveStreamTranscodeRequest::setDomain(const std::string& domain)
- {
- domain_ = domain;
- setParameter("Domain", domain);
- }
- std::string AddLiveStreamTranscodeRequest::getWaterPattern()const
- {
- return waterPattern_;
- }
- void AddLiveStreamTranscodeRequest::setWaterPattern(const std::string& waterPattern)
- {
- waterPattern_ = waterPattern;
- setParameter("WaterPattern", waterPattern);
- }
- std::string AddLiveStreamTranscodeRequest::getOnlyAudio()const
- {
- return onlyAudio_;
- }
- void AddLiveStreamTranscodeRequest::setOnlyAudio(const std::string& onlyAudio)
- {
- onlyAudio_ = onlyAudio;
- setParameter("OnlyAudio", onlyAudio);
- }
|