/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the pinpoint-2016-12-01.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.Pinpoint.Model { /// <summary> /// Specifies the default settings and content for a message template that can be used /// in messages that are sent through a push notification channel. /// </summary> public partial class DefaultPushNotificationTemplate { private Action _action; private string _body; private string _sound; private string _title; private string _url; /// <summary> /// Gets and sets the property Action. /// <para> /// The action to occur if a recipient taps a push notification that's based on the message /// template. Valid values are: /// </para> /// <ul><li> /// <para> /// OPEN_APP - Your app opens or it becomes the foreground app if it was sent to the background. /// This is the default action. /// </para> /// </li> <li> /// <para> /// DEEP_LINK - Your app opens and displays a designated user interface in the app. This /// setting uses the deep-linking features of the iOS and Android platforms. /// </para> /// </li> <li> /// <para> /// URL - The default mobile browser on the recipient's device opens and loads the web /// page at a URL that you specify. /// </para> /// </li></ul> /// </summary> public Action Action { get { return this._action; } set { this._action = value; } } // Check to see if Action property is set internal bool IsSetAction() { return this._action != null; } /// <summary> /// Gets and sets the property Body. /// <para> /// The message body to use in push notifications that are based on the message template. /// </para> /// </summary> public string Body { get { return this._body; } set { this._body = value; } } // Check to see if Body property is set internal bool IsSetBody() { return this._body != null; } /// <summary> /// Gets and sets the property Sound. /// <para> /// The sound to play when a recipient receives a push notification that's based on the /// message template. You can use the default stream or specify the file name of a sound /// resource that's bundled in your app. On an Android platform, the sound file must reside /// in /res/raw/. /// </para> /// /// <para> /// For an iOS platform, this value is the key for 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. /// </para> /// </summary> public string Sound { get { return this._sound; } set { this._sound = value; } } // Check to see if Sound property is set internal bool IsSetSound() { return this._sound != null; } /// <summary> /// Gets and sets the property Title. /// <para> /// 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. /// </para> /// </summary> public string Title { get { return this._title; } set { this._title = value; } } // Check to see if Title property is set internal bool IsSetTitle() { return this._title != null; } /// <summary> /// Gets and sets the property Url. /// <para> /// The URL to open in a 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. /// </para> /// </summary> public string Url { get { return this._url; } set { this._url = value; } } // Check to see if Url property is set internal bool IsSetUrl() { return this._url != null; } } }