/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains all the information about a fraudster.See Also:
AWS
* API Reference
The timestamp of when Voice ID identified the fraudster.
*/ inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; } /** *The timestamp of when Voice ID identified the fraudster.
*/ inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; } /** *The timestamp of when Voice ID identified the fraudster.
*/ inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAtHasBeenSet = true; m_createdAt = value; } /** *The timestamp of when Voice ID identified the fraudster.
*/ inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::move(value); } /** *The timestamp of when Voice ID identified the fraudster.
*/ inline Fraudster& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;} /** *The timestamp of when Voice ID identified the fraudster.
*/ inline Fraudster& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;} /** *The identifier of the domain that contains the fraudster.
*/ inline const Aws::String& GetDomainId() const{ return m_domainId; } /** *The identifier of the domain that contains the fraudster.
*/ inline bool DomainIdHasBeenSet() const { return m_domainIdHasBeenSet; } /** *The identifier of the domain that contains the fraudster.
*/ inline void SetDomainId(const Aws::String& value) { m_domainIdHasBeenSet = true; m_domainId = value; } /** *The identifier of the domain that contains the fraudster.
*/ inline void SetDomainId(Aws::String&& value) { m_domainIdHasBeenSet = true; m_domainId = std::move(value); } /** *The identifier of the domain that contains the fraudster.
*/ inline void SetDomainId(const char* value) { m_domainIdHasBeenSet = true; m_domainId.assign(value); } /** *The identifier of the domain that contains the fraudster.
*/ inline Fraudster& WithDomainId(const Aws::String& value) { SetDomainId(value); return *this;} /** *The identifier of the domain that contains the fraudster.
*/ inline Fraudster& WithDomainId(Aws::String&& value) { SetDomainId(std::move(value)); return *this;} /** *The identifier of the domain that contains the fraudster.
*/ inline Fraudster& 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 Fraudster& WithGeneratedFraudsterId(const Aws::String& value) { SetGeneratedFraudsterId(value); return *this;} /** *The service-generated identifier for the fraudster.
*/ inline Fraudster& WithGeneratedFraudsterId(Aws::String&& value) { SetGeneratedFraudsterId(std::move(value)); return *this;} /** *The service-generated identifier for the fraudster.
*/ inline Fraudster& WithGeneratedFraudsterId(const char* value) { SetGeneratedFraudsterId(value); return *this;} /** *The identifier of the watchlists the fraudster is a part of.
*/ inline const Aws::VectorThe 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::VectorThe identifier of the watchlists the fraudster is a part of.
*/ inline void SetWatchlistIds(Aws::VectorThe identifier of the watchlists the fraudster is a part of.
*/ inline Fraudster& WithWatchlistIds(const Aws::VectorThe identifier of the watchlists the fraudster is a part of.
*/ inline Fraudster& WithWatchlistIds(Aws::VectorThe identifier of the watchlists the fraudster is a part of.
*/ inline Fraudster& 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 Fraudster& 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 Fraudster& 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