Zapier_Provider::add_checkin_to_queue( int $attendee_id, bool|null $qr )
Add checkin to the queue.
Contents
Parameters
- $attendee_id
-
(int) (Required) ID of attendee ticket.
- $qr
-
(bool|null) (Required) true if from QR checkin process
Source
File: src/Common/Event_Automator/Zapier/Zapier_Provider.php
public function add_checkin_to_queue( $attendee_id, $qr ) {
$data = [
'qr' => $qr,
];
$this->container->make( Checkin::class )->add_to_queue( $attendee_id, $data );
}
Changelog
| Version | Description |
|---|---|
| 6.0.0 | Introduced. |