WC_CLI_REST_Command::get_supported_ids()publicWC 1.0

Returns an ID of supported ID arguments (things like product_id, order_id, etc) that we should look for in addition to id.

Method of the class: WC_CLI_REST_Command{}

No Hooks.

Return

Array.

Usage

$WC_CLI_REST_Command = new WC_CLI_REST_Command();
$WC_CLI_REST_Command->get_supported_ids();

WC_CLI_REST_Command::get_supported_ids() code WC 8.7.0

public function get_supported_ids() {
	return $this->supported_ids;
}