interface Author {
    author_id: number;
    first_name: null | string;
    full_name: null | string;
    last_name: null | string;
    orcid: null | string;
    paper_count?: number;
}

Hierarchy (View Summary)

Properties

author_id: number
first_name: null | string
full_name: null | string
last_name: null | string
orcid: null | string
paper_count?: number