Automattic\WooCommerce\Internal\Fulfillments

Fulfillment::get_lock_messagepublicWC 1.0

Get the lock message.

Method of the class: Fulfillment{}

No Hooks.

Returns

String. Lock message.

Usage

$Fulfillment = new Fulfillment();
$Fulfillment->get_lock_message(): string;

Fulfillment::get_lock_message() code WC 10.3.3

public function get_lock_message(): string {
	return $this->get_meta( '_lock_message' ) ?? '';
}