/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the content and settings for an SMS message that's sent to
* recipients of a campaign.See Also:
AWS
* API Reference
The body of the SMS message.
*/ inline const Aws::String& GetBody() const{ return m_body; } /** *The body of the SMS message.
*/ inline bool BodyHasBeenSet() const { return m_bodyHasBeenSet; } /** *The body of the SMS message.
*/ inline void SetBody(const Aws::String& value) { m_bodyHasBeenSet = true; m_body = value; } /** *The body of the SMS message.
*/ inline void SetBody(Aws::String&& value) { m_bodyHasBeenSet = true; m_body = std::move(value); } /** *The body of the SMS message.
*/ inline void SetBody(const char* value) { m_bodyHasBeenSet = true; m_body.assign(value); } /** *The body of the SMS message.
*/ inline CampaignSmsMessage& WithBody(const Aws::String& value) { SetBody(value); return *this;} /** *The body of the SMS message.
*/ inline CampaignSmsMessage& WithBody(Aws::String&& value) { SetBody(std::move(value)); return *this;} /** *The body of the SMS message.
*/ inline CampaignSmsMessage& WithBody(const char* value) { SetBody(value); return *this;} /** *The SMS message type. Valid values are TRANSACTIONAL (for messages that are * critical or time-sensitive, such as a one-time passwords) and PROMOTIONAL (for * messsages that aren't critical or time-sensitive, such as marketing * messages).
*/ inline const MessageType& GetMessageType() const{ return m_messageType; } /** *The SMS message type. Valid values are TRANSACTIONAL (for messages that are * critical or time-sensitive, such as a one-time passwords) and PROMOTIONAL (for * messsages that aren't critical or time-sensitive, such as marketing * messages).
*/ inline bool MessageTypeHasBeenSet() const { return m_messageTypeHasBeenSet; } /** *The SMS message type. Valid values are TRANSACTIONAL (for messages that are * critical or time-sensitive, such as a one-time passwords) and PROMOTIONAL (for * messsages that aren't critical or time-sensitive, such as marketing * messages).
*/ inline void SetMessageType(const MessageType& value) { m_messageTypeHasBeenSet = true; m_messageType = value; } /** *The SMS message type. Valid values are TRANSACTIONAL (for messages that are * critical or time-sensitive, such as a one-time passwords) and PROMOTIONAL (for * messsages that aren't critical or time-sensitive, such as marketing * messages).
*/ inline void SetMessageType(MessageType&& value) { m_messageTypeHasBeenSet = true; m_messageType = std::move(value); } /** *The SMS message type. Valid values are TRANSACTIONAL (for messages that are * critical or time-sensitive, such as a one-time passwords) and PROMOTIONAL (for * messsages that aren't critical or time-sensitive, such as marketing * messages).
*/ inline CampaignSmsMessage& WithMessageType(const MessageType& value) { SetMessageType(value); return *this;} /** *The SMS message type. Valid values are TRANSACTIONAL (for messages that are * critical or time-sensitive, such as a one-time passwords) and PROMOTIONAL (for * messsages that aren't critical or time-sensitive, such as marketing * messages).
*/ inline CampaignSmsMessage& WithMessageType(MessageType&& value) { SetMessageType(std::move(value)); return *this;} /** *The long code to send the SMS message from. This value should be one of the * dedicated long codes that's assigned to your AWS account. Although it isn't * required, we recommend that you specify the long code using an E.164 format to * ensure prompt and accurate delivery of the message. For example, * +12065550100.
*/ inline const Aws::String& GetOriginationNumber() const{ return m_originationNumber; } /** *The long code to send the SMS message from. This value should be one of the * dedicated long codes that's assigned to your AWS account. Although it isn't * required, we recommend that you specify the long code using an E.164 format to * ensure prompt and accurate delivery of the message. For example, * +12065550100.
*/ inline bool OriginationNumberHasBeenSet() const { return m_originationNumberHasBeenSet; } /** *The long code to send the SMS message from. This value should be one of the * dedicated long codes that's assigned to your AWS account. Although it isn't * required, we recommend that you specify the long code using an E.164 format to * ensure prompt and accurate delivery of the message. For example, * +12065550100.
*/ inline void SetOriginationNumber(const Aws::String& value) { m_originationNumberHasBeenSet = true; m_originationNumber = value; } /** *The long code to send the SMS message from. This value should be one of the * dedicated long codes that's assigned to your AWS account. Although it isn't * required, we recommend that you specify the long code using an E.164 format to * ensure prompt and accurate delivery of the message. For example, * +12065550100.
*/ inline void SetOriginationNumber(Aws::String&& value) { m_originationNumberHasBeenSet = true; m_originationNumber = std::move(value); } /** *The long code to send the SMS message from. This value should be one of the * dedicated long codes that's assigned to your AWS account. Although it isn't * required, we recommend that you specify the long code using an E.164 format to * ensure prompt and accurate delivery of the message. For example, * +12065550100.
*/ inline void SetOriginationNumber(const char* value) { m_originationNumberHasBeenSet = true; m_originationNumber.assign(value); } /** *The long code to send the SMS message from. This value should be one of the * dedicated long codes that's assigned to your AWS account. Although it isn't * required, we recommend that you specify the long code using an E.164 format to * ensure prompt and accurate delivery of the message. For example, * +12065550100.
*/ inline CampaignSmsMessage& WithOriginationNumber(const Aws::String& value) { SetOriginationNumber(value); return *this;} /** *The long code to send the SMS message from. This value should be one of the * dedicated long codes that's assigned to your AWS account. Although it isn't * required, we recommend that you specify the long code using an E.164 format to * ensure prompt and accurate delivery of the message. For example, * +12065550100.
*/ inline CampaignSmsMessage& WithOriginationNumber(Aws::String&& value) { SetOriginationNumber(std::move(value)); return *this;} /** *The long code to send the SMS message from. This value should be one of the * dedicated long codes that's assigned to your AWS account. Although it isn't * required, we recommend that you specify the long code using an E.164 format to * ensure prompt and accurate delivery of the message. For example, * +12065550100.
*/ inline CampaignSmsMessage& WithOriginationNumber(const char* value) { SetOriginationNumber(value); return *this;} /** *The sender ID to display on recipients' devices when they receive the SMS * message.
*/ inline const Aws::String& GetSenderId() const{ return m_senderId; } /** *The sender ID to display on recipients' devices when they receive the SMS * message.
*/ inline bool SenderIdHasBeenSet() const { return m_senderIdHasBeenSet; } /** *The sender ID to display on recipients' devices when they receive the SMS * message.
*/ inline void SetSenderId(const Aws::String& value) { m_senderIdHasBeenSet = true; m_senderId = value; } /** *The sender ID to display on recipients' devices when they receive the SMS * message.
*/ inline void SetSenderId(Aws::String&& value) { m_senderIdHasBeenSet = true; m_senderId = std::move(value); } /** *The sender ID to display on recipients' devices when they receive the SMS * message.
*/ inline void SetSenderId(const char* value) { m_senderIdHasBeenSet = true; m_senderId.assign(value); } /** *The sender ID to display on recipients' devices when they receive the SMS * message.
*/ inline CampaignSmsMessage& WithSenderId(const Aws::String& value) { SetSenderId(value); return *this;} /** *The sender ID to display on recipients' devices when they receive the SMS * message.
*/ inline CampaignSmsMessage& WithSenderId(Aws::String&& value) { SetSenderId(std::move(value)); return *this;} /** *The sender ID to display on recipients' devices when they receive the SMS * message.
*/ inline CampaignSmsMessage& WithSenderId(const char* value) { SetSenderId(value); return *this;} /** *The entity ID or Principal Entity (PE) id received from the regulatory body * for sending SMS in your country.
*/ inline const Aws::String& GetEntityId() const{ return m_entityId; } /** *The entity ID or Principal Entity (PE) id received from the regulatory body * for sending SMS in your country.
*/ inline bool EntityIdHasBeenSet() const { return m_entityIdHasBeenSet; } /** *The entity ID or Principal Entity (PE) id received from the regulatory body * for sending SMS in your country.
*/ inline void SetEntityId(const Aws::String& value) { m_entityIdHasBeenSet = true; m_entityId = value; } /** *The entity ID or Principal Entity (PE) id received from the regulatory body * for sending SMS in your country.
*/ inline void SetEntityId(Aws::String&& value) { m_entityIdHasBeenSet = true; m_entityId = std::move(value); } /** *The entity ID or Principal Entity (PE) id received from the regulatory body * for sending SMS in your country.
*/ inline void SetEntityId(const char* value) { m_entityIdHasBeenSet = true; m_entityId.assign(value); } /** *The entity ID or Principal Entity (PE) id received from the regulatory body * for sending SMS in your country.
*/ inline CampaignSmsMessage& WithEntityId(const Aws::String& value) { SetEntityId(value); return *this;} /** *The entity ID or Principal Entity (PE) id received from the regulatory body * for sending SMS in your country.
*/ inline CampaignSmsMessage& WithEntityId(Aws::String&& value) { SetEntityId(std::move(value)); return *this;} /** *The entity ID or Principal Entity (PE) id received from the regulatory body * for sending SMS in your country.
*/ inline CampaignSmsMessage& WithEntityId(const char* value) { SetEntityId(value); return *this;} /** *The template ID received from the regulatory body for sending SMS in your * country.
*/ inline const Aws::String& GetTemplateId() const{ return m_templateId; } /** *The template ID received from the regulatory body for sending SMS in your * country.
*/ inline bool TemplateIdHasBeenSet() const { return m_templateIdHasBeenSet; } /** *The template ID received from the regulatory body for sending SMS in your * country.
*/ inline void SetTemplateId(const Aws::String& value) { m_templateIdHasBeenSet = true; m_templateId = value; } /** *The template ID received from the regulatory body for sending SMS in your * country.
*/ inline void SetTemplateId(Aws::String&& value) { m_templateIdHasBeenSet = true; m_templateId = std::move(value); } /** *The template ID received from the regulatory body for sending SMS in your * country.
*/ inline void SetTemplateId(const char* value) { m_templateIdHasBeenSet = true; m_templateId.assign(value); } /** *The template ID received from the regulatory body for sending SMS in your * country.
*/ inline CampaignSmsMessage& WithTemplateId(const Aws::String& value) { SetTemplateId(value); return *this;} /** *The template ID received from the regulatory body for sending SMS in your * country.
*/ inline CampaignSmsMessage& WithTemplateId(Aws::String&& value) { SetTemplateId(std::move(value)); return *this;} /** *The template ID received from the regulatory body for sending SMS in your * country.
*/ inline CampaignSmsMessage& WithTemplateId(const char* value) { SetTemplateId(value); return *this;} private: Aws::String m_body; bool m_bodyHasBeenSet = false; MessageType m_messageType; bool m_messageTypeHasBeenSet = false; Aws::String m_originationNumber; bool m_originationNumberHasBeenSet = false; Aws::String m_senderId; bool m_senderIdHasBeenSet = false; Aws::String m_entityId; bool m_entityIdHasBeenSet = false; Aws::String m_templateId; bool m_templateIdHasBeenSet = false; }; } // namespace Model } // namespace Pinpoint } // namespace Aws