| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /*
- * 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/computenestsupplier/model/CreateArtifactResult.h>
- #include <json/json.h>
- using namespace AlibabaCloud::ComputeNestSupplier;
- using namespace AlibabaCloud::ComputeNestSupplier::Model;
- CreateArtifactResult::CreateArtifactResult() :
- ServiceResult()
- {}
- CreateArtifactResult::CreateArtifactResult(const std::string &payload) :
- ServiceResult()
- {
- parse(payload);
- }
- CreateArtifactResult::~CreateArtifactResult()
- {}
- void CreateArtifactResult::parse(const std::string &payload)
- {
- Json::Reader reader;
- Json::Value value;
- reader.parse(payload, value);
- setRequestId(value["RequestId"].asString());
- if(!value["ArtifactId"].isNull())
- artifactId_ = value["ArtifactId"].asString();
- if(!value["ArtifactType"].isNull())
- artifactType_ = value["ArtifactType"].asString();
- if(!value["Name"].isNull())
- name_ = value["Name"].asString();
- if(!value["VersionName"].isNull())
- versionName_ = value["VersionName"].asString();
- if(!value["ArtifactVersion"].isNull())
- artifactVersion_ = value["ArtifactVersion"].asString();
- if(!value["Description"].isNull())
- description_ = value["Description"].asString();
- if(!value["GmtModified"].isNull())
- gmtModified_ = value["GmtModified"].asString();
- if(!value["Status"].isNull())
- status_ = value["Status"].asString();
- if(!value["MaxVersion"].isNull())
- maxVersion_ = std::stol(value["MaxVersion"].asString());
- if(!value["ArtifactProperty"].isNull())
- artifactProperty_ = value["ArtifactProperty"].asString();
- if(!value["SupportRegionIds"].isNull())
- supportRegionIds_ = value["SupportRegionIds"].asString();
- }
- std::string CreateArtifactResult::getStatus()const
- {
- return status_;
- }
- std::string CreateArtifactResult::getArtifactVersion()const
- {
- return artifactVersion_;
- }
- std::string CreateArtifactResult::getDescription()const
- {
- return description_;
- }
- std::string CreateArtifactResult::getArtifactId()const
- {
- return artifactId_;
- }
- std::string CreateArtifactResult::getArtifactType()const
- {
- return artifactType_;
- }
- std::string CreateArtifactResult::getSupportRegionIds()const
- {
- return supportRegionIds_;
- }
- std::string CreateArtifactResult::getGmtModified()const
- {
- return gmtModified_;
- }
- std::string CreateArtifactResult::getVersionName()const
- {
- return versionName_;
- }
- long CreateArtifactResult::getMaxVersion()const
- {
- return maxVersion_;
- }
- std::string CreateArtifactResult::getArtifactProperty()const
- {
- return artifactProperty_;
- }
- std::string CreateArtifactResult::getName()const
- {
- return name_;
- }
|