---
title: "init(identifier:title:asyncGetter:)"
framework: appintents
role: symbol
role_heading: Initializer
path: "appintents/entityproperty/init(identifier:title:asyncgetter:)-6drke"
---

# init(identifier:title:asyncGetter:)

Creates an app intent entity property.  Do not call this directly, use @ComputedProperty or @DeferredProperty

## Declaration

```swift
convenience init<Entity>(identifier: String, title: LocalizedStringResource, asyncGetter: @escaping @Sendable (Entity) async throws -> Value) where Entity : AppEntity
```

## Parameters

- `identifier`: The identifier of the property
- `title`: A word or short phrase summarizing this property.
- `asyncGetter`: The getter reference for the property
