abstract_api.vat.vat_categories_response module#

class abstract_api.vat.vat_categories_response.Category(country_code: str, rate: str, category: str, description: str)[source]#

Bases: object

Country entity in VAT categories response.

property category: str#

The name of the category.

property country_code: str#

Country’s ISO 3166-1 alpha-2 code.

The code of the country in which the transaction takes place, which is returned from the request.

property description: str#

A description about the category.

property rate: str#

The VAT rate for this specific category.

class abstract_api.vat.vat_categories_response.VATCategoriesResponse(response: Response)[source]#

Bases: JSONResponse

VAT categories service response.

property categories: tuple[Category, ...] | None#

The returned VAT categories.