Automattic\WooCommerce\Internal\Fulfillments
Fulfillment::get_entity_id
Get the entity ID.
Method of the class: Fulfillment{}
No Hooks.
Returns
String|null. Entity ID.
Usage
$Fulfillment = new Fulfillment(); $Fulfillment->get_entity_id(): ?string;
Fulfillment::get_entity_id() Fulfillment::get entity id code WC 10.3.3
public function get_entity_id(): ?string {
return $this->data['entity_id'] ?? null;
}