# fluentform/6.2.4/app/Services/Libraries/action-scheduler/classes/ActionScheduler_ActionClaim.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 6.2.4. 46 lines.

- Page: https://pluginprobe.com/plugins/fluentform/6.2.4/code/app/Services/Libraries/action-scheduler/classes/ActionScheduler_ActionClaim.php
- Raw: https://pluginprobe.com/plugins/fluentform/6.2.4/raw/app/Services/Libraries/action-scheduler/classes/ActionScheduler_ActionClaim.php
- Modified: 2025-11-12T11:25:50+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluentform/6.2.4/code/app/Services/Libraries/action-scheduler/classes/ActionScheduler_ActionClaim.php#L10-L20`.

```php
<?php

/**
 * Class ActionScheduler_ActionClaim
 */
class ActionScheduler_ActionClaim {
	/**
	 * Claim ID.
	 *
	 * @var string
	 */
	private $id = '';

	/**
	 * Claimed action IDs.
	 *
	 * @var int[]
	 */
	private $action_ids = array();

	/**
	 * Construct.
	 *
	 * @param string $id Claim ID.
	 * @param int[]  $action_ids Action IDs.
	 */
	public function __construct( $id, array $action_ids ) {
		$this->id         = $id;
		$this->action_ids = $action_ids;
	}

	/**
	 * Get claim ID.
	 */
	public function get_id() {
		return $this->id;
	}

	/**
	 * Get IDs of claimed actions.
	 */
	public function get_actions() {
		return $this->action_ids;
	}
}

```
