/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace AlexaForBusiness { namespace Model { /** *

The details about the developer that published the skill.

See * Also:

AWS * API Reference

*/ class DeveloperInfo { public: AWS_ALEXAFORBUSINESS_API DeveloperInfo(); AWS_ALEXAFORBUSINESS_API DeveloperInfo(Aws::Utils::Json::JsonView jsonValue); AWS_ALEXAFORBUSINESS_API DeveloperInfo& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_ALEXAFORBUSINESS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name of the developer.

*/ inline const Aws::String& GetDeveloperName() const{ return m_developerName; } /** *

The name of the developer.

*/ inline bool DeveloperNameHasBeenSet() const { return m_developerNameHasBeenSet; } /** *

The name of the developer.

*/ inline void SetDeveloperName(const Aws::String& value) { m_developerNameHasBeenSet = true; m_developerName = value; } /** *

The name of the developer.

*/ inline void SetDeveloperName(Aws::String&& value) { m_developerNameHasBeenSet = true; m_developerName = std::move(value); } /** *

The name of the developer.

*/ inline void SetDeveloperName(const char* value) { m_developerNameHasBeenSet = true; m_developerName.assign(value); } /** *

The name of the developer.

*/ inline DeveloperInfo& WithDeveloperName(const Aws::String& value) { SetDeveloperName(value); return *this;} /** *

The name of the developer.

*/ inline DeveloperInfo& WithDeveloperName(Aws::String&& value) { SetDeveloperName(std::move(value)); return *this;} /** *

The name of the developer.

*/ inline DeveloperInfo& WithDeveloperName(const char* value) { SetDeveloperName(value); return *this;} /** *

The URL of the privacy policy.

*/ inline const Aws::String& GetPrivacyPolicy() const{ return m_privacyPolicy; } /** *

The URL of the privacy policy.

*/ inline bool PrivacyPolicyHasBeenSet() const { return m_privacyPolicyHasBeenSet; } /** *

The URL of the privacy policy.

*/ inline void SetPrivacyPolicy(const Aws::String& value) { m_privacyPolicyHasBeenSet = true; m_privacyPolicy = value; } /** *

The URL of the privacy policy.

*/ inline void SetPrivacyPolicy(Aws::String&& value) { m_privacyPolicyHasBeenSet = true; m_privacyPolicy = std::move(value); } /** *

The URL of the privacy policy.

*/ inline void SetPrivacyPolicy(const char* value) { m_privacyPolicyHasBeenSet = true; m_privacyPolicy.assign(value); } /** *

The URL of the privacy policy.

*/ inline DeveloperInfo& WithPrivacyPolicy(const Aws::String& value) { SetPrivacyPolicy(value); return *this;} /** *

The URL of the privacy policy.

*/ inline DeveloperInfo& WithPrivacyPolicy(Aws::String&& value) { SetPrivacyPolicy(std::move(value)); return *this;} /** *

The URL of the privacy policy.

*/ inline DeveloperInfo& WithPrivacyPolicy(const char* value) { SetPrivacyPolicy(value); return *this;} /** *

The email of the developer.

*/ inline const Aws::String& GetEmail() const{ return m_email; } /** *

The email of the developer.

*/ inline bool EmailHasBeenSet() const { return m_emailHasBeenSet; } /** *

The email of the developer.

*/ inline void SetEmail(const Aws::String& value) { m_emailHasBeenSet = true; m_email = value; } /** *

The email of the developer.

*/ inline void SetEmail(Aws::String&& value) { m_emailHasBeenSet = true; m_email = std::move(value); } /** *

The email of the developer.

*/ inline void SetEmail(const char* value) { m_emailHasBeenSet = true; m_email.assign(value); } /** *

The email of the developer.

*/ inline DeveloperInfo& WithEmail(const Aws::String& value) { SetEmail(value); return *this;} /** *

The email of the developer.

*/ inline DeveloperInfo& WithEmail(Aws::String&& value) { SetEmail(std::move(value)); return *this;} /** *

The email of the developer.

*/ inline DeveloperInfo& WithEmail(const char* value) { SetEmail(value); return *this;} /** *

The website of the developer.

*/ inline const Aws::String& GetUrl() const{ return m_url; } /** *

The website of the developer.

*/ inline bool UrlHasBeenSet() const { return m_urlHasBeenSet; } /** *

The website of the developer.

*/ inline void SetUrl(const Aws::String& value) { m_urlHasBeenSet = true; m_url = value; } /** *

The website of the developer.

*/ inline void SetUrl(Aws::String&& value) { m_urlHasBeenSet = true; m_url = std::move(value); } /** *

The website of the developer.

*/ inline void SetUrl(const char* value) { m_urlHasBeenSet = true; m_url.assign(value); } /** *

The website of the developer.

*/ inline DeveloperInfo& WithUrl(const Aws::String& value) { SetUrl(value); return *this;} /** *

The website of the developer.

*/ inline DeveloperInfo& WithUrl(Aws::String&& value) { SetUrl(std::move(value)); return *this;} /** *

The website of the developer.

*/ inline DeveloperInfo& WithUrl(const char* value) { SetUrl(value); return *this;} private: Aws::String m_developerName; bool m_developerNameHasBeenSet = false; Aws::String m_privacyPolicy; bool m_privacyPolicyHasBeenSet = false; Aws::String m_email; bool m_emailHasBeenSet = false; Aws::String m_url; bool m_urlHasBeenSet = false; }; } // namespace Model } // namespace AlexaForBusiness } // namespace Aws