private NotificationsResource.ListRequest CreateListNotificationsRequest(string bucket, ListNotificationsOptions options)
        {
            var request = Service.Notifications.List(bucket);

            options?.ModifyRequest(request);
            return(request);
        }