Skip to main content

TollSystem

No description

type TollSystem {
name: String!
country: String!
amount: Float!
amountExcludingVat: Float
amountIncludingVat: Float!
type: TollType!
}

Fields

TollSystem.name ● String! non-null scalar

TollSystem.country ● String! non-null scalar

TollSystem.amount ● Float! non-null scalar

The toll amount, usually charged to transportation companies, is provided in EUR and may be VAT inclusive or exclusive depending on the country or toll system (see amountIncludingVat or amountExcludingVat). Note that for vignettes, this amount may vary between calculateLeg and calculateRouteDetails, as the latter aggregates vignette prices across legs and applies discounts to subsequent legs.

TollSystem.amountExcludingVat ● Float scalar

The same as amount but without VAT

TollSystem.amountIncludingVat ● Float! non-null scalar

The same as amount but with addition of VAT

TollSystem.type ● TollType! non-null enum