A journalist, editor, podcast host, producer, contributor, or other PR contact associated with one or more gaming-focused outlets.

interface PrPerson {
    bio?: null | string;
    bluesky_url?: null | string;
    contact_points?: PrContactPoint[];
    contact_points_count?: number;
    created_at?: null | string;
    id: string;
    is_active: boolean;
    last_verified_at?: null | string;
    linkedin_url?: null | string;
    links?: PrLink[];
    links_count?: number;
    location?: null | string;
    metadata?: Record<string, any>;
    name: string;
    next_verification_at?: null | string;
    roles?: PublicationPerson[];
    roles_count?: number;
    slug?: null | string;
    stories?: PrStoryAuthor[];
    stories_count?: number;
    tags?: PrTag[];
    updated_at?: null | string;
    verification_status: PrVerificationStatus;
    website_url?: null | string;
    x_url?: null | string;
}

Properties

bio?: null | string
bluesky_url?: null | string
contact_points?: PrContactPoint[]
contact_points_count?: number
created_at?: null | string
id: string
is_active: boolean
last_verified_at?: null | string
linkedin_url?: null | string
links?: PrLink[]
links_count?: number
location?: null | string
metadata?: Record<string, any>
name: string
next_verification_at?: null | string
roles_count?: number
slug?: null | string
stories?: PrStoryAuthor[]
stories_count?: number
tags?: PrTag[]
updated_at?: null | string
verification_status: PrVerificationStatus
website_url?: null | string
x_url?: null | string

Generated using TypeDoc