public void TestNotificationFilterUrlUser()
        {
            SetUpApiContext();

            NotificationFilterUrl        notificationFilter           = GetNotificationFilterUrl();
            List <NotificationFilterUrl> allCreatedNotificationFilter = NotificationFilterUrlUserInternal.CreateWithListResponse(
                new List <NotificationFilterUrl>()
            {
                notificationFilter
            }
                ).Value;

            Assert.True(allCreatedNotificationFilter.Count == 1);
        }
        public void TestNotificationFilterUrlMonetaryAccount()
        {
            SetUpApiContext();

            NotificationFilterUrl        notificationFilter           = GetNotificationFilterUrl();
            List <NotificationFilterUrl> allCreatedNotificationFilter = NotificationFilterUrlMonetaryAccountInternal.CreateWithListResponse(
                GetPrimaryMonetaryAccount().Id.Value,
                new List <NotificationFilterUrl>()
            {
                notificationFilter
            }
                ).Value;

            Assert.True(allCreatedNotificationFilter.Count == 1);
        }