use serde::{Deserialize, Serialize};
use std::collections::HashMap;
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct BillDownload {
pub bill_id: String,
pub bill_xml: String,
pub sponsors_json: String,
pub cosponsors_json: String,
pub votes_json: Option<String>,
pub member_jsons: HashMap<String, String>,
}