# `Twilio.Numbers.V2.RegulatoryCompliance.Bundle.CopyService`
[🔗](https://github.com/jeffhuen/twilio_elixir/blob/main/lib/twilio/numbers/v2/regulatory_compliance/bundle/copy_service.ex#L2)

Service for Copy API operations.

Operations: `list`, `create`

# `create`

```elixir
@spec create(Twilio.Client.t(), String.t(), map(), keyword()) ::
  {:ok, Twilio.Resources.Numbers.V2.RegulatoryCompliance.Bundle.Copy.t()}
  | {:ok, map(), map()}
  | :ok
  | {:error, Twilio.Error.t()}
```

# credo:disable-for-next-line Credo.Check.Readability.MaxLineLength
Creates a new copy of a Bundle. It will internally create copies of all the bundle items (identities and documents) of the original bundle

Operation: `CreateBundleCopy` | Tags: NumbersV2BundleCopy

## Optional Parameters

| Parameter | Type | Description |
|-----------|------|-------------|
| `FriendlyName` | string | The string that you assigned to describe the copied bundle. |

# `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 all Bundles Copies for a Bundle.

Operation: `ListBundleCopy` | Tags: NumbersV2BundleCopy

# `stream`

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

Stream: Retrieve a list of all Bundles Copies for a Bundle. (lazy auto-pagination).

---

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