/// <summary>
        /// Gets a collection notification. 
        /// </summary>
        public CollectionNotification GetCollectionNotification(Int32 collectionNotificationId)
        {
            JSONObject json = _api.Get(Properties.Settings.Default.CollectionsNotificationsUri + "/" + collectionNotificationId.ToString());
            CollectionNotification notification = new CollectionNotification(json);

            return notification;
        }
        /// <summary>
        /// Gets a collection notification.
        /// </summary>
        public CollectionNotification GetCollectionNotification(Int32 collectionNotificationId)
        {
            JSONObject             json         = _api.Get(SettingsHelper.CollectionsNotificationsUri + "/" + collectionNotificationId.ToString());
            CollectionNotification notification = new CollectionNotification(json);

            return(notification);
        }