101 lines
2.5 KiB
C++
101 lines
2.5 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.
|
|
*/
|
|
|
|
#include <alibabacloud/fnf/model/CreateScheduleResult.h>
|
|
#include <json/json.h>
|
|
|
|
using namespace AlibabaCloud::Fnf;
|
|
using namespace AlibabaCloud::Fnf::Model;
|
|
|
|
CreateScheduleResult::CreateScheduleResult() :
|
|
ServiceResult()
|
|
{}
|
|
|
|
CreateScheduleResult::CreateScheduleResult(const std::string &payload) :
|
|
ServiceResult()
|
|
{
|
|
parse(payload);
|
|
}
|
|
|
|
CreateScheduleResult::~CreateScheduleResult()
|
|
{}
|
|
|
|
void CreateScheduleResult::parse(const std::string &payload)
|
|
{
|
|
Json::Reader reader;
|
|
Json::Value value;
|
|
reader.parse(payload, value);
|
|
setRequestId(value["RequestId"].asString());
|
|
if(!value["Description"].isNull())
|
|
description_ = value["Description"].asString();
|
|
if(!value["ScheduleId"].isNull())
|
|
scheduleId_ = value["ScheduleId"].asString();
|
|
if(!value["Payload"].isNull())
|
|
payload_ = value["Payload"].asString();
|
|
if(!value["ScheduleName"].isNull())
|
|
scheduleName_ = value["ScheduleName"].asString();
|
|
if(!value["CreatedTime"].isNull())
|
|
createdTime_ = value["CreatedTime"].asString();
|
|
if(!value["LastModifiedTime"].isNull())
|
|
lastModifiedTime_ = value["LastModifiedTime"].asString();
|
|
if(!value["CronExpression"].isNull())
|
|
cronExpression_ = value["CronExpression"].asString();
|
|
if(!value["Enable"].isNull())
|
|
enable_ = value["Enable"].asString() == "true";
|
|
|
|
}
|
|
|
|
std::string CreateScheduleResult::getDescription()const
|
|
{
|
|
return description_;
|
|
}
|
|
|
|
std::string CreateScheduleResult::getCreatedTime()const
|
|
{
|
|
return createdTime_;
|
|
}
|
|
|
|
std::string CreateScheduleResult::getLastModifiedTime()const
|
|
{
|
|
return lastModifiedTime_;
|
|
}
|
|
|
|
bool CreateScheduleResult::getEnable()const
|
|
{
|
|
return enable_;
|
|
}
|
|
|
|
std::string CreateScheduleResult::getPayload()const
|
|
{
|
|
return payload_;
|
|
}
|
|
|
|
std::string CreateScheduleResult::getCronExpression()const
|
|
{
|
|
return cronExpression_;
|
|
}
|
|
|
|
std::string CreateScheduleResult::getScheduleId()const
|
|
{
|
|
return scheduleId_;
|
|
}
|
|
|
|
std::string CreateScheduleResult::getScheduleName()const
|
|
{
|
|
return scheduleName_;
|
|
}
|
|
|