# `Twilio.Supersim.V1.NetworkService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/supersim/v1/network_service.ex#L2)

Mobile operator networks to which Super SIMs can connect

Operations: `list`, `fetch`

# `fetch`

```elixir
@spec fetch(Twilio.Client.t(), String.t(), keyword()) ::
  {:ok, Twilio.Resources.Supersim.V1.Network.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

Fetch a Network resource.

Operation: `FetchNetwork` | Tags: SupersimV1Network

# `list`

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

Retrieve a list of Network resources.

Operation: `ListNetwork` | Tags: SupersimV1Network

## Query Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `IsoCountry` | string | The [ISO country code](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) of the Network resources to read. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `Mcc` | string | The 'mobile country code' of a country. Network resources with this `mcc` in their `identifiers` will be read. |
# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
| `Mnc` | string | The 'mobile network code' of a mobile operator network. Network resources with this `mnc` in their `identifiers` will be read. |

# `stream`

```elixir
@spec stream(Twilio.Client.t(), map(), keyword()) :: Enumerable.t()
```

Stream: Retrieve a list of Network resources. (lazy auto-pagination).

---

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