/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Provides information about the content and settings for a message template
* that can be used in messages that are sent through a push notification
* channel.See Also:
AWS
* API Reference
The message template that's used for the ADM (Amazon Device Messaging) * channel. This message template overrides the default template for push * notification channels (DefaultPushNotificationTemplate).
*/ inline const AndroidPushNotificationTemplate& GetADM() const{ return m_aDM; } /** *The message template that's used for the ADM (Amazon Device Messaging) * channel. This message template overrides the default template for push * notification channels (DefaultPushNotificationTemplate).
*/ inline bool ADMHasBeenSet() const { return m_aDMHasBeenSet; } /** *The message template that's used for the ADM (Amazon Device Messaging) * channel. This message template overrides the default template for push * notification channels (DefaultPushNotificationTemplate).
*/ inline void SetADM(const AndroidPushNotificationTemplate& value) { m_aDMHasBeenSet = true; m_aDM = value; } /** *The message template that's used for the ADM (Amazon Device Messaging) * channel. This message template overrides the default template for push * notification channels (DefaultPushNotificationTemplate).
*/ inline void SetADM(AndroidPushNotificationTemplate&& value) { m_aDMHasBeenSet = true; m_aDM = std::move(value); } /** *The message template that's used for the ADM (Amazon Device Messaging) * channel. This message template overrides the default template for push * notification channels (DefaultPushNotificationTemplate).
*/ inline PushNotificationTemplateResponse& WithADM(const AndroidPushNotificationTemplate& value) { SetADM(value); return *this;} /** *The message template that's used for the ADM (Amazon Device Messaging) * channel. This message template overrides the default template for push * notification channels (DefaultPushNotificationTemplate).
*/ inline PushNotificationTemplateResponse& WithADM(AndroidPushNotificationTemplate&& value) { SetADM(std::move(value)); return *this;} /** *The message template that's used for the APNs (Apple Push Notification * service) channel. This message template overrides the default template for push * notification channels (DefaultPushNotificationTemplate).
*/ inline const APNSPushNotificationTemplate& GetAPNS() const{ return m_aPNS; } /** *The message template that's used for the APNs (Apple Push Notification * service) channel. This message template overrides the default template for push * notification channels (DefaultPushNotificationTemplate).
*/ inline bool APNSHasBeenSet() const { return m_aPNSHasBeenSet; } /** *The message template that's used for the APNs (Apple Push Notification * service) channel. This message template overrides the default template for push * notification channels (DefaultPushNotificationTemplate).
*/ inline void SetAPNS(const APNSPushNotificationTemplate& value) { m_aPNSHasBeenSet = true; m_aPNS = value; } /** *The message template that's used for the APNs (Apple Push Notification * service) channel. This message template overrides the default template for push * notification channels (DefaultPushNotificationTemplate).
*/ inline void SetAPNS(APNSPushNotificationTemplate&& value) { m_aPNSHasBeenSet = true; m_aPNS = std::move(value); } /** *The message template that's used for the APNs (Apple Push Notification * service) channel. This message template overrides the default template for push * notification channels (DefaultPushNotificationTemplate).
*/ inline PushNotificationTemplateResponse& WithAPNS(const APNSPushNotificationTemplate& value) { SetAPNS(value); return *this;} /** *The message template that's used for the APNs (Apple Push Notification * service) channel. This message template overrides the default template for push * notification channels (DefaultPushNotificationTemplate).
*/ inline PushNotificationTemplateResponse& WithAPNS(APNSPushNotificationTemplate&& value) { SetAPNS(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the message template.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The Amazon Resource Name (ARN) of the message template.
*/ inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the message template.
*/ inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; } /** *The Amazon Resource Name (ARN) of the message template.
*/ inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); } /** *The Amazon Resource Name (ARN) of the message template.
*/ inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); } /** *The Amazon Resource Name (ARN) of the message template.
*/ inline PushNotificationTemplateResponse& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the message template.
*/ inline PushNotificationTemplateResponse& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the message template.
*/ inline PushNotificationTemplateResponse& WithArn(const char* value) { SetArn(value); return *this;} /** *The message template that's used for the Baidu (Baidu Cloud Push) channel. * This message template overrides the default template for push notification * channels (DefaultPushNotificationTemplate).
*/ inline const AndroidPushNotificationTemplate& GetBaidu() const{ return m_baidu; } /** *The message template that's used for the Baidu (Baidu Cloud Push) channel. * This message template overrides the default template for push notification * channels (DefaultPushNotificationTemplate).
*/ inline bool BaiduHasBeenSet() const { return m_baiduHasBeenSet; } /** *The message template that's used for the Baidu (Baidu Cloud Push) channel. * This message template overrides the default template for push notification * channels (DefaultPushNotificationTemplate).
*/ inline void SetBaidu(const AndroidPushNotificationTemplate& value) { m_baiduHasBeenSet = true; m_baidu = value; } /** *The message template that's used for the Baidu (Baidu Cloud Push) channel. * This message template overrides the default template for push notification * channels (DefaultPushNotificationTemplate).
*/ inline void SetBaidu(AndroidPushNotificationTemplate&& value) { m_baiduHasBeenSet = true; m_baidu = std::move(value); } /** *The message template that's used for the Baidu (Baidu Cloud Push) channel. * This message template overrides the default template for push notification * channels (DefaultPushNotificationTemplate).
*/ inline PushNotificationTemplateResponse& WithBaidu(const AndroidPushNotificationTemplate& value) { SetBaidu(value); return *this;} /** *The message template that's used for the Baidu (Baidu Cloud Push) channel. * This message template overrides the default template for push notification * channels (DefaultPushNotificationTemplate).
*/ inline PushNotificationTemplateResponse& WithBaidu(AndroidPushNotificationTemplate&& value) { SetBaidu(std::move(value)); return *this;} /** *The date, in ISO 8601 format, when the message template was created.
*/ inline const Aws::String& GetCreationDate() const{ return m_creationDate; } /** *The date, in ISO 8601 format, when the message template was created.
*/ inline bool CreationDateHasBeenSet() const { return m_creationDateHasBeenSet; } /** *The date, in ISO 8601 format, when the message template was created.
*/ inline void SetCreationDate(const Aws::String& value) { m_creationDateHasBeenSet = true; m_creationDate = value; } /** *The date, in ISO 8601 format, when the message template was created.
*/ inline void SetCreationDate(Aws::String&& value) { m_creationDateHasBeenSet = true; m_creationDate = std::move(value); } /** *The date, in ISO 8601 format, when the message template was created.
*/ inline void SetCreationDate(const char* value) { m_creationDateHasBeenSet = true; m_creationDate.assign(value); } /** *The date, in ISO 8601 format, when the message template was created.
*/ inline PushNotificationTemplateResponse& WithCreationDate(const Aws::String& value) { SetCreationDate(value); return *this;} /** *The date, in ISO 8601 format, when the message template was created.
*/ inline PushNotificationTemplateResponse& WithCreationDate(Aws::String&& value) { SetCreationDate(std::move(value)); return *this;} /** *The date, in ISO 8601 format, when the message template was created.
*/ inline PushNotificationTemplateResponse& WithCreationDate(const char* value) { SetCreationDate(value); return *this;} /** *The default message template that's used for push notification channels.
*/ inline const DefaultPushNotificationTemplate& GetDefault() const{ return m_default; } /** *The default message template that's used for push notification channels.
*/ inline bool DefaultHasBeenSet() const { return m_defaultHasBeenSet; } /** *The default message template that's used for push notification channels.
*/ inline void SetDefault(const DefaultPushNotificationTemplate& value) { m_defaultHasBeenSet = true; m_default = value; } /** *The default message template that's used for push notification channels.
*/ inline void SetDefault(DefaultPushNotificationTemplate&& value) { m_defaultHasBeenSet = true; m_default = std::move(value); } /** *The default message template that's used for push notification channels.
*/ inline PushNotificationTemplateResponse& WithDefault(const DefaultPushNotificationTemplate& value) { SetDefault(value); return *this;} /** *The default message template that's used for push notification channels.
*/ inline PushNotificationTemplateResponse& WithDefault(DefaultPushNotificationTemplate&& value) { SetDefault(std::move(value)); return *this;} /** *The JSON object that specifies the default values that are used for message * variables in the message template. This object is a set of key-value pairs. Each * key defines a message variable in the template. The corresponding value defines * the default value for that variable.
*/ inline const Aws::String& GetDefaultSubstitutions() const{ return m_defaultSubstitutions; } /** *The JSON object that specifies the default values that are used for message * variables in the message template. This object is a set of key-value pairs. Each * key defines a message variable in the template. The corresponding value defines * the default value for that variable.
*/ inline bool DefaultSubstitutionsHasBeenSet() const { return m_defaultSubstitutionsHasBeenSet; } /** *The JSON object that specifies the default values that are used for message * variables in the message template. This object is a set of key-value pairs. Each * key defines a message variable in the template. The corresponding value defines * the default value for that variable.
*/ inline void SetDefaultSubstitutions(const Aws::String& value) { m_defaultSubstitutionsHasBeenSet = true; m_defaultSubstitutions = value; } /** *The JSON object that specifies the default values that are used for message * variables in the message template. This object is a set of key-value pairs. Each * key defines a message variable in the template. The corresponding value defines * the default value for that variable.
*/ inline void SetDefaultSubstitutions(Aws::String&& value) { m_defaultSubstitutionsHasBeenSet = true; m_defaultSubstitutions = std::move(value); } /** *The JSON object that specifies the default values that are used for message * variables in the message template. This object is a set of key-value pairs. Each * key defines a message variable in the template. The corresponding value defines * the default value for that variable.
*/ inline void SetDefaultSubstitutions(const char* value) { m_defaultSubstitutionsHasBeenSet = true; m_defaultSubstitutions.assign(value); } /** *The JSON object that specifies the default values that are used for message * variables in the message template. This object is a set of key-value pairs. Each * key defines a message variable in the template. The corresponding value defines * the default value for that variable.
*/ inline PushNotificationTemplateResponse& WithDefaultSubstitutions(const Aws::String& value) { SetDefaultSubstitutions(value); return *this;} /** *The JSON object that specifies the default values that are used for message * variables in the message template. This object is a set of key-value pairs. Each * key defines a message variable in the template. The corresponding value defines * the default value for that variable.
*/ inline PushNotificationTemplateResponse& WithDefaultSubstitutions(Aws::String&& value) { SetDefaultSubstitutions(std::move(value)); return *this;} /** *The JSON object that specifies the default values that are used for message * variables in the message template. This object is a set of key-value pairs. Each * key defines a message variable in the template. The corresponding value defines * the default value for that variable.
*/ inline PushNotificationTemplateResponse& WithDefaultSubstitutions(const char* value) { SetDefaultSubstitutions(value); return *this;} /** *The message template that's used for the GCM channel, which is used to send * notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud * Messaging (GCM), service. This message template overrides the default template * for push notification channels (DefaultPushNotificationTemplate).
*/ inline const AndroidPushNotificationTemplate& GetGCM() const{ return m_gCM; } /** *The message template that's used for the GCM channel, which is used to send * notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud * Messaging (GCM), service. This message template overrides the default template * for push notification channels (DefaultPushNotificationTemplate).
*/ inline bool GCMHasBeenSet() const { return m_gCMHasBeenSet; } /** *The message template that's used for the GCM channel, which is used to send * notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud * Messaging (GCM), service. This message template overrides the default template * for push notification channels (DefaultPushNotificationTemplate).
*/ inline void SetGCM(const AndroidPushNotificationTemplate& value) { m_gCMHasBeenSet = true; m_gCM = value; } /** *The message template that's used for the GCM channel, which is used to send * notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud * Messaging (GCM), service. This message template overrides the default template * for push notification channels (DefaultPushNotificationTemplate).
*/ inline void SetGCM(AndroidPushNotificationTemplate&& value) { m_gCMHasBeenSet = true; m_gCM = std::move(value); } /** *The message template that's used for the GCM channel, which is used to send * notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud * Messaging (GCM), service. This message template overrides the default template * for push notification channels (DefaultPushNotificationTemplate).
*/ inline PushNotificationTemplateResponse& WithGCM(const AndroidPushNotificationTemplate& value) { SetGCM(value); return *this;} /** *The message template that's used for the GCM channel, which is used to send * notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud * Messaging (GCM), service. This message template overrides the default template * for push notification channels (DefaultPushNotificationTemplate).
*/ inline PushNotificationTemplateResponse& WithGCM(AndroidPushNotificationTemplate&& value) { SetGCM(std::move(value)); return *this;} /** *The date, in ISO 8601 format, when the message template was last * modified.
*/ inline const Aws::String& GetLastModifiedDate() const{ return m_lastModifiedDate; } /** *The date, in ISO 8601 format, when the message template was last * modified.
*/ inline bool LastModifiedDateHasBeenSet() const { return m_lastModifiedDateHasBeenSet; } /** *The date, in ISO 8601 format, when the message template was last * modified.
*/ inline void SetLastModifiedDate(const Aws::String& value) { m_lastModifiedDateHasBeenSet = true; m_lastModifiedDate = value; } /** *The date, in ISO 8601 format, when the message template was last * modified.
*/ inline void SetLastModifiedDate(Aws::String&& value) { m_lastModifiedDateHasBeenSet = true; m_lastModifiedDate = std::move(value); } /** *The date, in ISO 8601 format, when the message template was last * modified.
*/ inline void SetLastModifiedDate(const char* value) { m_lastModifiedDateHasBeenSet = true; m_lastModifiedDate.assign(value); } /** *The date, in ISO 8601 format, when the message template was last * modified.
*/ inline PushNotificationTemplateResponse& WithLastModifiedDate(const Aws::String& value) { SetLastModifiedDate(value); return *this;} /** *The date, in ISO 8601 format, when the message template was last * modified.
*/ inline PushNotificationTemplateResponse& WithLastModifiedDate(Aws::String&& value) { SetLastModifiedDate(std::move(value)); return *this;} /** *The date, in ISO 8601 format, when the message template was last * modified.
*/ inline PushNotificationTemplateResponse& WithLastModifiedDate(const char* value) { SetLastModifiedDate(value); return *this;} /** *The unique identifier for the recommender model that's used by the message * template.
*/ inline const Aws::String& GetRecommenderId() const{ return m_recommenderId; } /** *The unique identifier for the recommender model that's used by the message * template.
*/ inline bool RecommenderIdHasBeenSet() const { return m_recommenderIdHasBeenSet; } /** *The unique identifier for the recommender model that's used by the message * template.
*/ inline void SetRecommenderId(const Aws::String& value) { m_recommenderIdHasBeenSet = true; m_recommenderId = value; } /** *The unique identifier for the recommender model that's used by the message * template.
*/ inline void SetRecommenderId(Aws::String&& value) { m_recommenderIdHasBeenSet = true; m_recommenderId = std::move(value); } /** *The unique identifier for the recommender model that's used by the message * template.
*/ inline void SetRecommenderId(const char* value) { m_recommenderIdHasBeenSet = true; m_recommenderId.assign(value); } /** *The unique identifier for the recommender model that's used by the message * template.
*/ inline PushNotificationTemplateResponse& WithRecommenderId(const Aws::String& value) { SetRecommenderId(value); return *this;} /** *The unique identifier for the recommender model that's used by the message * template.
*/ inline PushNotificationTemplateResponse& WithRecommenderId(Aws::String&& value) { SetRecommenderId(std::move(value)); return *this;} /** *The unique identifier for the recommender model that's used by the message * template.
*/ inline PushNotificationTemplateResponse& WithRecommenderId(const char* value) { SetRecommenderId(value); return *this;} /** *A string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline const Aws::MapA string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; } /** *A string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline void SetTags(const Aws::MapA string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline void SetTags(Aws::MapA string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline PushNotificationTemplateResponse& WithTags(const Aws::MapA string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline PushNotificationTemplateResponse& WithTags(Aws::MapA string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline PushNotificationTemplateResponse& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *A string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline PushNotificationTemplateResponse& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *A string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline PushNotificationTemplateResponse& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *A string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline PushNotificationTemplateResponse& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; } /** *A string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline PushNotificationTemplateResponse& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; } /** *A string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline PushNotificationTemplateResponse& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; } /** *A string-to-string map of key-value pairs that identifies the tags that are * associated with the message template. Each tag consists of a required tag key * and an associated tag value.
*/ inline PushNotificationTemplateResponse& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; } /** *The custom description of the message template.
*/ inline const Aws::String& GetTemplateDescription() const{ return m_templateDescription; } /** *The custom description of the message template.
*/ inline bool TemplateDescriptionHasBeenSet() const { return m_templateDescriptionHasBeenSet; } /** *The custom description of the message template.
*/ inline void SetTemplateDescription(const Aws::String& value) { m_templateDescriptionHasBeenSet = true; m_templateDescription = value; } /** *The custom description of the message template.
*/ inline void SetTemplateDescription(Aws::String&& value) { m_templateDescriptionHasBeenSet = true; m_templateDescription = std::move(value); } /** *The custom description of the message template.
*/ inline void SetTemplateDescription(const char* value) { m_templateDescriptionHasBeenSet = true; m_templateDescription.assign(value); } /** *The custom description of the message template.
*/ inline PushNotificationTemplateResponse& WithTemplateDescription(const Aws::String& value) { SetTemplateDescription(value); return *this;} /** *The custom description of the message template.
*/ inline PushNotificationTemplateResponse& WithTemplateDescription(Aws::String&& value) { SetTemplateDescription(std::move(value)); return *this;} /** *The custom description of the message template.
*/ inline PushNotificationTemplateResponse& WithTemplateDescription(const char* value) { SetTemplateDescription(value); return *this;} /** *The name of the message template.
*/ inline const Aws::String& GetTemplateName() const{ return m_templateName; } /** *The name of the message template.
*/ inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; } /** *The name of the message template.
*/ inline void SetTemplateName(const Aws::String& value) { m_templateNameHasBeenSet = true; m_templateName = value; } /** *The name of the message template.
*/ inline void SetTemplateName(Aws::String&& value) { m_templateNameHasBeenSet = true; m_templateName = std::move(value); } /** *The name of the message template.
*/ inline void SetTemplateName(const char* value) { m_templateNameHasBeenSet = true; m_templateName.assign(value); } /** *The name of the message template.
*/ inline PushNotificationTemplateResponse& WithTemplateName(const Aws::String& value) { SetTemplateName(value); return *this;} /** *The name of the message template.
*/ inline PushNotificationTemplateResponse& WithTemplateName(Aws::String&& value) { SetTemplateName(std::move(value)); return *this;} /** *The name of the message template.
*/ inline PushNotificationTemplateResponse& WithTemplateName(const char* value) { SetTemplateName(value); return *this;} /** *The type of channel that the message template is designed for. For a push * notification template, this value is PUSH.
*/ inline const TemplateType& GetTemplateType() const{ return m_templateType; } /** *The type of channel that the message template is designed for. For a push * notification template, this value is PUSH.
*/ inline bool TemplateTypeHasBeenSet() const { return m_templateTypeHasBeenSet; } /** *The type of channel that the message template is designed for. For a push * notification template, this value is PUSH.
*/ inline void SetTemplateType(const TemplateType& value) { m_templateTypeHasBeenSet = true; m_templateType = value; } /** *The type of channel that the message template is designed for. For a push * notification template, this value is PUSH.
*/ inline void SetTemplateType(TemplateType&& value) { m_templateTypeHasBeenSet = true; m_templateType = std::move(value); } /** *The type of channel that the message template is designed for. For a push * notification template, this value is PUSH.
*/ inline PushNotificationTemplateResponse& WithTemplateType(const TemplateType& value) { SetTemplateType(value); return *this;} /** *The type of channel that the message template is designed for. For a push * notification template, this value is PUSH.
*/ inline PushNotificationTemplateResponse& WithTemplateType(TemplateType&& value) { SetTemplateType(std::move(value)); return *this;} /** *The unique identifier, as an integer, for the active version of the message * template, or the version of the template that you specified by using the version * parameter in your request.
*/ inline const Aws::String& GetVersion() const{ return m_version; } /** *The unique identifier, as an integer, for the active version of the message * template, or the version of the template that you specified by using the version * parameter in your request.
*/ inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; } /** *The unique identifier, as an integer, for the active version of the message * template, or the version of the template that you specified by using the version * parameter in your request.
*/ inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; } /** *The unique identifier, as an integer, for the active version of the message * template, or the version of the template that you specified by using the version * parameter in your request.
*/ inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); } /** *The unique identifier, as an integer, for the active version of the message * template, or the version of the template that you specified by using the version * parameter in your request.
*/ inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); } /** *The unique identifier, as an integer, for the active version of the message * template, or the version of the template that you specified by using the version * parameter in your request.
*/ inline PushNotificationTemplateResponse& WithVersion(const Aws::String& value) { SetVersion(value); return *this;} /** *The unique identifier, as an integer, for the active version of the message * template, or the version of the template that you specified by using the version * parameter in your request.
*/ inline PushNotificationTemplateResponse& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;} /** *The unique identifier, as an integer, for the active version of the message * template, or the version of the template that you specified by using the version * parameter in your request.
*/ inline PushNotificationTemplateResponse& WithVersion(const char* value) { SetVersion(value); return *this;} private: AndroidPushNotificationTemplate m_aDM; bool m_aDMHasBeenSet = false; APNSPushNotificationTemplate m_aPNS; bool m_aPNSHasBeenSet = false; Aws::String m_arn; bool m_arnHasBeenSet = false; AndroidPushNotificationTemplate m_baidu; bool m_baiduHasBeenSet = false; Aws::String m_creationDate; bool m_creationDateHasBeenSet = false; DefaultPushNotificationTemplate m_default; bool m_defaultHasBeenSet = false; Aws::String m_defaultSubstitutions; bool m_defaultSubstitutionsHasBeenSet = false; AndroidPushNotificationTemplate m_gCM; bool m_gCMHasBeenSet = false; Aws::String m_lastModifiedDate; bool m_lastModifiedDateHasBeenSet = false; Aws::String m_recommenderId; bool m_recommenderIdHasBeenSet = false; Aws::Map