UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 435 B
import { PositionEnum } from './PositionEnum'; /** Contact Entity */ export interface Contact { /** Contact Email */ email: string; /** Contact First Name */ firstName: string; /** Contact Job Title */ jobTitle?: string; /** Contact Last Name */ lastName: string; /** Contact Phone */ phone: string; /** Contact Position */ position: PositionEnum; } //# sourceMappingURL=Contact.d.ts.map