UNPKG

@ts4ocds/core

Version:

TS4OCDS is a library of TypeScript entities that takes an approach to befriend large OCDS JSONs with your per-project routine of writing whole lotta interfaces for them.

37 lines (30 loc) 911 B
/** * @packageDocumentation * @module Standard.Organization */ import { Initializable } from '@ts4ocds/utils'; /** * A person, contact point or department to contact in relation to this contracting process. */ export class ContactPoint extends Initializable<ContactPoint> { /** * The name of the contact person, department, or contact point, for correspondence relating to this contracting process. */ public name?: string; /** * The e-mail address of the contact point/person. */ public email?: string; /** * The telephone number of the contact point/person. This should include the international dialing code. */ public telephone?: string; /** * The fax number of the contact point/person. This should include the international dialing code. */ public faxNumber?: string; /** * A web address for the contact point/person. */ public url?: string; }