The role a PR person has at one publication, blog, or podcast.

interface PublicationPerson {
    confidence?: null | number;
    contact_points?: PrContactPoint[];
    created_at?: null | string;
    email?: null | string;
    email_status: "needs_review" | "verified" | "unknown" | "bounced" | "invalid";
    ended_at?: null | string;
    id: string;
    is_current: boolean;
    is_primary_contact: boolean;
    last_verified_at?: null | string;
    metadata?: Record<string, any>;
    person?: null | PrPerson;
    pr_person_id: string;
    publication?: null | PrPublication;
    publication_id: string;
    role_category?: null | string;
    role_title?: null | string;
    source_link?: null | PrLink;
    source_link_id?: null | string;
    source_notes?: null | string;
    started_at?: null | string;
    tags?: PrTag[];
    updated_at?: null | string;
}

Properties

confidence?: null | number
contact_points?: PrContactPoint[]
created_at?: null | string
email?: null | string
email_status: "needs_review" | "verified" | "unknown" | "bounced" | "invalid"
ended_at?: null | string
id: string
is_current: boolean
is_primary_contact: boolean
last_verified_at?: null | string
metadata?: Record<string, any>
person?: null | PrPerson
pr_person_id: string
publication?: null | PrPublication
publication_id: string
role_category?: null | string
role_title?: null | string
source_link?: null | PrLink
source_link_id?: null | string
source_notes?: null | string
started_at?: null | string
tags?: PrTag[]
updated_at?: null | string

Generated using TypeDoc