Automattic\WooCommerce\Admin\Features\Fulfillments
Fulfillment::set_entity_type
Set the entity type.
Method of the class: Fulfillment{}
No Hooks.
Returns
null. Nothing (null).
Usage
$Fulfillment = new Fulfillment(); $Fulfillment->set_entity_type( ?string $entity_type ): void;
- ?string $entity_type(required)
- .
Fulfillment::set_entity_type() Fulfillment::set entity type code WC 10.8.1
public function set_entity_type( ?string $entity_type ): void {
$this->set_prop( 'entity_type', $entity_type );
}