<!--
{
  "availability" : [
    "iOS: 27.0.0 -",
    "iPadOS: 27.0.0 -",
    "macCatalyst: 27.0.0 -",
    "macOS: 27.0.0 -",
    "tvOS: 27.0.0 -",
    "visionOS: 27.0.0 -",
    "watchOS: 27.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "AppIntentsTesting",
  "identifier" : "/documentation/AppIntentsTesting/TransientAppEntityDefinition/resolved(from:)-1lap2",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "App Intents Testing",
      "AppIntentsTesting"
    ],
    "preciseIdentifier" : "s:17AppIntentsTesting09TransientA16EntityDefinitionV8resolved4fromAA03AnydaE0Vx_tYaK0aB11TypeSupport22IntentValueConvertibleRz16CoreTransferable0P0RzlF"
  },
  "title" : "resolved(from:)"
}
-->

# resolved(from:)

Resolves a transient entity from a transferable intent value type through the entity type’s
`Transferable` conformance.

```
func resolved<T>(from value: T) async throws -> AnyTransientAppEntity where T : IntentValueConvertible, T : Transferable
```

## Parameters

`value`

The transferable intent value (e.g., an `IntentPerson` instance).

## Return Value

The resolved transient entity.

## Discussion

The value is serialized through its `TransferRepresentation` and resolved into
the transient entity type through the same pipeline used at runtime.

> Throws: If the entity type does not support the given value type.

```swift
let person = try await transientEntity.exported(as: IntentPerson.self)
let resolved = try await sessionEntityDef.resolved(from: person)
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)