Automattic\WooCommerce\Admin\Marketing

MarketingCampaign::get_costpublicWC 1.0

Returns the cost of the marketing campaign with the currency.

Method of the class: MarketingCampaign{}

No Hooks.

Returns

Price|null.

Usage

$MarketingCampaign = new MarketingCampaign();
$MarketingCampaign->get_cost(): ?Price;

MarketingCampaign::get_cost() code WC 10.6.2

public function get_cost(): ?Price {
	return $this->cost;
}