public ValueListServiceTest(
            StripeMockFixture stripeMockFixture,
            MockHttpClientFixture mockHttpClientFixture)
            : base(stripeMockFixture, mockHttpClientFixture)
        {
            this.service = new ValueListService(this.StripeClient);

            this.createOptions = new ValueListCreateOptions
            {
                Alias    = "alias",
                ItemType = "ip_address",
                Name     = "name",
            };

            this.updateOptions = new ValueListUpdateOptions
            {
                Metadata = new Dictionary <string, string>
                {
                    { "key", "value" },
                },
            };

            this.listOptions = new ValueListListOptions
            {
                Alias = "alias",
                Limit = 1,
            };
        }
        public ValueListServiceTest()
        {
            this.service = new ValueListService();

            this.createOptions = new ValueListCreateOptions
            {
                Alias    = "alias",
                ItemType = "ip_address",
                Name     = "name",
            };

            this.updateOptions = new ValueListUpdateOptions
            {
                Metadata = new Dictionary <string, string>
                {
                    { "key", "value" },
                },
            };

            this.listOptions = new ValueListListOptions
            {
                Alias = "alias",
                Limit = 1,
            };
        }