# woo-postnl/5.9.12/src/Rest_API/Legacy/Letterbox/Item_Info.php

PostNL for WooCommerce, version 5.9.12. 40 lines.

- Page: https://pluginprobe.com/plugins/woo-postnl/5.9.12/code/src/Rest_API/Legacy/Letterbox/Item_Info.php
- Raw: https://pluginprobe.com/plugins/woo-postnl/5.9.12/raw/src/Rest_API/Legacy/Letterbox/Item_Info.php
- Modified: 2026-07-20T20:49:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/woo-postnl/5.9.12/code/src/Rest_API/Legacy/Letterbox/Item_Info.php#L10-L20`.

```php
<?php
/**
 * Class Rest_API\Letterbox\Item_Info file.
 *
 * @package PostNLWooCommerce\Rest_API\Legacy\Letterbox
 */

namespace PostNLWooCommerce\Rest_API\Legacy\Letterbox;

use PostNLWooCommerce\Rest_API\Legacy\Shipping;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Class Item_Info
 *
 * @package PostNLWooCommerce\Rest_API\Legacy\Letterbox
 */
class Item_Info extends Shipping\Item_Info {
	/**
	 * Get product code from api args.
	 *
	 * @return String.
	 */
	public function get_product_code() {
		return '2928';
	}

	/**
	 * Get product options from api args.
	 *
	 * @return String.
	 */
	public function get_product_options() {
		return array();
	}
}

```
