Function: listSenateCommunications() ​
ts
function listSenateCommunications(opts?: {
communicationType?: string;
congress?: number;
limit?: number;
}): Promise<{
communications: CongressSenateCommunication[];
}>;Defined in: congress/sdk.ts:1246
List Senate communications.
Parameters ​
| Parameter | Type |
|---|---|
opts | { communicationType?: string; congress?: number; limit?: number; } |
opts.communicationType? | string |
opts.congress? | number |
opts.limit? | number |
Returns ​
Promise<{ communications: CongressSenateCommunication[]; }>