---
title: synonyms
framework: appintents
role: symbol
role_heading: Instance Property
path: appintents/typedisplayrepresentation/synonyms
---

# synonyms

A list of localized phrases that are synonyms of this particular type display representation

## Declaration

```swift
var synonyms: [LocalizedStringResource]
```

## Discussion

Discussion Example: struct PizzaEntity: AppEntity {     static var typeDisplayRepresentation = TypeDisplayRepresentation(         name: "Pizza",         synonyms: ["Pie", "Za"]     ) }

In this case, we are saying that PizzaEntity can be represented as “Pizza”, “Pie” or “Za”
