/** * 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 { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace VoiceID { namespace Model { /** *

Contains a summary of information about a fraudster.

See * Also:

AWS * API Reference

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

The timestamp of when the fraudster summary was created.

*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } /** *

The timestamp of when the fraudster summary was created.

*/ inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; } /** *

The timestamp of when the fraudster summary was created.

*/ inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; } /** *

The timestamp of when the fraudster summary was created.

*/ inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); } /** *

The timestamp of when the fraudster summary was created.

*/ inline FraudsterSummary& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} /** *

The timestamp of when the fraudster summary was created.

*/ inline FraudsterSummary& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} /** *

The identifier of the domain that contains the fraudster summary.

*/ inline const Aws::String& GetDomainId() const{ return m_domainId; } /** *

The identifier of the domain that contains the fraudster summary.

*/ inline bool DomainIdHasBeenSet() const { return m_domainIdHasBeenSet; } /** *

The identifier of the domain that contains the fraudster summary.

*/ inline void SetDomainId(const Aws::String& value) { m_domainIdHasBeenSet = true; m_domainId = value; } /** *

The identifier of the domain that contains the fraudster summary.

*/ inline void SetDomainId(Aws::String&& value) { m_domainIdHasBeenSet = true; m_domainId = std::move(value); } /** *

The identifier of the domain that contains the fraudster summary.

*/ inline void SetDomainId(const char* value) { m_domainIdHasBeenSet = true; m_domainId.assign(value); } /** *

The identifier of the domain that contains the fraudster summary.

*/ inline FraudsterSummary& WithDomainId(const Aws::String& value) { SetDomainId(value); return *this;} /** *

The identifier of the domain that contains the fraudster summary.

*/ inline FraudsterSummary& WithDomainId(Aws::String&& value) { SetDomainId(std::move(value)); return *this;} /** *

The identifier of the domain that contains the fraudster summary.

*/ inline FraudsterSummary& WithDomainId(const char* value) { SetDomainId(value); return *this;} /** *

The service-generated identifier for the fraudster.

*/ inline const Aws::String& GetGeneratedFraudsterId() const{ return m_generatedFraudsterId; } /** *

The service-generated identifier for the fraudster.

*/ inline bool GeneratedFraudsterIdHasBeenSet() const { return m_generatedFraudsterIdHasBeenSet; } /** *

The service-generated identifier for the fraudster.

*/ inline void SetGeneratedFraudsterId(const Aws::String& value) { m_generatedFraudsterIdHasBeenSet = true; m_generatedFraudsterId = value; } /** *

The service-generated identifier for the fraudster.

*/ inline void SetGeneratedFraudsterId(Aws::String&& value) { m_generatedFraudsterIdHasBeenSet = true; m_generatedFraudsterId = std::move(value); } /** *

The service-generated identifier for the fraudster.

*/ inline void SetGeneratedFraudsterId(const char* value) { m_generatedFraudsterIdHasBeenSet = true; m_generatedFraudsterId.assign(value); } /** *

The service-generated identifier for the fraudster.

*/ inline FraudsterSummary& WithGeneratedFraudsterId(const Aws::String& value) { SetGeneratedFraudsterId(value); return *this;} /** *

The service-generated identifier for the fraudster.

*/ inline FraudsterSummary& WithGeneratedFraudsterId(Aws::String&& value) { SetGeneratedFraudsterId(std::move(value)); return *this;} /** *

The service-generated identifier for the fraudster.

*/ inline FraudsterSummary& WithGeneratedFraudsterId(const char* value) { SetGeneratedFraudsterId(value); return *this;} /** *

The identifier of the watchlists the fraudster is a part of.

*/ inline const Aws::Vector& GetWatchlistIds() const{ return m_watchlistIds; } /** *

The identifier of the watchlists the fraudster is a part of.

*/ inline bool WatchlistIdsHasBeenSet() const { return m_watchlistIdsHasBeenSet; } /** *

The identifier of the watchlists the fraudster is a part of.

*/ inline void SetWatchlistIds(const Aws::Vector& value) { m_watchlistIdsHasBeenSet = true; m_watchlistIds = value; } /** *

The identifier of the watchlists the fraudster is a part of.

*/ inline void SetWatchlistIds(Aws::Vector&& value) { m_watchlistIdsHasBeenSet = true; m_watchlistIds = std::move(value); } /** *

The identifier of the watchlists the fraudster is a part of.

*/ inline FraudsterSummary& WithWatchlistIds(const Aws::Vector& value) { SetWatchlistIds(value); return *this;} /** *

The identifier of the watchlists the fraudster is a part of.

*/ inline FraudsterSummary& WithWatchlistIds(Aws::Vector&& value) { SetWatchlistIds(std::move(value)); return *this;} /** *

The identifier of the watchlists the fraudster is a part of.

*/ inline FraudsterSummary& AddWatchlistIds(const Aws::String& value) { m_watchlistIdsHasBeenSet = true; m_watchlistIds.push_back(value); return *this; } /** *

The identifier of the watchlists the fraudster is a part of.

*/ inline FraudsterSummary& AddWatchlistIds(Aws::String&& value) { m_watchlistIdsHasBeenSet = true; m_watchlistIds.push_back(std::move(value)); return *this; } /** *

The identifier of the watchlists the fraudster is a part of.

*/ inline FraudsterSummary& AddWatchlistIds(const char* value) { m_watchlistIdsHasBeenSet = true; m_watchlistIds.push_back(value); return *this; } private: Aws::Utils::DateTime m_createdAt; bool m_createdAtHasBeenSet = false; Aws::String m_domainId; bool m_domainIdHasBeenSet = false; Aws::String m_generatedFraudsterId; bool m_generatedFraudsterIdHasBeenSet = false; Aws::Vector m_watchlistIds; bool m_watchlistIdsHasBeenSet = false; }; } // namespace Model } // namespace VoiceID } // namespace Aws