Contents

export

Declaration

var export: some AssistantSchemas.Intent { get }

Overview

To integrate your app’s functionality with Siri and Apple Intelligence, you use Swift macros that generate additional properties and add protocol conformance for your app intent implementation.

For general information about app intent domains, see doc:Integrating-actions-with-siri-and-apple-intelligence.

The following example shows an app intent that conforms to the presentation.export schema:

@AppIntent(schema: .presentation.export)
struct ExportPresentationIntent {
var document: <#PresentationEntity#>
var format: <#ExportFormatEnum#>
var sourcePassword: String?
var password: String?

func perform() async throws -> some ReturnsValue<URL> {
<#code#>
}
}