interface ArticleDto {
    content?: ContentDto;
    excerpt?: string;
    source?: SourceDto;
    title?: string;
}

Properties

content?: ContentDto
excerpt?: string

Excerpt of the article which matches the given query string.

source?: SourceDto

Source of the article.

title?: string

Title of the article.