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

Specifies channel-specific content and settings for a message template that * can be used in push notifications that are sent through the APNs (Apple Push * Notification service) channel.

See Also:

AWS * API Reference

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

The action to occur if a recipient taps a push notification that's based on * the message template. Valid values are:

  • OPEN_APP - Your app opens * or it becomes the foreground app if it was sent to the background. This is the * default action.

  • DEEP_LINK - Your app opens and displays a * designated user interface in the app. This setting uses the deep-linking * features of the iOS platform.

  • URL - The default mobile browser * on the recipient's device opens and loads the web page at a URL that you * specify.

*/ inline const Action& GetAction() const{ return m_action; } /** *

The action to occur if a recipient taps a push notification that's based on * the message template. Valid values are:

  • OPEN_APP - Your app opens * or it becomes the foreground app if it was sent to the background. This is the * default action.

  • DEEP_LINK - Your app opens and displays a * designated user interface in the app. This setting uses the deep-linking * features of the iOS platform.

  • URL - The default mobile browser * on the recipient's device opens and loads the web page at a URL that you * specify.

*/ inline bool ActionHasBeenSet() const { return m_actionHasBeenSet; } /** *

The action to occur if a recipient taps a push notification that's based on * the message template. Valid values are:

  • OPEN_APP - Your app opens * or it becomes the foreground app if it was sent to the background. This is the * default action.

  • DEEP_LINK - Your app opens and displays a * designated user interface in the app. This setting uses the deep-linking * features of the iOS platform.

  • URL - The default mobile browser * on the recipient's device opens and loads the web page at a URL that you * specify.

*/ inline void SetAction(const Action& value) { m_actionHasBeenSet = true; m_action = value; } /** *

The action to occur if a recipient taps a push notification that's based on * the message template. Valid values are:

  • OPEN_APP - Your app opens * or it becomes the foreground app if it was sent to the background. This is the * default action.

  • DEEP_LINK - Your app opens and displays a * designated user interface in the app. This setting uses the deep-linking * features of the iOS platform.

  • URL - The default mobile browser * on the recipient's device opens and loads the web page at a URL that you * specify.

*/ inline void SetAction(Action&& value) { m_actionHasBeenSet = true; m_action = std::move(value); } /** *

The action to occur if a recipient taps a push notification that's based on * the message template. Valid values are:

  • OPEN_APP - Your app opens * or it becomes the foreground app if it was sent to the background. This is the * default action.

  • DEEP_LINK - Your app opens and displays a * designated user interface in the app. This setting uses the deep-linking * features of the iOS platform.

  • URL - The default mobile browser * on the recipient's device opens and loads the web page at a URL that you * specify.

*/ inline APNSPushNotificationTemplate& WithAction(const Action& value) { SetAction(value); return *this;} /** *

The action to occur if a recipient taps a push notification that's based on * the message template. Valid values are:

  • OPEN_APP - Your app opens * or it becomes the foreground app if it was sent to the background. This is the * default action.

  • DEEP_LINK - Your app opens and displays a * designated user interface in the app. This setting uses the deep-linking * features of the iOS platform.

  • URL - The default mobile browser * on the recipient's device opens and loads the web page at a URL that you * specify.

*/ inline APNSPushNotificationTemplate& WithAction(Action&& value) { SetAction(std::move(value)); return *this;} /** *

The message body to use in push notifications that are based on the message * template.

*/ inline const Aws::String& GetBody() const{ return m_body; } /** *

The message body to use in push notifications that are based on the message * template.

*/ inline bool BodyHasBeenSet() const { return m_bodyHasBeenSet; } /** *

The message body to use in push notifications that are based on the message * template.

*/ inline void SetBody(const Aws::String& value) { m_bodyHasBeenSet = true; m_body = value; } /** *

The message body to use in push notifications that are based on the message * template.

*/ inline void SetBody(Aws::String&& value) { m_bodyHasBeenSet = true; m_body = std::move(value); } /** *

The message body to use in push notifications that are based on the message * template.

*/ inline void SetBody(const char* value) { m_bodyHasBeenSet = true; m_body.assign(value); } /** *

The message body to use in push notifications that are based on the message * template.

*/ inline APNSPushNotificationTemplate& WithBody(const Aws::String& value) { SetBody(value); return *this;} /** *

The message body to use in push notifications that are based on the message * template.

*/ inline APNSPushNotificationTemplate& WithBody(Aws::String&& value) { SetBody(std::move(value)); return *this;} /** *

The message body to use in push notifications that are based on the message * template.

*/ inline APNSPushNotificationTemplate& WithBody(const char* value) { SetBody(value); return *this;} /** *

The URL of an image or video to display in push notifications that are based * on the message template.

*/ inline const Aws::String& GetMediaUrl() const{ return m_mediaUrl; } /** *

The URL of an image or video to display in push notifications that are based * on the message template.

*/ inline bool MediaUrlHasBeenSet() const { return m_mediaUrlHasBeenSet; } /** *

The URL of an image or video to display in push notifications that are based * on the message template.

*/ inline void SetMediaUrl(const Aws::String& value) { m_mediaUrlHasBeenSet = true; m_mediaUrl = value; } /** *

The URL of an image or video to display in push notifications that are based * on the message template.

*/ inline void SetMediaUrl(Aws::String&& value) { m_mediaUrlHasBeenSet = true; m_mediaUrl = std::move(value); } /** *

The URL of an image or video to display in push notifications that are based * on the message template.

*/ inline void SetMediaUrl(const char* value) { m_mediaUrlHasBeenSet = true; m_mediaUrl.assign(value); } /** *

The URL of an image or video to display in push notifications that are based * on the message template.

*/ inline APNSPushNotificationTemplate& WithMediaUrl(const Aws::String& value) { SetMediaUrl(value); return *this;} /** *

The URL of an image or video to display in push notifications that are based * on the message template.

*/ inline APNSPushNotificationTemplate& WithMediaUrl(Aws::String&& value) { SetMediaUrl(std::move(value)); return *this;} /** *

The URL of an image or video to display in push notifications that are based * on the message template.

*/ inline APNSPushNotificationTemplate& WithMediaUrl(const char* value) { SetMediaUrl(value); return *this;} /** *

The raw, JSON-formatted string to use as the payload for push notifications * that are based on the message template. If specified, this value overrides all * other content for the message template.

*/ inline const Aws::String& GetRawContent() const{ return m_rawContent; } /** *

The raw, JSON-formatted string to use as the payload for push notifications * that are based on the message template. If specified, this value overrides all * other content for the message template.

*/ inline bool RawContentHasBeenSet() const { return m_rawContentHasBeenSet; } /** *

The raw, JSON-formatted string to use as the payload for push notifications * that are based on the message template. If specified, this value overrides all * other content for the message template.

*/ inline void SetRawContent(const Aws::String& value) { m_rawContentHasBeenSet = true; m_rawContent = value; } /** *

The raw, JSON-formatted string to use as the payload for push notifications * that are based on the message template. If specified, this value overrides all * other content for the message template.

*/ inline void SetRawContent(Aws::String&& value) { m_rawContentHasBeenSet = true; m_rawContent = std::move(value); } /** *

The raw, JSON-formatted string to use as the payload for push notifications * that are based on the message template. If specified, this value overrides all * other content for the message template.

*/ inline void SetRawContent(const char* value) { m_rawContentHasBeenSet = true; m_rawContent.assign(value); } /** *

The raw, JSON-formatted string to use as the payload for push notifications * that are based on the message template. If specified, this value overrides all * other content for the message template.

*/ inline APNSPushNotificationTemplate& WithRawContent(const Aws::String& value) { SetRawContent(value); return *this;} /** *

The raw, JSON-formatted string to use as the payload for push notifications * that are based on the message template. If specified, this value overrides all * other content for the message template.

*/ inline APNSPushNotificationTemplate& WithRawContent(Aws::String&& value) { SetRawContent(std::move(value)); return *this;} /** *

The raw, JSON-formatted string to use as the payload for push notifications * that are based on the message template. If specified, this value overrides all * other content for the message template.

*/ inline APNSPushNotificationTemplate& WithRawContent(const char* value) { SetRawContent(value); return *this;} /** *

The key for the sound to play when the recipient receives a push notification * that's based on the message template. The value for this key is the name of a * sound file in your app's main bundle or the Library/Sounds folder in your app's * data container. If the sound file can't be found or you specify default for the * value, the system plays the default alert sound.

*/ inline const Aws::String& GetSound() const{ return m_sound; } /** *

The key for the sound to play when the recipient receives a push notification * that's based on the message template. The value for this key is the name of a * sound file in your app's main bundle or the Library/Sounds folder in your app's * data container. If the sound file can't be found or you specify default for the * value, the system plays the default alert sound.

*/ inline bool SoundHasBeenSet() const { return m_soundHasBeenSet; } /** *

The key for the sound to play when the recipient receives a push notification * that's based on the message template. The value for this key is the name of a * sound file in your app's main bundle or the Library/Sounds folder in your app's * data container. If the sound file can't be found or you specify default for the * value, the system plays the default alert sound.

*/ inline void SetSound(const Aws::String& value) { m_soundHasBeenSet = true; m_sound = value; } /** *

The key for the sound to play when the recipient receives a push notification * that's based on the message template. The value for this key is the name of a * sound file in your app's main bundle or the Library/Sounds folder in your app's * data container. If the sound file can't be found or you specify default for the * value, the system plays the default alert sound.

*/ inline void SetSound(Aws::String&& value) { m_soundHasBeenSet = true; m_sound = std::move(value); } /** *

The key for the sound to play when the recipient receives a push notification * that's based on the message template. The value for this key is the name of a * sound file in your app's main bundle or the Library/Sounds folder in your app's * data container. If the sound file can't be found or you specify default for the * value, the system plays the default alert sound.

*/ inline void SetSound(const char* value) { m_soundHasBeenSet = true; m_sound.assign(value); } /** *

The key for the sound to play when the recipient receives a push notification * that's based on the message template. The value for this key is the name of a * sound file in your app's main bundle or the Library/Sounds folder in your app's * data container. If the sound file can't be found or you specify default for the * value, the system plays the default alert sound.

*/ inline APNSPushNotificationTemplate& WithSound(const Aws::String& value) { SetSound(value); return *this;} /** *

The key for the sound to play when the recipient receives a push notification * that's based on the message template. The value for this key is the name of a * sound file in your app's main bundle or the Library/Sounds folder in your app's * data container. If the sound file can't be found or you specify default for the * value, the system plays the default alert sound.

*/ inline APNSPushNotificationTemplate& WithSound(Aws::String&& value) { SetSound(std::move(value)); return *this;} /** *

The key for the sound to play when the recipient receives a push notification * that's based on the message template. The value for this key is the name of a * sound file in your app's main bundle or the Library/Sounds folder in your app's * data container. If the sound file can't be found or you specify default for the * value, the system plays the default alert sound.

*/ inline APNSPushNotificationTemplate& WithSound(const char* value) { SetSound(value); return *this;} /** *

The title to use in push notifications that are based on the message * template. This title appears above the notification message on a recipient's * device.

*/ inline const Aws::String& GetTitle() const{ return m_title; } /** *

The title to use in push notifications that are based on the message * template. This title appears above the notification message on a recipient's * device.

*/ inline bool TitleHasBeenSet() const { return m_titleHasBeenSet; } /** *

The title to use in push notifications that are based on the message * template. This title appears above the notification message on a recipient's * device.

*/ inline void SetTitle(const Aws::String& value) { m_titleHasBeenSet = true; m_title = value; } /** *

The title to use in push notifications that are based on the message * template. This title appears above the notification message on a recipient's * device.

*/ inline void SetTitle(Aws::String&& value) { m_titleHasBeenSet = true; m_title = std::move(value); } /** *

The title to use in push notifications that are based on the message * template. This title appears above the notification message on a recipient's * device.

*/ inline void SetTitle(const char* value) { m_titleHasBeenSet = true; m_title.assign(value); } /** *

The title to use in push notifications that are based on the message * template. This title appears above the notification message on a recipient's * device.

*/ inline APNSPushNotificationTemplate& WithTitle(const Aws::String& value) { SetTitle(value); return *this;} /** *

The title to use in push notifications that are based on the message * template. This title appears above the notification message on a recipient's * device.

*/ inline APNSPushNotificationTemplate& WithTitle(Aws::String&& value) { SetTitle(std::move(value)); return *this;} /** *

The title to use in push notifications that are based on the message * template. This title appears above the notification message on a recipient's * device.

*/ inline APNSPushNotificationTemplate& WithTitle(const char* value) { SetTitle(value); return *this;} /** *

The URL to open in the recipient's default mobile browser, if a recipient * taps a push notification that's based on the message template and the value of * the Action property is URL.

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

The URL to open in the recipient's default mobile browser, if a recipient * taps a push notification that's based on the message template and the value of * the Action property is URL.

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

The URL to open in the recipient's default mobile browser, if a recipient * taps a push notification that's based on the message template and the value of * the Action property is URL.

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

The URL to open in the recipient's default mobile browser, if a recipient * taps a push notification that's based on the message template and the value of * the Action property is URL.

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

The URL to open in the recipient's default mobile browser, if a recipient * taps a push notification that's based on the message template and the value of * the Action property is URL.

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

The URL to open in the recipient's default mobile browser, if a recipient * taps a push notification that's based on the message template and the value of * the Action property is URL.

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

The URL to open in the recipient's default mobile browser, if a recipient * taps a push notification that's based on the message template and the value of * the Action property is URL.

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

The URL to open in the recipient's default mobile browser, if a recipient * taps a push notification that's based on the message template and the value of * the Action property is URL.

*/ inline APNSPushNotificationTemplate& WithUrl(const char* value) { SetUrl(value); return *this;} private: Action m_action; bool m_actionHasBeenSet = false; Aws::String m_body; bool m_bodyHasBeenSet = false; Aws::String m_mediaUrl; bool m_mediaUrlHasBeenSet = false; Aws::String m_rawContent; bool m_rawContentHasBeenSet = false; Aws::String m_sound; bool m_soundHasBeenSet = false; Aws::String m_title; bool m_titleHasBeenSet = false; Aws::String m_url; bool m_urlHasBeenSet = false; }; } // namespace Model } // namespace Pinpoint } // namespace Aws