Automattic\WooCommerce\Admin\Features\Fulfillments

Fulfillment::get_is_fulfilledpublicWC 1.0

Get if the fulfillment is fulfilled.

Method of the class: Fulfillment{}

No Hooks.

Returns

true|false. Whether the fulfillment is fulfilled.

Usage

$Fulfillment = new Fulfillment();
$Fulfillment->get_is_fulfilled(): bool;

Fulfillment::get_is_fulfilled() code WC 10.8.1

public function get_is_fulfilled(): bool {
	return (bool) $this->get_prop( 'is_fulfilled' );
}