UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

21 lines 545 B
import { CountryEnum } from '../nichandle/CountryEnum'; /** Representation of an Address */ export interface Address { /** City */ city: string; /** Country */ country: CountryEnum; /** First line of the address */ line1: string; /** Second line of the address */ line2?: string; /** Third line of the address */ line3?: string; /** Others details */ otherDetails?: string; /** Province name */ province?: string; /** Zipcode */ zip: string; } //# sourceMappingURL=Address.d.ts.map