| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /*
- * 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.
- */
- #ifndef ALIBABACLOUD_MTS_MODEL_SUBMITCOPYRIGHTJOBREQUEST_H_
- #define ALIBABACLOUD_MTS_MODEL_SUBMITCOPYRIGHTJOBREQUEST_H_
- #include <alibabacloud/mts/MtsExport.h>
- #include <alibabacloud/core/RpcServiceRequest.h>
- #include <string>
- #include <vector>
- #include <map>
- namespace AlibabaCloud {
- namespace Mts {
- namespace Model {
- class ALIBABACLOUD_MTS_EXPORT SubmitCopyrightJobRequest : public RpcServiceRequest {
- public:
- SubmitCopyrightJobRequest();
- ~SubmitCopyrightJobRequest();
- std::string getVisibleMessage() const;
- void setVisibleMessage(const std::string &visibleMessage);
- std::string getDescription() const;
- void setDescription(const std::string &description);
- long getStartTime() const;
- void setStartTime(long startTime);
- std::string getOutput() const;
- void setOutput(const std::string &output);
- std::string getUserData() const;
- void setUserData(const std::string &userData);
- long getLevel() const;
- void setLevel(long level);
- std::string getMessage() const;
- void setMessage(const std::string &message);
- std::string getParams() const;
- void setParams(const std::string ¶ms);
- std::string getUrl() const;
- void setUrl(const std::string &url);
- std::string getInput() const;
- void setInput(const std::string &input);
- long getTotalTime() const;
- void setTotalTime(long totalTime);
- std::string getCallBack() const;
- void setCallBack(const std::string &callBack);
- private:
- std::string visibleMessage_;
- std::string description_;
- long startTime_;
- std::string output_;
- std::string userData_;
- long level_;
- std::string message_;
- std::string params_;
- std::string url_;
- std::string input_;
- long totalTime_;
- std::string callBack_;
- };
- } // namespace Model
- } // namespace Mts
- } // namespace AlibabaCloud
- #endif // !ALIBABACLOUD_MTS_MODEL_SUBMITCOPYRIGHTJOBREQUEST_H_
|