UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

25 lines 666 B
import { CountryEnum } from '../../nichandle/CountryEnum'; /** Information about the contact */ export interface ContactInfos { /** contact address */ address?: string; /** contact city */ city?: string; /** contact country */ country: CountryEnum; /** contact email */ email: string; /** contact firstname */ firstname?: string; /** contact name */ name?: string; /** contact organisation */ organisation?: string; /** contact phone */ phone?: string; /** contact phoneCountry */ phoneCountry?: CountryEnum; /** contact zip */ zip?: string; } //# sourceMappingURL=ContactInfos.d.ts.map