Automattic\WooCommerce\RestApi\Utilities

ImageAttachment::__construct()publicWC 1.0

Constructor.

Method of the class: ImageAttachment{}

No Hooks.

Return

null. Nothing (null).

Usage

$ImageAttachment = new ImageAttachment();
$ImageAttachment->__construct( $id, $object_id );
$id(int)
Attachment ID.
$object_id(int)
Object ID.

ImageAttachment::__construct() code WC 8.6.1

public function __construct( $id = 0, $object_id = 0 ) {
	$this->id        = (int) $id;
	$this->object_id = (int) $object_id;
}