Automattic\WooCommerce\RestApi\Utilities
ImageAttachment::__construct
Constructor.
Method of the class: ImageAttachment{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ImageAttachment = new ImageAttachment(); $ImageAttachment->__construct( $id, $object_id );
- $id(int)
- Attachment ID.
- $object_id(int)
- Object ID.
ImageAttachment::__construct() ImageAttachment:: construct code WC 10.5.0
public function __construct( $id = 0, $object_id = 0 ) {
$this->id = (int) $id;
$this->object_id = (int) $object_id;
}