WC_Customer_Download::set_downloads_remaining()
Set downloads_remaining.
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_downloads_remaining( $value );
- $value(int|string) (required)
- Amount of downloads remaining.
WC_Customer_Download::set_downloads_remaining() WC Customer Download::set downloads remaining code WC 9.4.2
public function set_downloads_remaining( $value ) { $this->set_prop( 'downloads_remaining', '' === $value ? '' : absint( $value ) ); }