Automattic\WooCommerce\Internal\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.3.3

public function get_entity_type(): ?string {
	return $this->data['entity_type'] ?? null;
}