A normalized way to reach an outlet, person, or publication role.

interface PrContactPoint {
    confidence?: null | number;
    contact_type: string;
    contactable_id: string;
    contactable_type: string;
    created_at?: null | string;
    first_seen_at?: null | string;
    id: string;
    is_primary: boolean;
    label?: null | string;
    last_seen_at?: null | string;
    metadata?: Record<string, any>;
    normalized_value: string;
    pr_link_id?: null | string;
    source_link?: null | PrLink;
    updated_at?: null | string;
    value: string;
    verification_status: PrContactVerificationStatus;
}

Properties

confidence?: null | number
contact_type: string
contactable_id: string
contactable_type: string
created_at?: null | string
first_seen_at?: null | string
id: string
is_primary: boolean
label?: null | string
last_seen_at?: null | string
metadata?: Record<string, any>
normalized_value: string
pr_link_id?: null | string
source_link?: null | PrLink
updated_at?: null | string
value: string
verification_status: PrContactVerificationStatus

Generated using TypeDoc