Automattic\WooCommerce\Internal\Fulfillments
Fulfillment::get_entity_type
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() Fulfillment::get entity type code WC 10.3.3
public function get_entity_type(): ?string {
return $this->data['entity_type'] ?? null;
}