Stripe Shipping Rate ApiService
A service which handles getting the Stripe Shipping Rates from the Stripe API
Last updated
A service which handles getting the Stripe Shipping Rates from the Stripe API
The Stripe Shipping Rate API service is what handles the retrieval of the Shipping Rates from the Stripe API.
You can access the API service by injecting IStripeShippingRateApiService which can be found within the namespace UmbCheckout.Stripe.Interfaces
Gets the Shipping Rates from the Stripe API
Task<StripeList<ShippingRate>> GetShippingRates();Gets a Shipping Rate from the Stripe API
Parameters:
id
Id of the Stripe Shipping Rate
Task<ShippingRate> GetShippingRate(string id);Last updated