Interface CreateCommentData

Data for creating a comment

interface CreateCommentData {
    author: string;
    body: string;
    email: string;
    published?: boolean;
    website?: string;
}

Properties

author: string

Comment author

body: string

Comment content

email: string

Author email

published?: boolean

Whether to publish immediately

website?: string

Author's URL