Interface Bill

interface Bill {
    congress: number;
    number: string;
    originChamber: string;
    originChamberCode: string;
    title: string;
    type:
        | "s"
        | "hres"
        | "hjres"
        | "hconres"
        | "sres"
        | "sjres"
        | "sconres"
        | "hr";
    updateDate: string;
    updateDateIncludingText: string;
    url?: string;
}

Hierarchy (view full)

  • Base
  • Record<
        | "number"
        | "title"
        | `originChamber${"" | "Code"}`
        | "updateDateIncludingText", string>
    • Bill

Properties

congress: number
number: string
originChamber: string
originChamberCode: string
title: string
type:
    | "s"
    | "hres"
    | "hjres"
    | "hconres"
    | "sres"
    | "sjres"
    | "sconres"
    | "hr"
updateDate: string
updateDateIncludingText: string
url?: string