//! Senate eFD DOM-derived row types.
/// One row of the search results table: a filer plus their PTR report link.
#[derive(Debug, Clone)]pub(super)structSenateFilingEntry{pubfirst_name: String,
publast_name: String,
/// `MM/DD/YYYY`, as rendered in the "Date Received/Filed" column.
pubfiled_date: String,
/// Relative path to the report, e.g. `/search/view/ptr/{uuid}/`.
pubpath: String,
}