Automattic\WooCommerce\Admin\Features\Fulfillments

Fulfillment::get_statuspublicWC 1.0

Get the fulfillment status.

Method of the class: Fulfillment{}

No Hooks.

Returns

String|null. Fulfillment status.

Usage

$Fulfillment = new Fulfillment();
$Fulfillment->get_status(): ?string;

Fulfillment::get_status() code WC 10.8.1

public function get_status(): ?string {
	return $this->get_prop( 'status' );
}