# InputsInteractionResult

- Module: [Aspire.Hosting](/reference/api/typescript/aspire.hosting.md)
- Version: `13.5.0`
- Kind: `handle`
- Source: [GitHub](https://github.com/microsoft/aspire/tree/e076d8e427cb3afb528dbd605acd74c3aea69f94)

The result of a multi-input interaction prompt.

## Definition

```typescript
interface InputsInteractionResult {
  readonly canceled: boolean;
  readonly inputs: InteractionInputCollection;
}
```

## Properties

- `canceled`: `boolean` `get` -- Gets a value indicating whether the interaction was canceled by the user.
- `inputs`: [InteractionInputCollection](/reference/api/typescript/aspire.hosting/interactioninputcollection.md) `get` -- Gets the inputs returned from the interaction. Empty when `Canceled` is `true`.
