/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace MedicalImaging { namespace Model { class SearchImageSetsResult { public: AWS_MEDICALIMAGING_API SearchImageSetsResult(); AWS_MEDICALIMAGING_API SearchImageSetsResult(const Aws::AmazonWebServiceResult& result); AWS_MEDICALIMAGING_API SearchImageSetsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The model containing the image set results.

*/ inline const Aws::Vector& GetImageSetsMetadataSummaries() const{ return m_imageSetsMetadataSummaries; } /** *

The model containing the image set results.

*/ inline void SetImageSetsMetadataSummaries(const Aws::Vector& value) { m_imageSetsMetadataSummaries = value; } /** *

The model containing the image set results.

*/ inline void SetImageSetsMetadataSummaries(Aws::Vector&& value) { m_imageSetsMetadataSummaries = std::move(value); } /** *

The model containing the image set results.

*/ inline SearchImageSetsResult& WithImageSetsMetadataSummaries(const Aws::Vector& value) { SetImageSetsMetadataSummaries(value); return *this;} /** *

The model containing the image set results.

*/ inline SearchImageSetsResult& WithImageSetsMetadataSummaries(Aws::Vector&& value) { SetImageSetsMetadataSummaries(std::move(value)); return *this;} /** *

The model containing the image set results.

*/ inline SearchImageSetsResult& AddImageSetsMetadataSummaries(const ImageSetsMetadataSummary& value) { m_imageSetsMetadataSummaries.push_back(value); return *this; } /** *

The model containing the image set results.

*/ inline SearchImageSetsResult& AddImageSetsMetadataSummaries(ImageSetsMetadataSummary&& value) { m_imageSetsMetadataSummaries.push_back(std::move(value)); return *this; } /** *

The token for pagination results.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The token for pagination results.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

The token for pagination results.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

The token for pagination results.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

The token for pagination results.

*/ inline SearchImageSetsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The token for pagination results.

*/ inline SearchImageSetsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The token for pagination results.

*/ inline SearchImageSetsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline SearchImageSetsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline SearchImageSetsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline SearchImageSetsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_imageSetsMetadataSummaries; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace MedicalImaging } // namespace Aws