Represents a coauthor producer, providing details about a contributor or collaborator associated with a piece of content.

interface CoauthorProducer {
    id: string;
    is_verified: boolean;
    profile_pic_url: string;
    username: string;
}

Properties

id: string

The unique identifier of the coauthor producer. This ID is used to distinguish the coauthor from other users.

is_verified: boolean

Indicates whether the coauthor producer's account is verified. A verified account typically signifies authenticity or recognition.

profile_pic_url: string

The URL of the coauthor producer's profile picture. This is typically a link to an image resource representing the coauthor.

username: string

The username of the coauthor producer. This is the unique handle or name associated with the coauthor's account.