#nullable disable
#pragma warning disable CS1591
namespace Emby.Dlna
{
    public interface IDlnaEventManager
    {
        /// 
        /// Cancels the event subscription.
        /// 
        /// The subscription identifier.
        /// The response.
        EventSubscriptionResponse CancelEventSubscription(string subscriptionId);
        /// 
        /// Renews the event subscription.
        /// 
        /// The subscription identifier.
        /// The notification type.
        /// The requested timeout as a string.
        /// The callback url.
        /// The response.
        EventSubscriptionResponse RenewEventSubscription(string subscriptionId, string notificationType, string requestedTimeoutString, string callbackUrl);
        /// 
        /// Creates the event subscription.
        /// 
        /// The notification type.
        /// The requested timeout as a string.
        /// The callback url.
        /// The response.
        EventSubscriptionResponse CreateEventSubscription(string notificationType, string requestedTimeoutString, string callbackUrl);
    }
}