UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

13 lines 470 B
import { ContinentEnum } from './ContinentEnum'; import { CountryEnum } from './CountryEnum'; import { Ip } from '../../Ip'; /** Representation of country and continent from visitor IP */ export interface ContinentCountryLocation { /** Continent */ continent?: ContinentEnum; /** Country iso code */ countryCode?: CountryEnum; /** The IP address processed, the user's origin one */ ip: Ip; } //# sourceMappingURL=ContinentCountryLocation.d.ts.map