/* * 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 the settings for a one-time message that's sent directly to an endpoint /// through the Baidu (Baidu Cloud Push) channel. /// public partial class BaiduMessage { private Action _action; private string _body; private Dictionary _data = new Dictionary(); private string _iconReference; private string _imageIconUrl; private string _imageUrl; private string _rawContent; private bool? _silentPush; private string _smallImageIconUrl; private string _sound; private Dictionary> _substitutions = new Dictionary>(); private int? _timeToLive; private string _title; private string _url; /// /// Gets and sets the property Action. /// /// The action to occur if the recipient taps the push notification. 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 /// action uses the deep-linking features of the Android platform. /// ///
  • /// /// URL - The default mobile browser on the recipient's device opens and loads the web /// page at a URL that you specify. /// ///
///
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 body of the notification message. /// /// 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 Data. /// /// The JSON data payload to use for the push notification, if the notification is a silent /// push notification. This payload is added to the data.pinpoint.jsonBody object of the /// notification. /// /// public Dictionary Data { get { return this._data; } set { this._data = value; } } // Check to see if Data property is set internal bool IsSetData() { return this._data != null && this._data.Count > 0; } /// /// Gets and sets the property IconReference. /// /// The icon image name of the asset saved in your app. /// /// public string IconReference { get { return this._iconReference; } set { this._iconReference = value; } } // Check to see if IconReference property is set internal bool IsSetIconReference() { return this._iconReference != null; } /// /// Gets and sets the property ImageIconUrl. /// /// The URL of the large icon image to display in the content view of the push notification. /// /// public string ImageIconUrl { get { return this._imageIconUrl; } set { this._imageIconUrl = value; } } // Check to see if ImageIconUrl property is set internal bool IsSetImageIconUrl() { return this._imageIconUrl != null; } /// /// Gets and sets the property ImageUrl. /// /// The URL of an image to display in the push notification. /// /// public string ImageUrl { get { return this._imageUrl; } set { this._imageUrl = value; } } // Check to see if ImageUrl property is set internal bool IsSetImageUrl() { return this._imageUrl != null; } /// /// Gets and sets the property RawContent. /// /// The raw, JSON-formatted string to use as the payload for the notification message. /// If specified, this value overrides all other content for the message. /// /// 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 SilentPush. /// /// Specifies whether the notification is a silent push notification, which is a push /// notification that doesn't display on a recipient's device. Silent push notifications /// can be used for cases such as updating an app's configuration or supporting phone /// home functionality. /// /// public bool SilentPush { get { return this._silentPush.GetValueOrDefault(); } set { this._silentPush = value; } } // Check to see if SilentPush property is set internal bool IsSetSilentPush() { return this._silentPush.HasValue; } /// /// Gets and sets the property SmallImageIconUrl. /// /// The URL of the small icon image to display in the status bar and the content view /// of the push notification. /// /// public string SmallImageIconUrl { get { return this._smallImageIconUrl; } set { this._smallImageIconUrl = value; } } // Check to see if SmallImageIconUrl property is set internal bool IsSetSmallImageIconUrl() { return this._smallImageIconUrl != null; } /// /// Gets and sets the property Sound. /// /// The sound to play when the recipient receives the push notification. 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/. /// /// 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 Substitutions. /// /// The default message variables to use in the notification message. You can override /// the default variables with individual address variables. /// /// public Dictionary> Substitutions { get { return this._substitutions; } set { this._substitutions = value; } } // Check to see if Substitutions property is set internal bool IsSetSubstitutions() { return this._substitutions != null && this._substitutions.Count > 0; } /// /// Gets and sets the property TimeToLive. /// /// The amount of time, in seconds, that the Baidu Cloud Push service should store the /// message if the recipient's device is offline. The default value and maximum supported /// time is 604,800 seconds (7 days). /// /// public int TimeToLive { get { return this._timeToLive.GetValueOrDefault(); } set { this._timeToLive = value; } } // Check to see if TimeToLive property is set internal bool IsSetTimeToLive() { return this._timeToLive.HasValue; } /// /// Gets and sets the property Title. /// /// The title to display above the notification message on the 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 the /// push notification 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; } } }