Power_Automate_Provider::add_checkin_to_queue( int $attendee_id, bool|null $is_qr_checkin )

Add checkin to the queue.


Parameters

$attendee_id

(int) (Required) ID of attendee ticket.

$is_qr_checkin

(bool|null) (Required) True if from QR checkin process.


Top ↑

Source

File: src/Common/Event_Automator/Power_Automate/Power_Automate_Provider.php

	public function add_checkin_to_queue( $attendee_id, $is_qr_checkin ) {
		$data = [
			'is_qr' => boolval( $is_qr_checkin ),
		];

		$this->container->make( Checkin::class )->add_to_queue( $attendee_id, $data );
	}

Top ↑

Changelog

Changelog
Version Description
6.0.0 Introduced.