# `ExGram.Model.ShippingAddress`
[🔗](https://github.com/rockneurotiko/ex_gram/blob/0.64.0/lib/ex_gram.ex#L6932)

This object represents a shipping address.

Check the [documentation of this model on Telegram Bot API](https://core.telegram.org/bots/api#shippingaddress)

- `country_code`: Two-letter ISO 3166-1 alpha-2 country code
- `state`: State, if applicable
- `city`: City
- `street_line1`: First line for the address
- `street_line2`: Second line for the address
- `post_code`: Address post code

# `t`

```elixir
@type t() :: %ExGram.Model.ShippingAddress{
  city: String.t(),
  country_code: String.t(),
  post_code: String.t(),
  state: String.t(),
  street_line1: String.t(),
  street_line2: String.t()
}
```

# `decode_as`

---

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