|
|
@@ -0,0 +1,93 @@
|
|
|
+/*
|
|
|
+ * 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/ccc/model/LaunchShortMessageAppraiseRequest.h>
|
|
|
+
|
|
|
+using AlibabaCloud::CCC::Model::LaunchShortMessageAppraiseRequest;
|
|
|
+
|
|
|
+LaunchShortMessageAppraiseRequest::LaunchShortMessageAppraiseRequest() :
|
|
|
+ RpcServiceRequest("ccc", "2017-07-05", "LaunchShortMessageAppraise")
|
|
|
+{}
|
|
|
+
|
|
|
+LaunchShortMessageAppraiseRequest::~LaunchShortMessageAppraiseRequest()
|
|
|
+{}
|
|
|
+
|
|
|
+std::string LaunchShortMessageAppraiseRequest::getAcid()const
|
|
|
+{
|
|
|
+ return acid_;
|
|
|
+}
|
|
|
+
|
|
|
+void LaunchShortMessageAppraiseRequest::setAcid(const std::string& acid)
|
|
|
+{
|
|
|
+ acid_ = acid;
|
|
|
+ setParameter("Acid", acid);
|
|
|
+}
|
|
|
+
|
|
|
+std::string LaunchShortMessageAppraiseRequest::getInstanceId()const
|
|
|
+{
|
|
|
+ return instanceId_;
|
|
|
+}
|
|
|
+
|
|
|
+void LaunchShortMessageAppraiseRequest::setInstanceId(const std::string& instanceId)
|
|
|
+{
|
|
|
+ instanceId_ = instanceId;
|
|
|
+ setParameter("InstanceId", instanceId);
|
|
|
+}
|
|
|
+
|
|
|
+int LaunchShortMessageAppraiseRequest::getContactType()const
|
|
|
+{
|
|
|
+ return contactType_;
|
|
|
+}
|
|
|
+
|
|
|
+void LaunchShortMessageAppraiseRequest::setContactType(int contactType)
|
|
|
+{
|
|
|
+ contactType_ = contactType;
|
|
|
+ setParameter("ContactType", std::to_string(contactType));
|
|
|
+}
|
|
|
+
|
|
|
+std::string LaunchShortMessageAppraiseRequest::getPhoneNumbers()const
|
|
|
+{
|
|
|
+ return phoneNumbers_;
|
|
|
+}
|
|
|
+
|
|
|
+void LaunchShortMessageAppraiseRequest::setPhoneNumbers(const std::string& phoneNumbers)
|
|
|
+{
|
|
|
+ phoneNumbers_ = phoneNumbers;
|
|
|
+ setParameter("PhoneNumbers", phoneNumbers);
|
|
|
+}
|
|
|
+
|
|
|
+std::string LaunchShortMessageAppraiseRequest::getSkillGroupId()const
|
|
|
+{
|
|
|
+ return skillGroupId_;
|
|
|
+}
|
|
|
+
|
|
|
+void LaunchShortMessageAppraiseRequest::setSkillGroupId(const std::string& skillGroupId)
|
|
|
+{
|
|
|
+ skillGroupId_ = skillGroupId;
|
|
|
+ setParameter("SkillGroupId", skillGroupId);
|
|
|
+}
|
|
|
+
|
|
|
+std::string LaunchShortMessageAppraiseRequest::getAccessKeyId()const
|
|
|
+{
|
|
|
+ return accessKeyId_;
|
|
|
+}
|
|
|
+
|
|
|
+void LaunchShortMessageAppraiseRequest::setAccessKeyId(const std::string& accessKeyId)
|
|
|
+{
|
|
|
+ accessKeyId_ = accessKeyId;
|
|
|
+ setParameter("AccessKeyId", accessKeyId);
|
|
|
+}
|
|
|
+
|