/* * 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 { /// /// 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. /// public partial class APNSPushNotificationTemplate { private Action _action; private string _body; private string _mediaUrl; private string _rawContent; private string _sound; private string _title; private string _url; /// /// Gets and sets the property Action. /// /// The action to occur if a recipient taps a push notification that's based on the message /// template. Valid values are: /// /// /// 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; } /// /// Gets and sets the property Body. /// /// The message body to use in push notifications that are based on the message template. /// /// 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; } /// /// Gets and sets the property MediaUrl. /// /// The URL of an image or video to display in push notifications that are based on the /// message template. /// /// public string MediaUrl { get { return this._mediaUrl; } set { this._mediaUrl = value; } } // Check to see if MediaUrl property is set internal bool IsSetMediaUrl() { return this._mediaUrl != null; } /// /// Gets and sets the property 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. /// /// public string RawContent { get { return this._rawContent; } set { this._rawContent = value; } } // Check to see if RawContent property is set internal bool IsSetRawContent() { return this._rawContent != null; } /// /// Gets and sets the property 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. /// /// 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; } /// /// Gets and sets the property 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. /// /// 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; } /// /// Gets and sets the property 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. /// /// 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; } } }