> ## Documentation Index
> Fetch the complete documentation index at: https://wb-21fd5541-sdk-add-methods-properties.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ArtifactCollection methods

## <Badge color="yellow" size="lg" shape="rounded">Class</Badge> wandb.apis.public.ArtifactCollection

## <Badge color="blue" size="lg" shape="rounded">method</Badge> ArtifactCollection.artifacts()

Get all artifacts in the collection.

```python theme={null}
self,
per_page: 'int' = 50,
start: 'str | None' = None
```

##### Arguments

<ResponseField name="per_page" type="int">
  The number of artifacts to fetch per page.
</ResponseField>

<ResponseField name="start" type="str | None">
  Pagination cursor for resuming a past query, captured from a previous paginator's `.cursor` attribute.
</ResponseField>

## <Badge color="blue" size="lg" shape="rounded">method</Badge> ArtifactCollection.change\_type()

Deprecated, change type directly with `save` instead.

```python theme={null}
self,
new_type: 'str'
```

##### Arguments

<ResponseField name="new_type" type="str" />

## <Badge color="blue" size="lg" shape="rounded">method</Badge> ArtifactCollection.delete()

Delete the entire artifact collection.

```python theme={null}
self
```

## <Badge color="blue" size="lg" shape="rounded">method</Badge> ArtifactCollection.is\_sequence()

Return whether the artifact collection is a sequence.

```python theme={null}
self
```

## <Badge color="blue" size="lg" shape="rounded">method</Badge> ArtifactCollection.save()

Persist any changes made to the artifact collection.

```python theme={null}
self
```
