Interface PublisherInfo

Publisher/author information

interface PublisherInfo {
    id: string;
    name: string;
    type: "organization" | "individual" | "verified";
    avatarUrl?: string;
    verified: boolean;
    websiteUrl?: string;
    supportEmail?: string;
}

Properties

id: string

Publisher ID

name: string

Display name

type: "organization" | "individual" | "verified"

Publisher type

avatarUrl?: string

Avatar URL

verified: boolean

Verification status

websiteUrl?: string

Publisher website

supportEmail?: string

Support email