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

HTTP status code that indicates the result of the operation.

*/ inline int GetStatusCode() const{ return m_statusCode; } /** *

HTTP status code that indicates the result of the operation.

*/ inline void SetStatusCode(int value) { m_statusCode = value; } /** *

HTTP status code that indicates the result of the operation.

*/ inline DeleteCollectionResult& WithStatusCode(int value) { SetStatusCode(value); return *this;} private: int m_statusCode; }; } // namespace Model } // namespace Rekognition } // namespace Aws