# `Stripe.Services.ShippingRateService`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/services/shipping_rate_service.ex#L2)

ShippingRate

Shipping rates describe the price of shipping presented to your customers and
applied to a purchase. For more information, see [Charge for shipping](https://docs.stripe.com/payments/during-payment/charge-shipping).

# `create`

```elixir
@spec create(Stripe.Client.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Create a shipping rate

Creates a new shipping rate object.

# `list`

```elixir
@spec list(Stripe.Client.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

List all shipping rates

Returns a list of your shipping rates.

# `retrieve`

```elixir
@spec retrieve(Stripe.Client.t(), String.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Retrieve a shipping rate

Returns the shipping rate object with the given ID.

# `update`

```elixir
@spec update(Stripe.Client.t(), String.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Update a shipping rate

Updates an existing shipping rate object.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
