| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- /*
- * 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/vod/model/SetMessageCallbackRequest.h>
- using AlibabaCloud::Vod::Model::SetMessageCallbackRequest;
- SetMessageCallbackRequest::SetMessageCallbackRequest() :
- RpcServiceRequest("vod", "2017-03-21", "SetMessageCallback")
- {}
- SetMessageCallbackRequest::~SetMessageCallbackRequest()
- {}
- std::string SetMessageCallbackRequest::getAuthKey()const
- {
- return authKey_;
- }
- void SetMessageCallbackRequest::setAuthKey(const std::string& authKey)
- {
- authKey_ = authKey;
- setCoreParameter("AuthKey", authKey);
- }
- std::string SetMessageCallbackRequest::getResourceOwnerId()const
- {
- return resourceOwnerId_;
- }
- void SetMessageCallbackRequest::setResourceOwnerId(const std::string& resourceOwnerId)
- {
- resourceOwnerId_ = resourceOwnerId;
- setCoreParameter("ResourceOwnerId", resourceOwnerId);
- }
- long SetMessageCallbackRequest::getResourceRealOwnerId()const
- {
- return resourceRealOwnerId_;
- }
- void SetMessageCallbackRequest::setResourceRealOwnerId(long resourceRealOwnerId)
- {
- resourceRealOwnerId_ = resourceRealOwnerId;
- setCoreParameter("ResourceRealOwnerId", std::to_string(resourceRealOwnerId));
- }
- std::string SetMessageCallbackRequest::getAccessKeyId()const
- {
- return accessKeyId_;
- }
- void SetMessageCallbackRequest::setAccessKeyId(const std::string& accessKeyId)
- {
- accessKeyId_ = accessKeyId;
- setCoreParameter("AccessKeyId", accessKeyId);
- }
- std::string SetMessageCallbackRequest::getCallbackType()const
- {
- return callbackType_;
- }
- void SetMessageCallbackRequest::setCallbackType(const std::string& callbackType)
- {
- callbackType_ = callbackType;
- setCoreParameter("CallbackType", callbackType);
- }
- std::string SetMessageCallbackRequest::getCallbackSwitch()const
- {
- return callbackSwitch_;
- }
- void SetMessageCallbackRequest::setCallbackSwitch(const std::string& callbackSwitch)
- {
- callbackSwitch_ = callbackSwitch;
- setCoreParameter("CallbackSwitch", callbackSwitch);
- }
- std::string SetMessageCallbackRequest::getResourceOwnerAccount()const
- {
- return resourceOwnerAccount_;
- }
- void SetMessageCallbackRequest::setResourceOwnerAccount(const std::string& resourceOwnerAccount)
- {
- resourceOwnerAccount_ = resourceOwnerAccount;
- setCoreParameter("ResourceOwnerAccount", resourceOwnerAccount);
- }
- std::string SetMessageCallbackRequest::getOwnerAccount()const
- {
- return ownerAccount_;
- }
- void SetMessageCallbackRequest::setOwnerAccount(const std::string& ownerAccount)
- {
- ownerAccount_ = ownerAccount;
- setCoreParameter("OwnerAccount", ownerAccount);
- }
- std::string SetMessageCallbackRequest::getEventTypeList()const
- {
- return eventTypeList_;
- }
- void SetMessageCallbackRequest::setEventTypeList(const std::string& eventTypeList)
- {
- eventTypeList_ = eventTypeList;
- setCoreParameter("EventTypeList", eventTypeList);
- }
- std::string SetMessageCallbackRequest::getMnsQueueName()const
- {
- return mnsQueueName_;
- }
- void SetMessageCallbackRequest::setMnsQueueName(const std::string& mnsQueueName)
- {
- mnsQueueName_ = mnsQueueName;
- setCoreParameter("MnsQueueName", mnsQueueName);
- }
- std::string SetMessageCallbackRequest::getOwnerId()const
- {
- return ownerId_;
- }
- void SetMessageCallbackRequest::setOwnerId(const std::string& ownerId)
- {
- ownerId_ = ownerId;
- setCoreParameter("OwnerId", ownerId);
- }
- std::string SetMessageCallbackRequest::getMnsEndpoint()const
- {
- return mnsEndpoint_;
- }
- void SetMessageCallbackRequest::setMnsEndpoint(const std::string& mnsEndpoint)
- {
- mnsEndpoint_ = mnsEndpoint;
- setCoreParameter("MnsEndpoint", mnsEndpoint);
- }
- std::string SetMessageCallbackRequest::getAppId()const
- {
- return appId_;
- }
- void SetMessageCallbackRequest::setAppId(const std::string& appId)
- {
- appId_ = appId;
- setCoreParameter("AppId", appId);
- }
- std::string SetMessageCallbackRequest::getAuthSwitch()const
- {
- return authSwitch_;
- }
- void SetMessageCallbackRequest::setAuthSwitch(const std::string& authSwitch)
- {
- authSwitch_ = authSwitch;
- setCoreParameter("AuthSwitch", authSwitch);
- }
- std::string SetMessageCallbackRequest::getCallbackURL()const
- {
- return callbackURL_;
- }
- void SetMessageCallbackRequest::setCallbackURL(const std::string& callbackURL)
- {
- callbackURL_ = callbackURL;
- setCoreParameter("CallbackURL", callbackURL);
- }
|