WC_Customer_Download::get_download_id()publicWC 1.0

Get download id.

Method of the class: WC_Customer_Download{}

No Hooks.

Return

String.

Usage

$WC_Customer_Download = new WC_Customer_Download();
$WC_Customer_Download->get_download_id( $context );
$context(string)
What the value is for. Valid values are 'view' and 'edit'.
Default: 'view'

WC_Customer_Download::get_download_id() code WC 8.6.1

public function get_download_id( $context = 'view' ) {
	return $this->get_prop( 'download_id', $context );
}