Represents the geo restriction rules.

interface GeoRestrictions {
    allowedCountries: string[];
    deniedCountries: string[];
}

Properties

allowedCountries: string[]

List of allowed countries.

deniedCountries: string[]

List of restricted countries.