Immutable data about a Contact.

interface Contact {
    _id: string;
    _rev: string;
    contact_type?: string;
    name?: string;
    parent?: NormalizedParent;
    reported_date?: Date;
    type: string;
    readonly [key: string]: DataValue;
}

Hierarchy (View Summary)

Indexable

  • readonly [key: string]: DataValue

Properties

_id: string
_rev: string
contact_type?: string
name?: string
parent?: NormalizedParent
reported_date?: Date
type: string