# Tax-included calculations

Source: https://developer.avalara.com/products/communications/integration-guides/communications-integration/vpn0099152948404/

Guide: Communications

# Tax-included calculations

**Element type: Required for International**

**Enpoints/models used:** [LineItem](https://developer.avalara.com/api-reference/communications/v2/models/LineItem/)

Your integration must provide a flag for specifying whether the amount charged in a line item includes tax. This can be specified using the `incl` field in the [LineItem](https://developer.avalara.com/api-reference/communications/v2/models/LineItem/) model. If this value is set to `true`, then tax is included in the charge.

**View example**:

```
"itms": [
  {
    "ref": "Reference Code for Line Item",
    "from": {
      // Location
    },
    "to": {
      // Location
    },
    "chg": 100,
    "line": 0,
    "loc": 0,
    "min": 0,
    "sale": 1,
    "plsp": 0,
    "incl": false,
    "pror": 0,
    "proadj": 0,
    "tran": 19,
    "serv": 6,
    "dbt": false,
    "adj": false,
    "adjm": 0,
    "disc": 0,
    "opt": [
      {
        // Key Value Pair
      }
    ],
    "prop": 0,
    "bill": {
      // Location
    },
    "cust": 0,
    "lfln": false,
    "date": "2018-09-23T20:31:53.452Z",
    "qty": 1,
    "glref": "General Ledger Reference"
  }
] 
```