85 lines
2.3 KiB
C++
85 lines
2.3 KiB
C++
/*
|
|
* 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_DEVOPS_RDC_MODEL_CREATEDEVOPSPROJECTTASKRESULT_H_
|
|
#define ALIBABACLOUD_DEVOPS_RDC_MODEL_CREATEDEVOPSPROJECTTASKRESULT_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <utility>
|
|
#include <alibabacloud/core/ServiceResult.h>
|
|
#include <alibabacloud/devops-rdc/Devops_rdcExport.h>
|
|
|
|
namespace AlibabaCloud
|
|
{
|
|
namespace Devops_rdc
|
|
{
|
|
namespace Model
|
|
{
|
|
class ALIBABACLOUD_DEVOPS_RDC_EXPORT CreateDevopsProjectTaskResult : public ServiceResult
|
|
{
|
|
public:
|
|
struct Object
|
|
{
|
|
int rating;
|
|
std::string sprintId;
|
|
std::string organizationId;
|
|
std::string tasklistId;
|
|
std::string source;
|
|
std::string created;
|
|
std::string startDate;
|
|
std::string executorId;
|
|
std::string taskType;
|
|
std::string ancestorIds;
|
|
std::string visible;
|
|
std::string dueDate;
|
|
int uniqueId;
|
|
std::string updated;
|
|
int priority;
|
|
std::string creatorId;
|
|
std::string projectId;
|
|
std::string taskflowstatusId;
|
|
bool isDone;
|
|
std::string storyPoint;
|
|
int pos;
|
|
std::string content;
|
|
std::string note;
|
|
std::string id;
|
|
std::string scenarioFieldConfigId;
|
|
};
|
|
|
|
|
|
CreateDevopsProjectTaskResult();
|
|
explicit CreateDevopsProjectTaskResult(const std::string &payload);
|
|
~CreateDevopsProjectTaskResult();
|
|
std::string getErrorMsg()const;
|
|
Object getObject()const;
|
|
std::string getErrorCode()const;
|
|
bool getSuccessful()const;
|
|
|
|
protected:
|
|
void parse(const std::string &payload);
|
|
private:
|
|
std::string errorMsg_;
|
|
Object object_;
|
|
std::string errorCode_;
|
|
bool successful_;
|
|
|
|
};
|
|
}
|
|
}
|
|
}
|
|
#endif // !ALIBABACLOUD_DEVOPS_RDC_MODEL_CREATEDEVOPSPROJECTTASKRESULT_H_
|