abstract_api.vat.vat_calculation_response module#

class abstract_api.vat.vat_calculation_response.VATCalculationResponse(response: Response)[source]#

Bases: NestedEntitiesMixin, JSONResponse

VAT calculation service response.

property amount_excluding_vat: str | None#

The amount excluding the VAT.

property amount_including_vat: str | None#

The sum of the base amount and the VAT.

It is amount_excl_vat + vat_amount.

property country: Country | None#

Details of the country the VAT is calculated from.

property vat_amount: str | None#

The calculated amount of VAT.

property vat_category: str | None#

The optional category of the purchase.

Used to determine whether it qualifies for a reduced rate.

property vat_rate: str | None#

The VAT rate, from 0.01 to 0.99.