Automattic\WooCommerce\Internal\Fulfillments

Fulfillment::get_idpublicWC 1.0

Get the fulfillment ID.

Method of the class: Fulfillment{}

No Hooks.

Returns

Int. Fulfillment ID.

Usage

$Fulfillment = new Fulfillment();
$Fulfillment->get_id(): int;

Fulfillment::get_id() code WC 10.3.3

public function get_id(): int {
	return $this->data['id'] ?? 0;
}