# ResolvedAsset

```python
class ResolvedAsset(
    asset: Asset,
    location: AssetLocation,
    href: str,
    store: ObjectStore,
    path: str,
    storage_scheme: StorageScheme | None,
    authentication_scheme: AuthenticationScheme | None,
)
```

Describe the selected asset location and object-store access details returned by `Client.resolve`.

## Fields

**asset**

`Asset`

The source asset.

**location**

`AssetLocation`

The selected location.

**href**

`str`

The selected location's URL.

**store**

`ObjectStore`

The configured object store.

**path**

`str`

The object path within the store.

**storage\_scheme**

`StorageScheme | None`

The applicable storage scheme.

**authentication\_scheme**

`AuthenticationScheme | None`

The applicable authentication scheme.
