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

public function set_entity_id( ?string $entity_id ): void {
	$this->data['entity_id'] = $entity_id;
}