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

            this.createOptions = new ApplicationFeeRefundCreateOptions
            {
                Amount = 123,
            };

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

            this.listOptions = new ApplicationFeeRefundListOptions
            {
                Limit = 1,
            };
        }
        public ApplicationFeeRefundServiceTest()
        {
            this.service = new ApplicationFeeRefundService();

            this.createOptions = new ApplicationFeeRefundCreateOptions
            {
                Amount = 123,
            };

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

            this.listOptions = new ApplicationFeeRefundListOptions()
            {
                Limit = 1,
            };
        }