Automattic\WooCommerce\Admin\Features\Fulfillments

Fulfillment::get_entity_idpublicWC 1.0

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() code WC 10.7.0

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