handle(intent:completion:)
Accesses and returns the current status of the car’s locks.
Declaration
func handle(intent: INGetCarLockStatusIntent, completion: @escaping @Sendable (INGetCarLockStatusIntentResponse) -> Void)func handle(intent: INGetCarLockStatusIntent) async -> INGetCarLockStatusIntentResponseParameters
- intent:
An intent object that contains the full details of the user’s request. The information in this object has already been resolved by your handler object.
- completion:
The handler block to execute with your response. You must execute this handler at some point during your implementation of this method. This handler has no return value and takes the following parameter:
- response
An Ingetcarlockstatusintentresponse object you create to report the current status of the car’s locks. This parameter must not be
nil.
Discussion
Your implementation of this method must access and return the current status of the car’s locks. If you are unable to access the data, return a response object whose result code indicates the reason for the failure.