WC_Customer_Download::set_order_key()publicWC 1.0

Set order_key.

Method of the class: WC_Customer_Download{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Customer_Download = new WC_Customer_Download();
$WC_Customer_Download->set_order_key( $value );
$value(string) (required)
Order key.

WC_Customer_Download::set_order_key() code WC 9.4.2

public function set_order_key( $value ) {
	$this->set_prop( 'order_key', $value );
}