Skip to content

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 ​

ParameterType
opts{ communicationType?: string; congress?: number; limit?: number; }
opts.communicationType?string
opts.congress?number
opts.limit?number

Returns ​

Promise<{ communications: CongressSenateCommunication[]; }>

Released under the MIT License.