UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

23 lines 578 B
import { CountryEnum } from '../coreTypes/CountryEnum'; /** Contact information structure */ export interface Contact { /** Contact address */ address?: string; /** Contact city */ city?: string; /** Contact country */ country?: CountryEnum; /** */ email?: string; /** Contact firstname */ firstname?: string; /** Contact name */ name?: string; /** Contact organisation */ organisation?: string; /** Contact phone */ phone?: string; /** Contact zip */ zip?: string; } //# sourceMappingURL=Contact.d.ts.map