abstract_api.vat.vat_validation_response module#

class abstract_api.vat.vat_validation_response.Company(address: str, name: str)[source]#

Bases: object

Company entity in VAT validation response.

property address: str | None#

The address of the company associated with the VAT number.

property name: str | None#

The name of the company associated with the VAT number.

class abstract_api.vat.vat_validation_response.VATValidationResponse(response: Response)[source]#

Bases: NestedEntitiesMixin, JSONResponse

VAT validation service response.

property company: Company | None#

Company details.

property country: Country | None#

Country details.

property valid: bool | None#

Is true if the submitted VAT number is valid.

property vat_number: str | None#

The submitted VAT number.