wc_get_webhook()WC 1.0

Get webhook.

No Hooks.

Return

WC_Webhook|null.

Usage

wc_get_webhook( $id );
$id(int|WC_Webhook) (required)
Webhook ID or object.

wc_get_webhook() code WC 8.7.0

function wc_get_webhook( $id ) {
	$webhook = new WC_Webhook( $id );

	return 0 !== $webhook->get_id() ? $webhook : null;
}