Interface BillRelations

interface BillRelations {
    actions: ListLink;
    amendments: ListLink;
    cboCostEstimates?: CostEstimate[];
    committeeReports?: ItemLink[];
    committees: ListLink;
    cosponsors?: ListLink & {
        countIncludingWithdrawnCosponsors: number;
    };
    laws?: Record<"number" | "type", string>[];
    relatedBills: ListLink;
    sponsors?: Sponsor[];
    subjects: ListLink;
    summaries: ListLink;
    textVersions: ListLink;
    titles: ListLink;
}

Hierarchy

  • Record<
        | "titles"
        | "subjects"
        | "committees"
        | "textVersions"
        | "actions"
        | "amendments"
        | "relatedBills"
        | "summaries", ListLink>
    • BillRelations

Properties

actions: ListLink
amendments: ListLink
cboCostEstimates?: CostEstimate[]
committeeReports?: ItemLink[]
committees: ListLink
cosponsors?: ListLink & {
    countIncludingWithdrawnCosponsors: number;
}
laws?: Record<"number" | "type", string>[]
relatedBills: ListLink
sponsors?: Sponsor[]
subjects: ListLink
summaries: ListLink
textVersions: ListLink
titles: ListLink