Skip to main content

Zone

Zone

A Zone is a grouping of one or more Country entities. It is used for calculating applicable shipping and taxes.

Signature
class Zone extends VendureEntity implements HasCustomFields {
constructor(input?: DeepPartial<Zone>)
@Column() name: string;
@ManyToMany(type => Region)
@JoinTable()
members: Region[];
@Column(type => CustomZoneFields)
customFields: CustomZoneFields;
@OneToMany(type => Channel, country => country.defaultShippingZone)
defaultShippingZoneChannels: Channel[];
@OneToMany(type => Channel, country => country.defaultTaxZone)
defaultTaxZoneChannels: Channel[];
@OneToMany(type => TaxRate, taxRate => taxRate.zone)
taxRates: TaxRate[];
}
  • Implements: HasCustomFields

constructor

method
(input?: DeepPartial<Zone>) => Zone

name

property
string

members

property

customFields

property
CustomZoneFields

defaultShippingZoneChannels

property

defaultTaxZoneChannels

property

taxRates

property