UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

21 lines 547 B
import { CountryEnum } from '../../nichandle/CountryEnum'; /** Representation of a Contact */ 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; /** Other details */ otherDetails?: string; /** Province name */ province?: string; /** Zipcode */ zip?: string; } //# sourceMappingURL=Address.d.ts.map