> For the complete documentation index, see [llms.txt](https://docs.payrexx.com/developer/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.payrexx.com/developer/general-info/objects/invoice/google-analytic-product.md).

# Google Analytic Product

### Content

<table><thead><tr><th width="231.6796875">Key</th><th width="154.80078125">Type</th><th>Description</th></tr></thead><tbody><tr><td>item_id</td><td>int|null</td><td>The invoice product ID</td></tr><tr><td>item_name</td><td>string</td><td>The name of the invoice product</td></tr><tr><td>price</td><td>float</td><td>The price of the invoice product</td></tr><tr><td>quantity</td><td>int</td><td>How many times this invoice product has been purchased</td></tr></tbody></table>

### Example

```json
{
  "price": 10,
  "item_id": 112233,
  "quantity": 1,
  "item_name": "Product 1"
}
```
