Automattic\WooCommerce\Admin\Features\Fulfillments

Fulfillment::set_entity_idpublicWC 1.0

Set the entity ID.

Method of the class: Fulfillment{}

No Hooks.

Returns

null. Nothing (null).

Usage

$Fulfillment = new Fulfillment();
$Fulfillment->set_entity_id( ?string $entity_id ): void;
?string $entity_id(required)
.

Fulfillment::set_entity_id() code WC 10.8.1

public function set_entity_id( ?string $entity_id ): void {
	$this->set_prop( 'entity_id', $entity_id );
}