Automattic\WooCommerce\Admin\Features\Fulfillments

Fulfillment::get_entity_typepublicWC 1.0

Get the entity type.

Method of the class: Fulfillment{}

No Hooks.

Returns

String|null. Entity type.

Usage

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

Fulfillment::get_entity_type() code WC 10.8.1

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