/** * 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 GameLift { namespace Model { /** *

Represents the returned data in response to a request action.

See * Also:

AWS * API Reference

*/ class AWS_GAMELIFT_API ValidateMatchmakingRuleSetResult { public: ValidateMatchmakingRuleSetResult(); ValidateMatchmakingRuleSetResult(const Aws::AmazonWebServiceResult& result); ValidateMatchmakingRuleSetResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A response indicating whether the rule set is valid.

*/ inline bool GetValid() const{ return m_valid; } /** *

A response indicating whether the rule set is valid.

*/ inline void SetValid(bool value) { m_valid = value; } /** *

A response indicating whether the rule set is valid.

*/ inline ValidateMatchmakingRuleSetResult& WithValid(bool value) { SetValid(value); return *this;} private: bool m_valid; }; } // namespace Model } // namespace GameLift } // namespace Aws