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

Mobile operator networks which Network Access Profiles allow access to

Operations: `list`, `create`, `fetch`, `delete`

# `create`

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

Add a Network resource to the Network Access Profile resource.

Operation: `CreateNetworkAccessProfileNetwork` | Tags: SupersimV1NetworkAccessProfileNetwork

## Required Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `Network` | string | The SID of the Network resource to be added to the Network Access Profile resource. |

# `delete`

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

Remove a Network resource from the Network Access Profile resource's.

Operation: `DeleteNetworkAccessProfileNetwork` | Tags: SupersimV1NetworkAccessProfileNetwork

# `fetch`

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

Fetch a Network Access Profile resource's Network resource.

Operation: `FetchNetworkAccessProfileNetwork` | Tags: SupersimV1NetworkAccessProfileNetwork

# `list`

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

Retrieve a list of Network Access Profile resource's Network resource.

Operation: `ListNetworkAccessProfileNetwork` | Tags: SupersimV1NetworkAccessProfileNetwork

# `stream`

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

Stream: Retrieve a list of Network Access Profile resource's Network resource. (lazy auto-pagination).

---

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